diff --git a/README.md b/README.md index 991d90dd97d..987cb2a1f97 100644 --- a/README.md +++ b/README.md @@ -14,12 +14,12 @@ build daemon as so-called channels. To get channel information via git, add ``` For stability and maximum binary package support, it is recommended to maintain -custom changes on top of one of the channels, e.g. `nixos-14.12` for the latest +custom changes on top of one of the channels, e.g. `nixos-15.09` for the latest release and `nixos-unstable` for the latest successful build of master: ``` % git remote update channels -% git rebase channels/nixos-14.12 +% git rebase channels/nixos-15.09 ``` For pull-requests, please rebase onto nixpkgs `master`. diff --git a/default.nix b/default.nix index bdbe13b3ea2..e2227b13bbb 100644 --- a/default.nix +++ b/default.nix @@ -1,6 +1,8 @@ -if ! builtins ? nixVersion || builtins.compareVersions "1.8" builtins.nixVersion == 1 then +let requiredVersion = "1.10"; in - abort "This version of Nixpkgs requires Nix >= 1.8, please upgrade! See https://nixos.org/wiki/How_to_update_when_nix_is_too_old_to_evaluate_nixpkgs" +if ! builtins ? nixVersion || builtins.compareVersions requiredVersion builtins.nixVersion == 1 then + + abort "This version of Nixpkgs requires Nix >= ${requiredVersion}, please upgrade! See https://nixos.org/wiki/How_to_update_when_Nix_is_too_old_to_evaluate_Nixpkgs" else diff --git a/doc/functions.xml b/doc/functions.xml index 5378b59abcb..39010f8ab14 100644 --- a/doc/functions.xml +++ b/doc/functions.xml @@ -236,6 +236,20 @@ c = lib.makeOverridable f { a = 1; b = 2; } runScript parameter, which is a command that would be executed inside the sandbox and passed all the command line arguments. It default to bash. + + + It also uses CHROOTENV_EXTRA_BINDS environment variable + for binding extra directories in the sandbox to outside places. The format of + the variable is /mnt=test-mnt:/data, where + /mnt would be mounted as /test-mnt + and /data would be mounted as /data. + extraBindMounts array argument to + buildFHSUserEnv function is prepended to this variable. + Latter entries take priority if defined several times -- i.e. in case of + /data=data1:/data=data2 the actual bind path would be + /data2. + + One can create a simple environment using a shell.nix like that: diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 121fca95164..ecc18ec102d 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -81,6 +81,7 @@ dezgeg = "Tuomas Tynkkynen "; dfoxfranke = "Daniel Fox Franke "; dmalikov = "Dmitry Malikov "; + dochang = "Desmond O. Chang "; doublec = "Chris Double "; ebzzry = "Rommel Martinez "; ederoyd46 = "Matthew Brown "; @@ -90,6 +91,7 @@ eikek = "Eike Kettner "; ellis = "Ellis Whitehead "; emery = "Emery Hemingway "; + enolan = "Echo Nolan "; epitrochoid = "Mabry Cervin "; ericbmerritt = "Eric Merritt "; erikryb = "Erik Rybakken "; @@ -100,6 +102,7 @@ fluffynukeit = "Daniel Austin "; forkk = "Andrew Okin "; fpletz = "Franz Pletz "; + fps = "Florian Paul Schmidt "; fridh = "Frederik Rietdijk "; fro_ozen = "fro_ozen "; ftrvxmtrx = "Siarhei Zirukin "; @@ -129,6 +132,7 @@ iyzsong = "Song Wenwu "; j-keck = "Jürgen Keck "; jagajaga = "Arseniy Seroka "; + javaguirre = "Javier Aguirre "; jb55 = "William Casarin "; jcumming = "Jack Cummings "; jefdaj = "Jeffrey David Johnson "; @@ -164,6 +168,7 @@ lowfatcomputing = "Andreas Wagner "; lsix = "Lancelot SIX "; ludo = "Ludovic Courtès "; + lukego = "Luke Gorrie "; madjar = "Georges Dubus "; magnetophon = "Bart Brouns "; mahe = "Matthias Herrmann "; @@ -190,6 +195,7 @@ muflax = "Stefan Dorn "; nathan-gs = "Nathan Bijnens "; nckx = "Tobias Geerinckx-Rice "; + nico202 = "Nicolò Balzarotti "; notthemessiah = "Brian Cohen "; np = "Nicolas Pouillard "; nslqqq = "Nikita Mikhailov "; diff --git a/lib/modules.nix b/lib/modules.nix index 3e4d0547ecc..12ec7004d1e 100644 --- a/lib/modules.nix +++ b/lib/modules.nix @@ -469,6 +469,7 @@ rec { mkBefore = mkOrder 500; mkAfter = mkOrder 1500; + # Convenient property used to transfer all definitions and their # properties from one option to another. This property is useful for # renaming options, and also for including properties from another module @@ -498,4 +499,68 @@ rec { /* Compatibility. */ fixMergeModules = modules: args: evalModules { inherit modules args; check = false; }; + + /* Return a module that causes a warning to be shown if the + specified option is defined. For example, + + mkRemovedOptionModule [ "boot" "loader" "grub" "bootDevice" ] + + causes a warning if the user defines boot.loader.grub.bootDevice. + */ + mkRemovedOptionModule = optionName: + { options, ... }: + { options = setAttrByPath optionName (mkOption { + visible = false; + }); + config.warnings = + let opt = getAttrFromPath optionName options; in + optional opt.isDefined + "The option definition `${showOption optionName}' in ${showFiles opt.files} no longer has any effect; please remove it."; + }; + + /* Return a module that causes a warning to be shown if the + specified "from" option is defined; the defined value is however + forwarded to the "to" option. This can be used to rename options + while providing backward compatibility. For example, + + mkRenamedOptionModule [ "boot" "copyKernels" ] [ "boot" "loader" "grub" "copyKernels" ] + + forwards any definitions of boot.copyKernels to + boot.loader.grub.copyKernels while printing a warning. + */ + mkRenamedOptionModule = from: to: doRename { + inherit from to; + visible = false; + warn = true; + use = builtins.trace "Obsolete option `${showOption from}' is used. It was renamed to `${showOption to}'."; + }; + + /* Like ‘mkRenamedOptionModule’, but doesn't show a warning. */ + mkAliasOptionModule = from: to: doRename { + inherit from to; + visible = true; + warn = false; + use = id; + }; + + doRename = { from, to, visible, warn, use }: + let + toOf = attrByPath to + (abort "Renaming error: option `${showOption to}' does not exists."); + in + { config, options, ... }: + { options = setAttrByPath from (mkOption { + description = "Alias of ."; + apply = x: use (toOf config); + }); + config = { + /* + warnings = + let opt = getAttrFromPath from options; in + optional (warn && opt.isDefined) + "The option `${showOption from}' defined in ${showFiles opt.files} has been renamed to `${showOption to}'."; + */ + } // setAttrByPath to (mkAliasDefinitions (getAttrFromPath from options)); + }; + } diff --git a/nixos/doc/manual/installation/installing.xml b/nixos/doc/manual/installation/installing.xml index e40c15e8316..6d734cd8cac 100644 --- a/nixos/doc/manual/installation/installing.xml +++ b/nixos/doc/manual/installation/installing.xml @@ -18,8 +18,8 @@ The NixOS manual is available on virtual console 8 (press Alt+F8 to access). - Login as root and the empty - password. + You get logged in as root + (with empty password). If you downloaded the graphical ISO image, you can run start display-manager to start KDE. diff --git a/nixos/lib/make-disk-image.nix b/nixos/lib/make-disk-image.nix index 79c5199cbec..01dd9c9ae7f 100644 --- a/nixos/lib/make-disk-image.nix +++ b/nixos/lib/make-disk-image.nix @@ -39,6 +39,7 @@ pkgs.vmTools.runInLinuxVM ( exportReferencesGraph = [ "closure" config.system.build.toplevel ]; inherit postVM; + memSize = 1024; } '' ${if partitioned then '' diff --git a/nixos/modules/config/power-management.nix b/nixos/modules/config/power-management.nix index 32a7987617a..dedc8a3f679 100644 --- a/nixos/modules/config/power-management.nix +++ b/nixos/modules/config/power-management.nix @@ -98,6 +98,7 @@ in after = [ "suspend.target" "hibernate.target" "hybrid-sleep.target" ]; script = '' + ${config.systemd.package}/bin/systemctl try-restart post-resume.target ${cfg.resumeCommands} ${cfg.powerUpCommands} ''; diff --git a/nixos/modules/config/users-groups.nix b/nixos/modules/config/users-groups.nix index adc014eed41..485926fb1dd 100644 --- a/nixos/modules/config/users-groups.nix +++ b/nixos/modules/config/users-groups.nix @@ -550,4 +550,8 @@ in { }; + imports = + [ (mkAliasOptionModule [ "users" "extraUsers" ] [ "users" "users" ]) + (mkAliasOptionModule [ "users" "extraGroups" ] [ "users" "groups" ]) + ]; } diff --git a/nixos/modules/installer/tools/auto-upgrade.nix b/nixos/modules/installer/tools/auto-upgrade.nix index b2676b05a02..e14653dc4eb 100644 --- a/nixos/modules/installer/tools/auto-upgrade.nix +++ b/nixos/modules/installer/tools/auto-upgrade.nix @@ -70,7 +70,7 @@ let cfg = config.system.autoUpgrade; in path = [ pkgs.gnutar pkgs.xz config.nix.package ]; script = '' - ${config.system.build.nixos-rebuild}/bin/nixos-rebuild test ${toString cfg.flags} + ${config.system.build.nixos-rebuild}/bin/nixos-rebuild switch ${toString cfg.flags} ''; startAt = mkIf cfg.enable "04:40"; diff --git a/nixos/modules/installer/tools/nixos-generate-config.pl b/nixos/modules/installer/tools/nixos-generate-config.pl index 39ef4c51ba1..19656c9b9ea 100644 --- a/nixos/modules/installer/tools/nixos-generate-config.pl +++ b/nixos/modules/installer/tools/nixos-generate-config.pl @@ -152,6 +152,22 @@ sub pciCheck { push @kernelModules, "wl"; } + # broadcom FullMac driver + # list taken from + # https://wireless.wiki.kernel.org/en/users/Drivers/brcm80211#brcmfmac + if ($vendor eq "0x14e4" && + ($device eq "0x43a3" || $device eq "0x43df" || $device eq "0x43ec" || + $device eq "0x43d3" || $device eq "0x43d9" || $device eq "0x43e9" || + $device eq "0x43ba" || $device eq "0x43bb" || $device eq "0x43bc" || + $device eq "0xaa52" || $device eq "0x43ca" || $device eq "0x43cb" || + $device eq "0x43cc" || $device eq "0x43c3" || $device eq "0x43c4" || + $device eq "0x43c5" + ) ) + { + # we need e.g. brcmfmac43602-pcie.bin + push @imports, ""; + } + # Can't rely on $module here, since the module may not be loaded # due to missing firmware. Ideally we would check modules.pcimap # here. diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index c890eac4991..2dafd19e0b4 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -340,6 +340,7 @@ ./services/networking/ssh/lshd.nix ./services/networking/ssh/sshd.nix ./services/networking/strongswan.nix + ./services/networking/supplicant.nix ./services/networking/supybot.nix ./services/networking/syncthing.nix ./services/networking/tcpcrypt.nix diff --git a/nixos/modules/rename.nix b/nixos/modules/rename.nix index 62be7dc6cae..28ac1c3e888 100644 --- a/nixos/modules/rename.nix +++ b/nixos/modules/rename.nix @@ -1,170 +1,88 @@ -{ config, lib, options, ... }: +{ lib, ... }: with lib; -let +{ + imports = [ + (mkRenamedOptionModule [ "environment" "x11Packages" ] [ "environment" "systemPackages" ]) + (mkRenamedOptionModule [ "environment" "enableBashCompletion" ] [ "programs" "bash" "enableCompletion" ]) + (mkRenamedOptionModule [ "environment" "nix" ] [ "nix" "package" ]) + (mkRenamedOptionModule [ "fonts" "enableFontConfig" ] [ "fonts" "fontconfig" "enable" ]) + (mkRenamedOptionModule [ "fonts" "extraFonts" ] [ "fonts" "fonts" ]) - alias = from: to: rename { - inherit from to; - name = "Alias"; - use = id; - define = id; - visible = true; - }; + (mkRenamedOptionModule [ "security" "extraSetuidPrograms" ] [ "security" "setuidPrograms" ]) + (mkRenamedOptionModule [ "networking" "enableWLAN" ] [ "networking" "wireless" "enable" ]) + (mkRenamedOptionModule [ "networking" "enableRT73Firmware" ] [ "networking" "enableRalinkFirmware" ]) - # warn option was renamed - obsolete = from: to: rename { - inherit from to; - name = "Obsolete name"; - use = x: builtins.trace "Obsolete option `${showOption from}' is used. It was renamed to `${showOption to}'." x; - define = x: builtins.trace "Obsolete option `${showOption from}' is used. It was renamed to `${showOption to}'." x; - }; + # Old Grub-related options. + (mkRenamedOptionModule [ "boot" "initrd" "extraKernelModules" ] [ "boot" "initrd" "kernelModules" ]) + (mkRenamedOptionModule [ "boot" "extraKernelParams" ] [ "boot" "kernelParams" ]) - # abort if deprecated option is used - deprecated = from: to: rename { - inherit from to; - name = "Deprecated name"; - use = x: abort "Deprecated option `${showOption from}' is used. It was renamed to `${showOption to}'."; - define = x: abort "Deprecated option `${showOption from}' is used. It was renamed to `${showOption to}'."; - }; + # smartd + (mkRenamedOptionModule [ "services" "smartd" "deviceOpts" ] [ "services" "smartd" "defaults" "monitored" ]) - showOption = concatStringsSep "."; + # OpenSSH + (mkRenamedOptionModule [ "services" "sshd" "ports" ] [ "services" "openssh" "ports" ]) + (mkAliasOptionModule [ "services" "sshd" "enable" ] [ "services" "openssh" "enable" ]) + (mkRenamedOptionModule [ "services" "sshd" "allowSFTP" ] [ "services" "openssh" "allowSFTP" ]) + (mkRenamedOptionModule [ "services" "sshd" "forwardX11" ] [ "services" "openssh" "forwardX11" ]) + (mkRenamedOptionModule [ "services" "sshd" "gatewayPorts" ] [ "services" "openssh" "gatewayPorts" ]) + (mkRenamedOptionModule [ "services" "sshd" "permitRootLogin" ] [ "services" "openssh" "permitRootLogin" ]) + (mkRenamedOptionModule [ "services" "xserver" "startSSHAgent" ] [ "services" "xserver" "startOpenSSHAgent" ]) + (mkRenamedOptionModule [ "services" "xserver" "startOpenSSHAgent" ] [ "programs" "ssh" "startAgent" ]) + (mkAliasOptionModule [ "services" "openssh" "knownHosts" ] [ "programs" "ssh" "knownHosts" ]) - zipModules = list: - zipAttrsWith (n: v: - if tail v != [] then - if all (o: isAttrs o && o ? _type) v then mkMerge v - else if n == "_type" then head v - else if n == "warnings" then concatLists v - else if n == "description" || n == "apply" then - abort "Cannot rename an option to multiple options." - else zipModules v - else head v - ) list; + # VirtualBox + (mkRenamedOptionModule [ "services" "virtualbox" "enable" ] [ "virtualisation" "virtualbox" "guest" "enable" ]) + (mkRenamedOptionModule [ "services" "virtualboxGuest" "enable" ] [ "virtualisation" "virtualbox" "guest" "enable" ]) + (mkRenamedOptionModule [ "programs" "virtualbox" "enable" ] [ "virtualisation" "virtualbox" "host" "enable" ]) + (mkRenamedOptionModule [ "programs" "virtualbox" "addNetworkInterface" ] [ "virtualisation" "virtualbox" "host" "addNetworkInterface" ]) + (mkRenamedOptionModule [ "programs" "virtualbox" "enableHardening" ] [ "virtualisation" "virtualbox" "host" "enableHardening" ]) + (mkRenamedOptionModule [ "services" "virtualboxHost" "enable" ] [ "virtualisation" "virtualbox" "host" "enable" ]) + (mkRenamedOptionModule [ "services" "virtualboxHost" "addNetworkInterface" ] [ "virtualisation" "virtualbox" "host" "addNetworkInterface" ]) + (mkRenamedOptionModule [ "services" "virtualboxHost" "enableHardening" ] [ "virtualisation" "virtualbox" "host" "enableHardening" ]) - rename = { from, to, name, use, define, visible ? false }: - let - setTo = setAttrByPath to; - setFrom = setAttrByPath from; - toOf = attrByPath to - (abort "Renaming error: option `${showOption to}' does not exists."); - fromOf = attrByPath from - (abort "Internal error: option `${showOption from}' should be declared."); - in - [ { options = setFrom (mkOption { - description = "${name} of ."; - apply = x: use (toOf config); - inherit visible; - }); + # Tarsnap + (mkRenamedOptionModule [ "services" "tarsnap" "config" ] [ "services" "tarsnap" "archives" ]) - config = setTo (mkAliasAndWrapDefinitions define (fromOf options)); - } - ]; + # proxy + (mkRenamedOptionModule [ "nix" "proxy" ] [ "networking" "proxy" "default" ]) - obsolete' = option: singleton - { options = setAttrByPath option (mkOption { - default = null; - visible = false; - }); - config.warnings = optional (getAttrFromPath option config != null) - "The option `${showOption option}' defined in your configuration no longer has any effect; please remove it."; - }; + # KDE + (mkRenamedOptionModule [ "kde" "extraPackages" ] [ "environment" "systemPackages" ]) + (mkRenamedOptionModule [ "environment" "kdePackages" ] [ "environment" "systemPackages" ]) -in zipModules ([] + # Multiple efi bootloaders now + (mkRenamedOptionModule [ "boot" "loader" "efi" "efibootmgr" "enable" ] [ "boot" "loader" "efi" "canTouchEfiVariables" ]) -++ obsolete [ "environment" "x11Packages" ] [ "environment" "systemPackages" ] -++ obsolete [ "environment" "enableBashCompletion" ] [ "programs" "bash" "enableCompletion" ] -++ obsolete [ "environment" "nix" ] [ "nix" "package" ] -++ obsolete [ "fonts" "enableFontConfig" ] [ "fonts" "fontconfig" "enable" ] -++ obsolete [ "fonts" "extraFonts" ] [ "fonts" "fonts" ] -++ alias [ "users" "extraUsers" ] [ "users" "users" ] -++ alias [ "users" "extraGroups" ] [ "users" "groups" ] + # NixOS environment changes + # !!! this hardcodes bash, could we detect from config which shell is actually used? + (mkRenamedOptionModule [ "environment" "promptInit" ] [ "programs" "bash" "promptInit" ]) -++ obsolete [ "security" "extraSetuidPrograms" ] [ "security" "setuidPrograms" ] -++ obsolete [ "networking" "enableWLAN" ] [ "networking" "wireless" "enable" ] -++ obsolete [ "networking" "enableRT73Firmware" ] [ "networking" "enableRalinkFirmware" ] + (mkRenamedOptionModule [ "services" "xserver" "driSupport" ] [ "hardware" "opengl" "driSupport" ]) + (mkRenamedOptionModule [ "services" "xserver" "driSupport32Bit" ] [ "hardware" "opengl" "driSupport32Bit" ]) + (mkRenamedOptionModule [ "services" "xserver" "s3tcSupport" ] [ "hardware" "opengl" "s3tcSupport" ]) + (mkRenamedOptionModule [ "hardware" "opengl" "videoDrivers" ] [ "services" "xserver" "videoDrivers" ]) -# FIXME: Remove these eventually. -++ obsolete [ "boot" "systemd" "sockets" ] [ "systemd" "sockets" ] -++ obsolete [ "boot" "systemd" "targets" ] [ "systemd" "targets" ] -++ obsolete [ "boot" "systemd" "services" ] [ "systemd" "services" ] + (mkRenamedOptionModule [ "services" "mysql55" ] [ "services" "mysql" ]) -# Old Grub-related options. -++ obsolete [ "boot" "copyKernels" ] [ "boot" "loader" "grub" "copyKernels" ] -++ obsolete [ "boot" "extraGrubEntries" ] [ "boot" "loader" "grub" "extraEntries" ] -++ obsolete [ "boot" "extraGrubEntriesBeforeNixos" ] [ "boot" "loader" "grub" "extraEntriesBeforeNixOS" ] -++ obsolete [ "boot" "grubDevice" ] [ "boot" "loader" "grub" "device" ] -++ obsolete [ "boot" "bootMount" ] [ "boot" "loader" "grub" "bootDevice" ] -++ obsolete [ "boot" "grubSplashImage" ] [ "boot" "loader" "grub" "splashImage" ] + (mkAliasOptionModule [ "environment" "checkConfigurationOptions" ] [ "_module" "check" ]) -++ obsolete [ "boot" "initrd" "extraKernelModules" ] [ "boot" "initrd" "kernelModules" ] -++ obsolete [ "boot" "extraKernelParams" ] [ "boot" "kernelParams" ] + # XBMC + (mkRenamedOptionModule [ "services" "xserver" "windowManager" "xbmc" ] [ "services" "xserver" "desktopManager" "kodi" ]) + (mkRenamedOptionModule [ "services" "xserver" "desktopManager" "xbmc" ] [ "services" "xserver" "desktopManager" "kodi" ]) -# smartd -++ obsolete [ "services" "smartd" "deviceOpts" ] [ "services" "smartd" "defaults" "monitored" ] + # DNSCrypt-proxy + (mkRenamedOptionModule [ "services" "dnscrypt-proxy" "port" ] [ "services" "dnscrypt-proxy" "localPort" ]) -# OpenSSH -++ obsolete [ "services" "sshd" "ports" ] [ "services" "openssh" "ports" ] -++ alias [ "services" "sshd" "enable" ] [ "services" "openssh" "enable" ] -++ obsolete [ "services" "sshd" "allowSFTP" ] [ "services" "openssh" "allowSFTP" ] -++ obsolete [ "services" "sshd" "forwardX11" ] [ "services" "openssh" "forwardX11" ] -++ obsolete [ "services" "sshd" "gatewayPorts" ] [ "services" "openssh" "gatewayPorts" ] -++ obsolete [ "services" "sshd" "permitRootLogin" ] [ "services" "openssh" "permitRootLogin" ] -++ obsolete [ "services" "xserver" "startSSHAgent" ] [ "services" "xserver" "startOpenSSHAgent" ] -++ obsolete [ "services" "xserver" "startOpenSSHAgent" ] [ "programs" "ssh" "startAgent" ] -++ alias [ "services" "openssh" "knownHosts" ] [ "programs" "ssh" "knownHosts" ] + # Options that are obsolete and have no replacement. + (mkRemovedOptionModule [ "boot" "initrd" "luks" "enable" ]) + (mkRemovedOptionModule [ "programs" "bash" "enable" ]) + (mkRemovedOptionModule [ "services" "samba" "defaultShare" ]) + (mkRemovedOptionModule [ "services" "syslog-ng" "serviceName" ]) + (mkRemovedOptionModule [ "services" "syslog-ng" "listenToJournal" ]) + (mkRemovedOptionModule [ "ec2" "metadata" ]) + (mkRemovedOptionModule [ "services" "openvpn" "enable" ]) -# VirtualBox -++ obsolete [ "services" "virtualbox" "enable" ] [ "virtualisation" "virtualbox" "guest" "enable" ] -++ obsolete [ "services" "virtualboxGuest" "enable" ] [ "virtualisation" "virtualbox" "guest" "enable" ] -++ obsolete [ "programs" "virtualbox" "enable" ] [ "virtualisation" "virtualbox" "host" "enable" ] -++ obsolete [ "programs" "virtualbox" "addNetworkInterface" ] [ "virtualisation" "virtualbox" "host" "addNetworkInterface" ] -++ obsolete [ "programs" "virtualbox" "enableHardening" ] [ "virtualisation" "virtualbox" "host" "enableHardening" ] -++ obsolete [ "services" "virtualboxHost" "enable" ] [ "virtualisation" "virtualbox" "host" "enable" ] -++ obsolete [ "services" "virtualboxHost" "addNetworkInterface" ] [ "virtualisation" "virtualbox" "host" "addNetworkInterface" ] -++ obsolete [ "services" "virtualboxHost" "enableHardening" ] [ "virtualisation" "virtualbox" "host" "enableHardening" ] - -# Tarsnap -++ obsolete [ "services" "tarsnap" "config" ] [ "services" "tarsnap" "archives" ] - -# proxy -++ obsolete [ "nix" "proxy" ] [ "networking" "proxy" "default" ] - -# KDE -++ deprecated [ "kde" "extraPackages" ] [ "environment" "systemPackages" ] -++ obsolete [ "environment" "kdePackages" ] [ "environment" "systemPackages" ] - -# Multiple efi bootloaders now -++ obsolete [ "boot" "loader" "efi" "efibootmgr" "enable" ] [ "boot" "loader" "efi" "canTouchEfiVariables" ] - -# NixOS environment changes -# !!! this hardcodes bash, could we detect from config which shell is actually used? -++ obsolete [ "environment" "promptInit" ] [ "programs" "bash" "promptInit" ] - -++ obsolete [ "services" "xserver" "driSupport" ] [ "hardware" "opengl" "driSupport" ] -++ obsolete [ "services" "xserver" "driSupport32Bit" ] [ "hardware" "opengl" "driSupport32Bit" ] -++ obsolete [ "services" "xserver" "s3tcSupport" ] [ "hardware" "opengl" "s3tcSupport" ] -++ obsolete [ "hardware" "opengl" "videoDrivers" ] [ "services" "xserver" "videoDrivers" ] - -++ obsolete [ "services" "mysql55" ] [ "services" "mysql" ] - -++ alias [ "environment" "checkConfigurationOptions" ] [ "_module" "check" ] - -# XBMC -++ obsolete [ "services" "xserver" "windowManager" "xbmc" ] [ "services" "xserver" "desktopManager" "kodi" ] -++ obsolete [ "services" "xserver" "desktopManager" "xbmc" ] [ "services" "xserver" "desktopManager" "kodi" ] - -# DNSCrypt-proxy -++ obsolete [ "services" "dnscrypt-proxy" "port" ] [ "services" "dnscrypt-proxy" "localPort" ] - -# Options that are obsolete and have no replacement. -++ obsolete' [ "boot" "loader" "grub" "bootDevice" ] -++ obsolete' [ "boot" "initrd" "luks" "enable" ] -++ obsolete' [ "programs" "bash" "enable" ] -++ obsolete' [ "services" "samba" "defaultShare" ] -++ obsolete' [ "services" "syslog-ng" "serviceName" ] -++ obsolete' [ "services" "syslog-ng" "listenToJournal" ] -++ obsolete' [ "ec2" "metadata" ] -++ obsolete' [ "services" "openvpn" "enable" ] - -) + ]; +} diff --git a/nixos/modules/services/continuous-integration/jenkins/default.nix b/nixos/modules/services/continuous-integration/jenkins/default.nix index 95d2aecfac7..7a118ac7207 100644 --- a/nixos/modules/services/continuous-integration/jenkins/default.nix +++ b/nixos/modules/services/continuous-integration/jenkins/default.nix @@ -65,11 +65,15 @@ in { }; environment = mkOption { - default = { NIX_REMOTE = "daemon"; }; + default = { }; type = with types; attrsOf str; description = '' Additional environment variables to be passed to the jenkins process. - The environment will always include JENKINS_HOME. + As a base environment, jenkins receives NIX_PATH, SSL_CERT_FILE and + GIT_SSL_CAINFO from , + NIX_REMOTE is set to "daemon" and JENKINS_HOME is set to + the value of . This option has + precedence and can be used to override those mentioned variables. ''; }; @@ -106,9 +110,21 @@ in { after = [ "network.target" ]; wantedBy = [ "multi-user.target" ]; - environment = { - JENKINS_HOME = cfg.home; - } // cfg.environment; + environment = + let + selectedSessionVars = + lib.filterAttrs (n: v: builtins.elem n + [ "NIX_PATH" + "SSL_CERT_FILE" + "GIT_SSL_CAINFO" + ]) + config.environment.sessionVariables; + in + selectedSessionVars // + { JENKINS_HOME = cfg.home; + NIX_REMOTE = "daemon"; + } // + cfg.environment; path = cfg.packages; diff --git a/nixos/modules/services/misc/synergy.nix b/nixos/modules/services/misc/synergy.nix index 054df965347..7e8eadbe5f3 100644 --- a/nixos/modules/services/misc/synergy.nix +++ b/nixos/modules/services/misc/synergy.nix @@ -89,6 +89,7 @@ in wantedBy = optional cfgC.autoStart "multi-user.target"; path = [ pkgs.synergy ]; serviceConfig.ExecStart = ''${pkgs.synergy}/bin/synergyc -f ${optionalString (cfgC.screenName != "") "-n ${cfgC.screenName}"} ${cfgC.serverAddress}''; + serviceConfig.Restart = "on-failure"; }; }) (mkIf cfgS.enable { @@ -98,6 +99,7 @@ in wantedBy = optional cfgS.autoStart "multi-user.target"; path = [ pkgs.synergy ]; serviceConfig.ExecStart = ''${pkgs.synergy}/bin/synergys -c ${cfgS.configFile} -f ${optionalString (cfgS.address != "") "-a ${cfgS.address}"} ${optionalString (cfgS.screenName != "") "-n ${cfgS.screenName}" }''; + serviceConfig.Restart = "on-failure"; }; }) ]; diff --git a/nixos/modules/services/monitoring/grafana.nix b/nixos/modules/services/monitoring/grafana.nix index fa653565a67..5302728eae9 100644 --- a/nixos/modules/services/monitoring/grafana.nix +++ b/nixos/modules/services/monitoring/grafana.nix @@ -318,7 +318,7 @@ in { wantedBy = ["multi-user.target"]; after = ["networking.target"]; serviceConfig = { - ExecStart = "${cfg.package-backend}/bin/grafana --config ${cfgFile} web"; + ExecStart = "${cfg.package}/bin/grafana --config ${cfgFile} web"; WorkingDirectory = cfg.dataDir; User = "grafana"; }; diff --git a/nixos/modules/services/networking/copy-com.nix b/nixos/modules/services/networking/copy-com.nix index 69a41ab9796..ee0d043d471 100644 --- a/nixos/modules/services/networking/copy-com.nix +++ b/nixos/modules/services/networking/copy-com.nix @@ -39,7 +39,8 @@ in systemd.services."copy-com-${cfg.user}" = { description = "Copy.com client"; - after = [ "network.target" "local-fs.target" ]; + wants = [ "network-online.target" ]; + after = [ "network-online.target" "local-fs.target" ]; wantedBy = [ "multi-user.target" ]; serviceConfig = { ExecStart = "${pkgs.copy-com}/bin/CopyConsole ${if cfg.debug then "-consoleOutput -debugToConsole=dirwatch,path-watch,csm_path,csm -debug -console" else ""}"; diff --git a/nixos/modules/services/networking/supplicant.nix b/nixos/modules/services/networking/supplicant.nix new file mode 100644 index 00000000000..502a0468787 --- /dev/null +++ b/nixos/modules/services/networking/supplicant.nix @@ -0,0 +1,249 @@ +{ config, lib, utils, pkgs, ... }: + +with lib; + +let + + cfg = config.networking.supplicant; + + # We must escape interfaces due to the systemd interpretation + subsystemDevice = interface: + "sys-subsystem-net-devices-${utils.escapeSystemdPath interface}.device"; + + serviceName = iface: "supplicant-${if (iface=="WLAN") then "wlan@" else ( + if (iface=="LAN") then "lan@" else ( + if (iface=="DBUS") then "dbus" + else (replaceChars [" "] ["-"] iface)))}"; + + # TODO: Use proper privilege separation for wpa_supplicant + supplicantService = iface: suppl: + let + deps = (if (iface=="WLAN"||iface=="LAN") then ["sys-subsystem-net-devices-%i.device"] else ( + if (iface=="DBUS") then ["dbus.service"] + else (map subsystemDevice (splitString " " iface)))) + ++ optional (suppl.bridge!="") (subsystemDevice suppl.bridge); + + ifaceArg = concatStringsSep " -N " (map (i: "-i${i}") (splitString " " iface)); + driverArg = optionalString (suppl.driver != null) "-D${suppl.driver}"; + bridgeArg = optionalString (suppl.bridge!="") "-b${suppl.bridge}"; + confFileArg = optionalString (suppl.configFile.path!=null) "-c${suppl.configFile.path}"; + extraConfFile = pkgs.writeText "supplicant-extra-conf-${replaceChars [" "] ["-"] iface}" '' + ${optionalString suppl.userControlled.enable "ctrl_interface=DIR=${suppl.userControlled.socketDir} GROUP=${suppl.userControlled.group}"} + ${optionalString suppl.configFile.writable "update_config=1"} + ${suppl.extraConf} + ''; + in + { description = "Supplicant ${iface}${optionalString (iface=="WLAN"||iface=="LAN") " %I"}"; + wantedBy = [ "network.target" ]; + bindsTo = deps; + after = deps; + before = [ "network.target" ]; + # Receive restart event after resume + partOf = [ "post-resume.target" ]; + + path = [ pkgs.coreutils ]; + + preStart = '' + ${optionalString (suppl.configFile.path!=null) '' + touch -a ${suppl.configFile.path} + chmod 600 ${suppl.configFile.path} + ''} + ${optionalString suppl.userControlled.enable '' + if ! test -e ${suppl.userControlled.socketDir}; then + mkdir -m 0770 -p ${suppl.userControlled.socketDir} + chgrp ${suppl.userControlled.group} ${suppl.userControlled.socketDir} + fi + + if test "$(stat --printf '%G' ${suppl.userControlled.socketDir})" != "${suppl.userControlled.group}"; then + echo "ERROR: bad ownership on ${suppl.userControlled.socketDir}" >&2 + exit 1 + fi + ''} + ''; + + serviceConfig.ExecStart = "${pkgs.wpa_supplicant}/bin/wpa_supplicant -s ${driverArg} ${confFileArg} -I${extraConfFile} ${bridgeArg} ${suppl.extraCmdArgs} ${if (iface=="WLAN"||iface=="LAN") then "-i%I" else (if (iface=="DBUS") then "-u" else ifaceArg)}"; + + }; + + +in + +{ + + ###### interface + + options = { + + networking.supplicant = mkOption { + type = types.attrsOf types.optionSet; + + default = { }; + + example = { + "wlan0 wlan1" = { + configFile = "/etc/wpa_supplicant"; + userControlled.group = "network"; + extraConf = '' + ap_scan=1 + p2p_disabled=1 + ''; + extraCmdArgs = "-u -W"; + bridge = "br0"; + }; + }; + + description = '' + Interfaces for which to start wpa_supplicant. + The supplicant is used to scan for and associate with wireless networks, + or to authenticate with 802.1x capable network switches. + + The value of this option is an attribute set. Each attribute configures a + wpa_supplicant service, where the attribute name specifies + the name of the interface that wpa_supplicant operates on. + The attribute name can be a space separated list of interfaces. + The attribute names WLAN, LAN and DBUS + have a special meaning. WLAN and LAN are + configurations for universal wpa_supplicant service that is + started for each WLAN interface or for each LAN interface, respectively. + DBUS defines a device-unrelated wpa_supplicant + service that can be accessed through D-Bus. + ''; + + options = { + + configFile = { + + path = mkOption { + type = types.path; + example = "/etc/wpa_supplicant.conf"; + description = '' + External wpa_supplicant.conf configuration file. + The configuration options defined declaratively within networking.supplicant have + precedence over options defined in configFile. + ''; + }; + + writable = mkOption { + type = types.bool; + default = false; + description = '' + Whether the configuration file at configFile.path should be written to by + wpa_supplicant. + ''; + }; + + }; + + extraConf = mkOption { + type = types.lines; + default = ""; + example = '' + ap_scan=1 + device_name=My-NixOS-Device + device_type=1-0050F204-1 + driver_param=use_p2p_group_interface=1 + disable_scan_offload=1 + p2p_listen_reg_class=81 + p2p_listen_channel=1 + p2p_oper_reg_class=81 + p2p_oper_channel=1 + manufacturer=NixOS + model_name=NixOS_Unstable + model_number=2015 + ''; + description = '' + Configuration options for wpa_supplicant.conf. + Options defined here have precedence over options in configFile. + NOTE: Do not write sensitive data into extraConf as it will + be world-readable in the nix-store. For sensitive information + use the configFile instead. + ''; + }; + + extraCmdArgs = mkOption { + type = types.str; + default = ""; + example = "-e/var/run/wpa_supplicant/entropy.bin"; + description = + "Command line arguments to add when executing wpa_supplicant."; + }; + + driver = mkOption { + type = types.nullOr types.str; + default = "nl80211,wext"; + description = "Force a specific wpa_supplicant driver."; + }; + + bridge = mkOption { + type = types.str; + default = ""; + description = "Name of the bridge interface that wpa_supplicant should listen at."; + }; + + userControlled = { + + enable = mkOption { + type = types.bool; + default = false; + description = '' + Allow normal users to control wpa_supplicant through wpa_gui or wpa_cli. + This is useful for laptop users that switch networks a lot and don't want + to depend on a large package such as NetworkManager just to pick nearby + access points. + ''; + }; + + socketDir = mkOption { + type = types.str; + default = "/var/run/wpa_supplicant"; + description = "Directory of sockets for controlling wpa_supplicant."; + }; + + group = mkOption { + type = types.str; + default = "wheel"; + example = "network"; + description = "Members of this group can control wpa_supplicant."; + }; + + }; + + }; + + }; + + }; + + + ###### implementation + + config = mkIf (cfg != {}) { + + environment.systemPackages = [ pkgs.wpa_supplicant ]; + + services.dbus.packages = [ pkgs.wpa_supplicant ]; + + systemd.services = mapAttrs' (n: v: nameValuePair (serviceName n) (supplicantService n v)) cfg; + + services.udev.packages = [ + (pkgs.writeTextFile { + name = "99-zzz-60-supplicant.rules"; + destination = "/etc/udev/rules.d/99-zzz-60-supplicant.rules"; + text = '' + ${flip (concatMapStringsSep "\n") (filter (n: n!="WLAN" && n!="LAN" && n!="DBUS") (attrNames cfg)) (iface: + flip (concatMapStringsSep "\n") (splitString " " iface) (i: '' + ACTION=="add", SUBSYSTEM=="net", ENV{INTERFACE}=="${i}", TAG+="systemd", ENV{SYSTEMD_WANTS}+="supplicant-${replaceChars [" "] ["-"] iface}.service", TAG+="SUPPLICANT_ASSIGNED"''))} + + ${optionalString (hasAttr "WLAN" cfg) '' + ACTION=="add", SUBSYSTEM=="net", ENV{DEVTYPE}=="wlan", TAG!="SUPPLICANT_ASSIGNED", TAG+="systemd", PROGRAM="${pkgs.systemd}/bin/systemd-escape -p %E{INTERFACE}", ENV{SYSTEMD_WANTS}+="supplicant-wlan@$result.service" + ''} + ${optionalString (hasAttr "LAN" cfg) '' + ACTION=="add", SUBSYSTEM=="net", ENV{DEVTYPE}=="lan", TAG!="SUPPLICANT_ASSIGNED", TAG+="systemd", PROGRAM="${pkgs.systemd}/bin/systemd-escape -p %E{INTERFACE}", ENV{SYSTEMD_WANTS}+="supplicant-lan@$result.service" + ''} + ''; + })]; + + }; + +} + diff --git a/nixos/modules/services/scheduling/cron.nix b/nixos/modules/services/scheduling/cron.nix index 02d80a77da5..1b5e83173e8 100644 --- a/nixos/modules/services/scheduling/cron.nix +++ b/nixos/modules/services/scheduling/cron.nix @@ -100,7 +100,7 @@ in environment.systemPackages = [ cronNixosPkg ]; environment.etc.crontab = - { source = pkgs.runCommand "crontabs" { inherit allFiles; } + { source = pkgs.runCommand "crontabs" { inherit allFiles; preferLocalBuild = true; } '' touch $out for i in $allFiles; do diff --git a/nixos/modules/services/x11/desktop-managers/gnome3.nix b/nixos/modules/services/x11/desktop-managers/gnome3.nix index fdee5fbc6c5..886a6c88401 100644 --- a/nixos/modules/services/x11/desktop-managers/gnome3.nix +++ b/nixos/modules/services/x11/desktop-managers/gnome3.nix @@ -104,6 +104,7 @@ in { services.xserver.desktopManager.session = singleton { name = "gnome3"; + bgSupport = true; start = '' # Set GTK_DATA_PREFIX so that GTK+ can find the themes export GTK_DATA_PREFIX=${config.system.path} diff --git a/nixos/modules/system/boot/loader/grub/grub.nix b/nixos/modules/system/boot/loader/grub/grub.nix index 0b349749244..5f09e937537 100644 --- a/nixos/modules/system/boot/loader/grub/grub.nix +++ b/nixos/modules/system/boot/loader/grub/grub.nix @@ -378,6 +378,17 @@ in ''; }; + systemHasTPM = mkOption { + default = ""; + example = "YES_TPM_is_activated"; + type = types.string; + description = '' + Assertion that the target system has an activated TPM. It is a safety + check before allowing the activation of 'enableTrustedBoot'. TrustedBoot + WILL FAIL TO BOOT YOUR SYSTEM if no TPM is available. + ''; + }; + }; }; @@ -453,8 +464,8 @@ in message = "Trusted GRUB does not have ZFS support"; } { - assertion = !cfg.enableTrustedBoot; - message = "Trusted GRUB can break your system. Remove assertion if you want to test trustedGRUB nevertheless."; + assertion = !cfg.enableTrustedBoot || cfg.systemHasTPM == "YES_TPM_is_activated"; + message = "Trusted GRUB can break the system! Confirm that the system has an activated TPM by setting 'systemHasTPM'."; } ] ++ flip concatMap cfg.mirroredBoots (args: [ { @@ -477,4 +488,15 @@ in ]; + + imports = + [ (mkRemovedOptionModule [ "boot" "loader" "grub" "bootDevice" ]) + (mkRenamedOptionModule [ "boot" "copyKernels" ] [ "boot" "loader" "grub" "copyKernels" ]) + (mkRenamedOptionModule [ "boot" "extraGrubEntries" ] [ "boot" "loader" "grub" "extraEntries" ]) + (mkRenamedOptionModule [ "boot" "extraGrubEntriesBeforeNixos" ] [ "boot" "loader" "grub" "extraEntriesBeforeNixOS" ]) + (mkRenamedOptionModule [ "boot" "grubDevice" ] [ "boot" "loader" "grub" "device" ]) + (mkRenamedOptionModule [ "boot" "bootMount" ] [ "boot" "loader" "grub" "bootDevice" ]) + (mkRenamedOptionModule [ "boot" "grubSplashImage" ] [ "boot" "loader" "grub" "splashImage" ]) + ]; + } diff --git a/nixos/modules/system/boot/systemd.nix b/nixos/modules/system/boot/systemd.nix index 13c44e0930a..4704b3981e4 100644 --- a/nixos/modules/system/boot/systemd.nix +++ b/nixos/modules/system/boot/systemd.nix @@ -772,4 +772,11 @@ in }; + # FIXME: Remove these eventually. + imports = + [ (mkRenamedOptionModule [ "boot" "systemd" "sockets" ] [ "systemd" "sockets" ]) + (mkRenamedOptionModule [ "boot" "systemd" "targets" ] [ "systemd" "targets" ]) + (mkRenamedOptionModule [ "boot" "systemd" "services" ] [ "systemd" "services" ]) + ]; + } diff --git a/nixos/modules/tasks/filesystems/nfs.nix b/nixos/modules/tasks/filesystems/nfs.nix index 79de6556f25..e454eca3a0e 100644 --- a/nixos/modules/tasks/filesystems/nfs.nix +++ b/nixos/modules/tasks/filesystems/nfs.nix @@ -90,7 +90,7 @@ in serviceConfig.Type = "forking"; serviceConfig.ExecStart = '' @${pkgs.nfs-utils}/sbin/rpc.statd rpc.statd --no-notify \ - ${if cfg.statdPort != null then "-p ${toString statdPort}" else ""} + ${if cfg.statdPort != null then "-p ${toString cfg.statdPort}" else ""} ''; serviceConfig.Restart = "always"; }; diff --git a/nixos/modules/tasks/network-interfaces-scripted.nix b/nixos/modules/tasks/network-interfaces-scripted.nix index d8b1592c36b..80b7f718580 100644 --- a/nixos/modules/tasks/network-interfaces-scripted.nix +++ b/nixos/modules/tasks/network-interfaces-scripted.nix @@ -222,21 +222,15 @@ in createVswitchDevice = n: v: nameValuePair "${n}-netdev" (let - managedInterfaces = filter (x: hasAttr x cfg.interfaces) v.interfaces; - managedInterfaceServices = concatMap (i: [ "network-addresses-${i}.service" "network-link-${i}.service" ]) managedInterfaces; - virtualInterfaces = filter (x: (hasAttr x cfg.interfaces) && cfg.interfaces.${x}.virtual) v.interfaces; - virtualInterfaceServices = concatMap (i: [ "${i}-netdev.service" ]) virtualInterfaces; deps = map subsystemDevice v.interfaces; ofRules = pkgs.writeText "vswitch-${n}-openFlowRules" v.openFlowRules; in { description = "Open vSwitch Interface ${n}"; - wantedBy = [ "network.target" "vswitchd.service" (subsystemDevice n) ]; - requires = optionals v.bindInterfaces (deps ++ managedInterfaceServices ++ virtualInterfaceServices); - requiredBy = optionals v.bindInterfaces (managedInterfaceServices ++ virtualInterfaceServices); - bindsTo = deps ++ [ "vswitchd.service" ]; + wantedBy = [ "network.target" "vswitchd.service" ] ++ deps; + bindsTo = [ "vswitchd.service" (subsystemDevice n) ] ++ deps; partOf = [ "vswitchd.service" ]; - after = [ "network-pre.target" "vswitchd.service" ] ++ deps ++ managedInterfaceServices ++ virtualInterfaceServices; - before = [ "network-interfaces.target" (subsystemDevice n) ]; + after = [ "network-pre.target" "vswitchd.service" ] ++ deps; + before = [ "network-interfaces.target" ]; serviceConfig.Type = "oneshot"; serviceConfig.RemainAfterExit = true; path = [ pkgs.iproute config.virtualisation.vswitch.package ]; diff --git a/nixos/modules/tasks/network-interfaces.nix b/nixos/modules/tasks/network-interfaces.nix index 9ffede48bf5..d042ee094cf 100644 --- a/nixos/modules/tasks/network-interfaces.nix +++ b/nixos/modules/tasks/network-interfaces.nix @@ -426,8 +426,8 @@ in description = '' This option allows you to define Open vSwitches that connect - physical networks together. The value of this option is an - attribute set. Each attribute specifies a vswitch, with the + physical networks together. The value of this option is an + attribute set. Each attribute specifies a vswitch, with the attribute name specifying the name of the vswitch's network interface. ''; @@ -443,16 +443,6 @@ in "The physical network interfaces connected by the vSwitch."; }; - bindInterfaces = mkOption { - type = types.bool; - default = false; - description = '' - If true, then the interfaces of the vSwitch are brought 'up' and especially - also 'down' together with the vSwitch. That requires that every interfaces - is configured as a systemd network services. - ''; - }; - controllers = mkOption { type = types.listOf types.str; default = []; @@ -995,21 +985,78 @@ in services.udev.packages = mkIf (cfg.wlanInterfaces != {}) [ (pkgs.writeTextFile { - name = "99-zzz-wlanInterfaces-last.rules"; - destination = "/etc/udev/rules.d/99-zzz-wlanInterfaces-last.rules"; - text = '' - # If persistent udev device name is not used for an interface, then do not - # call systemd for that udev device name and only execute the script that - # modifies or prepares the WLAN interfaces. All other commands that would - # otherwise be executed when the udev device is added, like, e.g., the calling - # of systemd-sysctl or the activation of wpa_supplicant is disabled when the - # persistend udev device name is not usef for an interface. - ${flip (concatMapStringsSep "\n") (attrNames wlanDeviceInterfaces) (device: - let script = wlanDeviceUdevScript device (wlanListDeviceFirst device wlanDeviceInterfaces."${device}"); in - if hasAttr device cfg.wlanInterfaces - then ''ACTION=="add", SUBSYSTEM=="net", NAME=="${device}", ENV{DEVTYPE}=="wlan", RUN+="${script}"'' - else ''ACTION=="add", SUBSYSTEM=="net", NAME=="${device}", ENV{DEVTYPE}=="wlan", NAME="", TAG-="systemd", RUN:="${script}"'')} - ''; + name = "99-zzz-40-wlanInterfaces.rules"; + destination = "/etc/udev/rules.d/99-zzz-40-wlanInterfaces.rules"; + text = + let + # Collect all interfaces that are defined for a device + # as device:interface key:value pairs. + wlanDeviceInterfaces = + let + allDevices = unique (mapAttrsToList (_: v: v.device) cfg.wlanInterfaces); + interfacesOfDevice = d: filterAttrs (_: v: v.device == d) cfg.wlanInterfaces; + in + genAttrs allDevices (d: interfacesOfDevice d); + + # Convert device:interface key:value pairs into a list, and if it exists, + # place the interface which is named after the device at the beginning. + wlanListDeviceFirst = device: interfaces: + if hasAttr device interfaces + then mapAttrsToList (n: v: v//{_iName=n;}) (filterAttrs (n: _: n==device) interfaces) ++ mapAttrsToList (n: v: v//{_iName=n;}) (filterAttrs (n: _: n!=device) interfaces) + else mapAttrsToList (n: v: v // {_iName = n;}) interfaces; + + # Udev script to execute for the default WLAN interface with the persistend udev name. + # The script creates the required, new WLAN interfaces interfaces and configures the + # existing, default interface. + curInterfaceScript = device: current: new: pkgs.writeScript "udev-run-script-wlan-interfaces-${device}.sh" '' + #!${pkgs.stdenv.shell} + # Change the wireless phy device to a predictable name. + ${pkgs.iw}/bin/iw phy `${pkgs.coreutils}/bin/cat /sys/class/net/$INTERFACE/phy80211/name` set name ${device} + + # Add new WLAN interfaces + ${flip concatMapStrings new (i: '' + ${pkgs.iw}/bin/iw phy ${device} interface add ${i._iName} type managed + '')} + + # Configure the current interface + ${pkgs.iw}/bin/iw dev ${device} set type ${current.type} + ${optionalString (current.type == "mesh" && current.meshID!=null) "${pkgs.iw}/bin/iw dev ${device} set meshid ${current.meshID}"} + ${optionalString (current.type == "monitor" && current.flags!=null) "${pkgs.iw}/bin/iw dev ${device} set monitor ${current.flags}"} + ${optionalString (current.type == "managed" && current.fourAddr!=null) "${pkgs.iw}/bin/iw dev ${device} set 4addr ${if current.fourAddr then "on" else "off"}"} + ${optionalString (current.mac != null) "${pkgs.iproute}/bin/ip link set dev ${device} address ${current.mac}"} + ''; + + # Udev script to execute for a new WLAN interface. The script configures the new WLAN interface. + newInterfaceScript = new: pkgs.writeScript "udev-run-script-wlan-interfaces-${new._iName}.sh" '' + #!${pkgs.stdenv.shell} + # Configure the new interface + ${pkgs.iw}/bin/iw dev ${new._iName} set type ${new.type} + ${optionalString (new.type == "mesh" && new.meshID!=null) "${pkgs.iw}/bin/iw dev ${device} set meshid ${new.meshID}"} + ${optionalString (new.type == "monitor" && new.flags!=null) "${pkgs.iw}/bin/iw dev ${device} set monitor ${new.flags}"} + ${optionalString (new.type == "managed" && new.fourAddr!=null) "${pkgs.iw}/bin/iw dev ${device} set 4addr ${if new.fourAddr then "on" else "off"}"} + ${optionalString (new.mac != null) "${pkgs.iproute}/bin/ip link set dev ${device} address ${new.mac}"} + ''; + + # Udev attributes for systemd to name the device and to create a .device target. + systemdAttrs = n: ''NAME:="${n}", ENV{INTERFACE}:="${n}", ENV{SYSTEMD_ALIAS}:="/sys/subsystem/net/devices/${n}", TAG+="systemd"''; + in + flip (concatMapStringsSep "\n") (attrNames wlanDeviceInterfaces) (device: + let + interfaces = wlanListDeviceFirst device wlanDeviceInterfaces."${device}"; + curInterface = elemAt interfaces 0; + newInterfaces = drop 1 interfaces; + in '' + # It is important to have that rule first as overwriting the NAME attribute also prevents the + # next rules from matching. + ${flip (concatMapStringsSep "\n") (wlanListDeviceFirst device wlanDeviceInterfaces."${device}") (interface: + ''ACTION=="add", SUBSYSTEM=="net", ENV{DEVTYPE}=="wlan", ENV{INTERFACE}=="${interface._iName}", ${systemdAttrs interface._iName}, RUN+="${newInterfaceScript interface}"'')} + + # Add the required, new WLAN interfaces to the default WLAN interface with the + # persistent, default name as assigned by udev. + ACTION=="add", SUBSYSTEM=="net", ENV{DEVTYPE}=="wlan", NAME=="${device}", ${systemdAttrs curInterface._iName}, RUN+="${curInterfaceScript device curInterface newInterfaces}" + # Generate the same systemd events for both 'add' and 'move' udev events. + ACTION=="move", SUBSYSTEM=="net", ENV{DEVTYPE}=="wlan", NAME=="${device}", ${systemdAttrs curInterface._iName} + ''); }) ]; }; diff --git a/nixos/modules/virtualisation/docker.nix b/nixos/modules/virtualisation/docker.nix index 0115b972e80..0c642bf3b81 100644 --- a/nixos/modules/virtualisation/docker.nix +++ b/nixos/modules/virtualisation/docker.nix @@ -46,12 +46,10 @@ in storageDriver = mkOption { type = types.enum ["aufs" "btrfs" "devicemapper" "overlay" "zfs"]; + default = "devicemapper"; description = '' This option determines which Docker storage driver to use. - It is required but lacks a default value as its most - suitable value will depend the filesystems available on the - host. ''; }; extraOptions = @@ -129,7 +127,7 @@ in LimitNPROC = 1048576; } // proxy_env; - path = [ pkgs.kmod ]; + path = [ pkgs.kmod ] ++ (optional (cfg.storageDriver == "zfs") pkgs.zfs); environment.MODULE_DIR = "/run/current-system/kernel-modules/lib/modules"; postStart = cfg.postStart; diff --git a/nixos/release-combined.nix b/nixos/release-combined.nix index a3948401d78..4dc221dba68 100644 --- a/nixos/release-combined.nix +++ b/nixos/release-combined.nix @@ -51,7 +51,7 @@ in rec { (all nixos.tests.chromium) (all nixos.tests.firefox) (all nixos.tests.firewall) - (all nixos.tests.gnome3) + nixos.tests.gnome3.x86_64-linux # FIXME: i686-linux (all nixos.tests.installer.lvm) (all nixos.tests.installer.luksroot) (all nixos.tests.installer.separateBoot) diff --git a/nixos/tests/docker.nix b/nixos/tests/docker.nix index 034dcb04adf..635a97e2ce0 100644 --- a/nixos/tests/docker.nix +++ b/nixos/tests/docker.nix @@ -11,6 +11,8 @@ import ./make-test.nix ({ pkgs, ...} : { { config, pkgs, ... }: { virtualisation.docker.enable = true; + # FIXME: The default "devicemapper" storageDriver fails in NixOS VM + # tests. virtualisation.docker.storageDriver = "overlay"; }; }; diff --git a/nixos/tests/gnome3.nix b/nixos/tests/gnome3.nix index 7662efe1b35..714b3550370 100644 --- a/nixos/tests/gnome3.nix +++ b/nixos/tests/gnome3.nix @@ -28,7 +28,7 @@ import ./make-test.nix ({ pkgs, ...} : { $machine->succeed("su - alice -c 'DISPLAY=:0.0 gnome-terminal &'"); $machine->waitForWindow(qr/Terminal/); - $machine->mustSucceed("timeout 60 bash -c 'journalctl -f|grep -m 1 \"GNOME Shell started\"'"); + $machine->mustSucceed("timeout 900 bash -c 'journalctl -f|grep -m 1 \"GNOME Shell started\"'"); $machine->sleep(10); $machine->screenshot("screen"); ''; diff --git a/pkgs/applications/audio/ardour/default.nix b/pkgs/applications/audio/ardour/default.nix index e47dbfb856b..56ba68df70b 100644 --- a/pkgs/applications/audio/ardour/default.nix +++ b/pkgs/applications/audio/ardour/default.nix @@ -25,8 +25,8 @@ stdenv.mkDerivation rec { src = fetchFromGitHub { owner = "Ardour"; repo = "ardour"; - rev = "fe672c827cb2c08c94b1fa7e527d884c522a1af7"; - sha256 = "12yfy9l5mnl96ix4s2qicp3m2zscli1a4bd50nk9v035pgf77s3f"; + rev = "05e3a00b7e3a52a838bc5ec9ee7b3b9e6a271feb"; + sha256 = "1j8zw0bvh16qwyy8qrqynpak9nghl9j3qhjjcdl7wh9raafjqc00"; }; buildInputs = diff --git a/pkgs/applications/audio/meterbridge/buf_rect.patch b/pkgs/applications/audio/meterbridge/buf_rect.patch new file mode 100644 index 00000000000..f108b80c101 --- /dev/null +++ b/pkgs/applications/audio/meterbridge/buf_rect.patch @@ -0,0 +1,12 @@ +--- ../tmp-orig/meterbridge-0.9.2/src/main.h 2003-06-05 11:42:41.000000000 +0200 ++++ ./src/main.h 2004-12-29 10:27:24.160912488 +0100 +@@ -8,7 +8,7 @@ + + extern SDL_Surface *screen; + extern SDL_Surface *image, *meter, *meter_buf; +-extern SDL_Rect win, buf_rect[MAX_METERS], dest[MAX_METERS]; ++extern SDL_Rect win, dest[MAX_METERS]; + + extern jack_port_t *input_ports[MAX_METERS]; + extern jack_port_t *output_ports[MAX_METERS]; + diff --git a/pkgs/applications/audio/meterbridge/default.nix b/pkgs/applications/audio/meterbridge/default.nix new file mode 100644 index 00000000000..e15febda231 --- /dev/null +++ b/pkgs/applications/audio/meterbridge/default.nix @@ -0,0 +1,26 @@ +{ stdenv, fetchurl, pkgconfig, SDL, SDL_image, libjack2 +}: + +stdenv.mkDerivation rec { + version = "0.9.2"; + name = "meterbridge-${version}"; + + src = fetchurl { + url = "http://plugin.org.uk/meterbridge/${name}.tar.gz"; + sha256 = "0jb6g3kbfyr5yf8mvblnciva2bmc01ijpr51m21r27rqmgi8gj5k"; + }; + + patches = [ ./buf_rect.patch ]; + + buildInputs = + [ pkgconfig SDL SDL_image libjack2 + ]; + + meta = with stdenv.lib; { + description = "Various meters (VU, PPM, DPM, JF, SCO) for Jack Audio Connection Kit"; + homepage = http://plugin.org.uk/meterbridge/; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = [ maintainers.nico202 ]; + }; +} diff --git a/pkgs/applications/audio/non/default.nix b/pkgs/applications/audio/non/default.nix new file mode 100644 index 00000000000..6c9e7eb708a --- /dev/null +++ b/pkgs/applications/audio/non/default.nix @@ -0,0 +1,29 @@ +{ stdenv, fetchFromGitHub, pkgconfig, python2, cairo, libjpeg, ntk, libjack2, libsndfile, +ladspaH, liblrdf, liblo, libsigcxx +}: + +stdenv.mkDerivation rec { + name = "non-${version}"; + version = "2015-10-6"; + src = fetchFromGitHub { + owner = "original-male"; + repo = "non"; + rev = "88fe7e7b97c97b8733506685f043cbc71b196646"; + sha256 = "15cffp6c14rlssc8g3mrw8zvb88wffb8k8g1vhd299qlcgv7di2h"; + }; + + buildInputs = [ pkgconfig python2 cairo libjpeg ntk libjack2 libsndfile + ladspaH liblrdf liblo libsigcxx + ]; + configurePhase = ''python waf configure --prefix=$out''; + buildPhase = ''python waf build''; + installPhase = ''python waf install''; + + meta = { + description = "Lightweight and lightning fast modular Digital Audio Workstation"; + homepage = http://non.tuxfamily.org; + license = stdenv.lib.licenses.lgpl21; + platforms = stdenv.lib.platforms.linux; + maintainers = [ stdenv.lib.maintainers.nico202 ]; + }; +} diff --git a/pkgs/applications/audio/yoshimi/default.nix b/pkgs/applications/audio/yoshimi/default.nix index cd334c4254f..dc2fe0ba649 100644 --- a/pkgs/applications/audio/yoshimi/default.nix +++ b/pkgs/applications/audio/yoshimi/default.nix @@ -6,11 +6,11 @@ assert stdenv ? glibc; stdenv.mkDerivation rec { name = "yoshimi-${version}"; - version = "1.3.5.2"; + version = "1.3.6"; src = fetchurl { url = "mirror://sourceforge/yoshimi/${name}.tar.bz2"; - sha256 = "001xvwknsm1sv5lvwz7f6dgf57b8djbpwbyk2gfxjy9rzl5q53qr"; + sha256 = "0c2y59m945rrspnwdxmixk92z9nfiayxdxh582gf15nj8bvkh1l6"; }; buildInputs = [ diff --git a/pkgs/applications/backup/crashplan/default.nix b/pkgs/applications/backup/crashplan/default.nix index 5a0e8c7cfbd..f86ab91344f 100644 --- a/pkgs/applications/backup/crashplan/default.nix +++ b/pkgs/applications/backup/crashplan/default.nix @@ -16,6 +16,7 @@ in stdenv.mkDerivation rec { description = "An online/offline backup solution"; homepage = "http://www.crashplan.org"; license = licenses.unfree; + broken = true; # outdated and new client has trouble starting (nullpointer exception) maintainers = with maintainers; [ sztupi iElectric ]; }; diff --git a/pkgs/applications/display-managers/lightdm/default.nix b/pkgs/applications/display-managers/lightdm/default.nix index dc50ced1a60..7437d0fcfaf 100644 --- a/pkgs/applications/display-managers/lightdm/default.nix +++ b/pkgs/applications/display-managers/lightdm/default.nix @@ -6,14 +6,14 @@ let ver_branch = "1.16"; - version = "1.16.2"; + version = "1.16.3"; in stdenv.mkDerivation rec { name = "lightdm-${version}"; src = fetchurl { url = "${meta.homepage}/${ver_branch}/${version}/+download/${name}.tar.xz"; - sha256 = "062jj21bjrl29mk66lpihwhrff038h2wny3p6b5asacf2mklf0hq"; + sha256 = "0jsvpg86nzwzacnr1bfzw81432j6m6lg2daqgy04ywj976k0x2y8"; }; patches = [ ./fix-paths.patch ]; diff --git a/pkgs/applications/display-managers/sddm/cmake_paths.patch b/pkgs/applications/display-managers/sddm/cmake_paths.patch deleted file mode 100644 index 7deb3e2e1bd..00000000000 --- a/pkgs/applications/display-managers/sddm/cmake_paths.patch +++ /dev/null @@ -1,55 +0,0 @@ -diff --git a/CMakeLists.txt b/CMakeLists.txt -index 4d6e0a9..df4ad28 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -77,7 +77,9 @@ find_package(Qt5LinguistTools REQUIRED) - - # find qt5 imports dir - get_target_property(QMAKE_EXECUTABLE Qt5::qmake LOCATION) --exec_program(${QMAKE_EXECUTABLE} ARGS "-query QT_INSTALL_QML" RETURN_VALUE return_code OUTPUT_VARIABLE QT_IMPORTS_DIR) -+if(NOT QT_IMPORTS_DIR) -+ exec_program(${QMAKE_EXECUTABLE} ARGS "-query QT_INSTALL_QML" RETURN_VALUE return_code OUTPUT_VARIABLE QT_IMPORTS_DIR) -+endif() - - # Set components version - set(COMPONENTS_VERSION 2.0) -diff --git a/data/man/sddm.conf.rst.in b/data/man/sddm.conf.rst.in -index 6a28224..798bc5c 100644 ---- a/data/man/sddm.conf.rst.in -+++ b/data/man/sddm.conf.rst.in -@@ -65,6 +65,10 @@ OPTIONS - Path of the X server. - Default value is "/usr/bin/X". - -+`XephyrPath=` -+ Path of the Xephyr. -+ Default value is "/usr/bin/Xephyr". -+ - `XauthPath=` - Path of the Xauth. - Default value is "/usr/bin/xauth". -diff --git a/src/common/Configuration.h b/src/common/Configuration.h -index 72aa6f4..854cc22 100644 ---- a/src/common/Configuration.h -+++ b/src/common/Configuration.h -@@ -54,6 +54,7 @@ namespace SDDM { - // TODO: Not absolutely sure if everything belongs here. Xsessions, VT and probably some more seem universal - Section(XDisplay, - Entry(ServerPath, QString, _S("/usr/bin/X"), _S("X server path")); -+ Entry(XephyrPath, QString, _S("/usr/bin/Xephyr"), _S("Xephyr path")); - Entry(XauthPath, QString, _S("/usr/bin/xauth"), _S("Xauth path")); - Entry(SessionDir, QString, _S("/usr/share/xsessions"), _S("Session description directory")); - Entry(SessionCommand, QString, _S(SESSION_COMMAND), _S("Xsession script path\n" -diff --git a/src/daemon/XorgDisplayServer.cpp b/src/daemon/XorgDisplayServer.cpp -index f10ad82..cb9de3f 100644 ---- a/src/daemon/XorgDisplayServer.cpp -+++ b/src/daemon/XorgDisplayServer.cpp -@@ -136,7 +136,7 @@ namespace SDDM { - if (daemonApp->testing()) { - QStringList args; - args << m_display << "-ac" << "-br" << "-noreset" << "-screen" << "800x600"; -- process->start("/usr/bin/Xephyr", args); -+ process->start(mainConfig.XDisplay.XephyrPath.get(), args); - } else { - // set process environment - QProcessEnvironment env = QProcessEnvironment::systemEnvironment(); diff --git a/pkgs/applications/display-managers/sddm/default.nix b/pkgs/applications/display-managers/sddm/default.nix index 82cd8bd3091..aad4bccb418 100644 --- a/pkgs/applications/display-managers/sddm/default.nix +++ b/pkgs/applications/display-managers/sddm/default.nix @@ -1,10 +1,8 @@ -{ stdenv, fetchpatch, fetchFromGitHub, cmake, pkgconfig, libxcb -, libpthreadstubs, libXdmcp, libXau, qtbase, qtdeclarative, qttools, pam -, systemd -}: +{ stdenv, fetchpatch, makeWrapper, fetchFromGitHub, cmake, pkgconfig, libxcb, libpthreadstubs +, libXdmcp, libXau, qtbase, qtdeclarative, qttools, pam, systemd }: let - version = "0.11.0"; + version = "0.12.0"; in stdenv.mkDerivation rec { name = "sddm-${version}"; @@ -13,21 +11,25 @@ stdenv.mkDerivation rec { owner = "sddm"; repo = "sddm"; rev = "v${version}"; - sha256 = "1s1gm0xvgwzrpxgni3ngdj8phzg21gkk1jyiv2l2i5ayl0jdm7ig"; + sha256 = "09amr61srvl52nvxlqqgs9fzn33pc2gjv5hc83gxx43x6q2j19gg"; }; + patches = [ ./sddm-ignore-config-mtime.patch ]; + nativeBuildInputs = [ cmake pkgconfig qttools ]; buildInputs = [ libxcb libpthreadstubs libXdmcp libXau qtbase qtdeclarative pam systemd ]; - patches = [ (fetchpatch { - url = "https://github.com/sddm/sddm/commit/9bc21ee7da5de6b2531d47d1af4d7b0a169990b9.patch"; - sha256 = "1pda0wf4xljdadja7iyh5c48h0347imadg9ya1dw5slgb7w1d94l"; - }) - ./cmake_paths.patch - ]; - - cmakeFlags = [ "-DCONFIG_FILE=/etc/sddm.conf" ]; + cmakeFlags = [ + "-DCONFIG_FILE=/etc/sddm.conf" + # Set UID_MIN and UID_MAX so that the build script won't try + # to read them from /etc/login.defs (fails in chroot). + # The values come from NixOS; they may not be appropriate + # for running SDDM outside NixOS, but that configuration is + # not supported anyway. + "-DUID_MIN=1000" + "-DUID_MAX=29999" + ]; preConfigure = '' export cmakeFlags="$cmakeFlags -DQT_IMPORTS_DIR=$out/lib/qt5/qml -DCMAKE_INSTALL_SYSCONFDIR=$out/etc -DSYSTEMD_SYSTEM_UNIT_DIR=$out/lib/systemd/system" diff --git a/pkgs/applications/display-managers/sddm/sddm-ignore-config-mtime.patch b/pkgs/applications/display-managers/sddm/sddm-ignore-config-mtime.patch new file mode 100644 index 00000000000..9edd9a7b538 --- /dev/null +++ b/pkgs/applications/display-managers/sddm/sddm-ignore-config-mtime.patch @@ -0,0 +1,16 @@ +diff --git a/src/common/ConfigReader.cpp b/src/common/ConfigReader.cpp +index 6618455..5356e76 100644 +--- a/src/common/ConfigReader.cpp ++++ b/src/common/ConfigReader.cpp +@@ -136,11 +136,6 @@ namespace SDDM { + QString currentSection = QStringLiteral(IMPLICIT_SECTION); + + QFile in(m_path); +- QDateTime modificationTime = QFileInfo(in).lastModified(); +- if (modificationTime <= m_fileModificationTime) { +- return; +- } +- m_fileModificationTime = modificationTime; + + in.open(QIODevice::ReadOnly); + while (!in.atEnd()) { diff --git a/pkgs/applications/editors/eclipse/plugins.nix b/pkgs/applications/editors/eclipse/plugins.nix index b80d63f69d3..493858f93c8 100644 --- a/pkgs/applications/editors/eclipse/plugins.nix +++ b/pkgs/applications/editors/eclipse/plugins.nix @@ -171,12 +171,12 @@ rec { checkstyle = buildEclipseUpdateSite rec { name = "checkstyle-${version}"; - version = "6.9.0.201508291549"; + version = "6.11.0.201510052139"; src = fetchzip { stripRoot = false; - url = "mirror://sourceforge/project/eclipse-cs/Eclipse%20Checkstyle%20Plug-in/6.9.0/net.sf.eclipsecs-updatesite_${version}-bin.zip"; - sha256 = "0r6lfbyhqcwa628i6wjp9d6mfp4jnc46bmwp9j7v02m79f8wx74g"; + url = "mirror://sourceforge/project/eclipse-cs/Eclipse%20Checkstyle%20Plug-in/6.11.0/net.sf.eclipsecs-updatesite_${version}-bin.zip"; + sha256 = "166nasgv3zsys7rlafvfnldfb6hiwiq3vil3papd59prwvky75fz"; }; meta = with stdenv.lib; { @@ -335,16 +335,16 @@ rec { testng = buildEclipsePlugin rec { name = "testng-${version}"; - version = "6.9.5.201508210528"; + version = "6.9.7.201510070420"; srcFeature = fetchurl { url = "http://beust.com/eclipse/features/org.testng.eclipse_${version}.jar"; - sha256 = "0xalm7pvj0vx61isgkjkgj073b4hlqlzx6xnkrnnnyi0r212a26j"; + sha256 = "185m6zcz1havhl94qgwms9szcs7vhrrq8rckbrb1vz02208yyhpn"; }; srcPlugin = fetchurl { url = "http://beust.com/eclipse/plugins/org.testng.eclipse_${version}.jar"; - sha256 = "07wmivfvfsq6cjw5zwciajdxkfa7drk108jsr44gf4i1bv9fj055"; + sha256 = "1rw678cd9nm623dvaddncadaclif62zcb15jl7ryzcmck2y380l5"; }; meta = with stdenv.lib; { diff --git a/pkgs/applications/editors/emacs-24/default.nix b/pkgs/applications/editors/emacs-24/default.nix index e0d74afabcd..eb814eab6f5 100644 --- a/pkgs/applications/editors/emacs-24/default.nix +++ b/pkgs/applications/editors/emacs-24/default.nix @@ -47,10 +47,8 @@ stdenv.mkDerivation rec { imagemagick gconf ] ++ stdenv.lib.optional (withX && withGTK2) gtk2 ++ stdenv.lib.optional (withX && withGTK3) gtk3 - ++ stdenv.lib.optional (stdenv.isDarwin && withX) cairo; - - propagatedBuildInputs = stdenv.lib.optionals stdenv.isDarwin [ AppKit Foundation libobjc - ]; + ++ stdenv.lib.optional (stdenv.isDarwin && withX) cairo + ++ stdenv.lib.optionals stdenv.isDarwin [ AppKit Foundation libobjc ]; NIX_LDFLAGS = stdenv.lib.optional stdenv.isDarwin "/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation"; diff --git a/pkgs/applications/editors/emacs-24/macport-24.5.nix b/pkgs/applications/editors/emacs-24/macport-24.5.nix index 879c0f55137..13a888484e0 100644 --- a/pkgs/applications/editors/emacs-24/macport-24.5.nix +++ b/pkgs/applications/editors/emacs-24/macport-24.5.nix @@ -4,7 +4,7 @@ libobjc, Cocoa, WebKit, Quartz, ImageCaptureCore, OSAKit stdenv.mkDerivation rec { emacsName = "emacs-24.5"; - name = "${emacsName}-mac-5.10"; + name = "${emacsName}-mac-5.11"; #builder = ./builder.sh; @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { macportSrc = fetchurl { url = "ftp://ftp.math.s.chiba-u.ac.jp/emacs/${name}.tar.gz"; - sha256 = "0d4r4mgqxcdba715lbr7rk4bxz7yjxi6wv63kyh6gaqbfgql41vf"; + sha256 = "0p4jh6s1qi6jm6zr82grk65x33ix1hb0fbpih4vh3vnx6310iwsb"; }; NIX_CFLAGS_COMPILE = "-Wno-deprecated-declarations"; diff --git a/pkgs/applications/editors/emacs-modes/markdown-mode/default.nix b/pkgs/applications/editors/emacs-modes/markdown-mode/default.nix new file mode 100644 index 00000000000..7176b289b8b --- /dev/null +++ b/pkgs/applications/editors/emacs-modes/markdown-mode/default.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchFromGitHub, emacs }: + +let + version = "2.0-82-gfe30ef7"; +in +stdenv.mkDerivation { + name = "markdown-mode-${version}"; + + src = fetchFromGitHub { + owner = "defunkt"; + repo = "markdown-mode"; + rev = "v${version}"; + sha256 = "14a6r05j0g2ppq2q4kd14qyxwr6yv5jwndavbwzkmp6qhmm9k8nz"; + }; + + buildInputs = [ emacs ]; + + buildPhase = '' + emacs -L . --batch -f batch-byte-compile *.el + ''; + + installPhase = '' + install -d $out/share/emacs/site-lisp + install *.el *.elc $out/share/emacs/site-lisp + ''; + + meta.license = stdenv.lib.licenses.gpl3Plus; +} diff --git a/pkgs/applications/editors/emacs-modes/org/default.nix b/pkgs/applications/editors/emacs-modes/org/default.nix index 1276e4754eb..f7289a3b400 100644 --- a/pkgs/applications/editors/emacs-modes/org/default.nix +++ b/pkgs/applications/editors/emacs-modes/org/default.nix @@ -2,11 +2,11 @@ , texLiveAggregationFun }: stdenv.mkDerivation rec { - name = "org-8.3.1"; + name = "org-8.3.2"; src = fetchurl { url = "http://orgmode.org/${name}.tar.gz"; - sha256 = "0cn3k02b2dhp489rrlaz4g91h0ph99a7721gm8x7axicqhpv04rx"; + sha256 = "1f3mi1g4s8psfzq8mfbq3sccj7hsxvcfww0gf4337xs6jp8i3s4a"; }; buildInputs = [ emacs ]; diff --git a/pkgs/applications/editors/geany/default.nix b/pkgs/applications/editors/geany/default.nix index 8d4002c9ef8..5dd839d5651 100644 --- a/pkgs/applications/editors/geany/default.nix +++ b/pkgs/applications/editors/geany/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, gtk2, which, pkgconfig, intltool, file }: let - version = "1.24.1"; + version = "1.25"; in stdenv.mkDerivation rec { @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "http://download.geany.org/${name}.tar.bz2"; - sha256 = "0cwci8876dpgcn60dfvjlciqr8x68iv86psjj148grhzn3chbdbz"; + sha256 = "8ee41da28cead8c94d433e616d7ababa81727c63e9196ca6758ade3af14a49ef"; }; buildInputs = [ gtk2 which pkgconfig intltool file ]; diff --git a/pkgs/applications/editors/geany/with-vte.nix b/pkgs/applications/editors/geany/with-vte.nix new file mode 100644 index 00000000000..ffffed1b853 --- /dev/null +++ b/pkgs/applications/editors/geany/with-vte.nix @@ -0,0 +1,6 @@ +{ runCommand, makeWrapper, geany, gnome }: +let name = builtins.replaceStrings ["geany-"] ["geany-with-vte-"] geany.name; +in +runCommand "${name}" { nativeBuildInputs = [ makeWrapper ]; } " + makeWrapper ${geany}/bin/geany $out/bin/geany --prefix LD_LIBRARY_PATH : ${gnome.vte}/lib +" diff --git a/pkgs/applications/editors/idea/default.nix b/pkgs/applications/editors/idea/default.nix index 8824711fec6..1148e1ca6cb 100644 --- a/pkgs/applications/editors/idea/default.nix +++ b/pkgs/applications/editors/idea/default.nix @@ -212,14 +212,14 @@ in android-studio = buildAndroidStudio rec { name = "android-studio-${version}"; - version = "1.2.2.0"; - build = "141.1980579"; + version = "1.4.0.10"; + build = "141.2288178"; description = "Android development environment based on IntelliJ IDEA"; license = stdenv.lib.licenses.asl20; src = fetchurl { url = "https://dl.google.com/dl/android/studio/ide-zips/${version}" + "/android-studio-ide-${build}-linux.zip"; - sha256 = "08bayp2kxxg0zdmd1rcfg89g80wmwxf56fzmk5xkz1qg6s9b98a6"; + sha256 = "04zzzk6xlvzip6klxvs4zz2wyfyn3w9b5jwilzbqjidiz2d3va57"; }; }; diff --git a/pkgs/applications/editors/neovim/default.nix b/pkgs/applications/editors/neovim/default.nix index c55d4b0e76a..be0a00482f3 100644 --- a/pkgs/applications/editors/neovim/default.nix +++ b/pkgs/applications/editors/neovim/default.nix @@ -14,7 +14,7 @@ with stdenv.lib; let - version = "2015-06-09"; + version = "2015-10-12"; # Note: this is NOT the libvterm already in nixpkgs, but some NIH silliness: neovimLibvterm = let version = "2015-02-23"; in stdenv.mkDerivation { @@ -58,8 +58,8 @@ let name = "neovim-${version}"; src = fetchFromGitHub { - sha256 = "1lycql0lwi7ynrsaln4kxybwvxb9fvganiq3ba4pnpcfgl155k1j"; - rev = "6270d431aaeed71e7a8782411f36409ab8e0ee35"; + sha256 = "1rlybdldz708pz7k0qs2rpm0cjk8ywwyj5s38hyq4mzsswqszdsc"; + rev = "a3f048ee06dea15490d7b874d295c3fc850cdc51"; repo = "neovim"; owner = "neovim"; }; @@ -103,7 +103,7 @@ let '' + optionalString withPython '' ln -s ${pythonEnv}/bin/python $out/bin/nvim-python '' + optionalString withPython3 '' - ln -s ${python3Env}/bin/python $out/bin/nvim-python3 + ln -s ${python3Env}/bin/python3 $out/bin/nvim-python3 '' + optionalString (withPython || withPython3) '' wrapProgram $out/bin/nvim --add-flags "${ (optionalString withPython diff --git a/pkgs/applications/editors/textadept/default.nix b/pkgs/applications/editors/textadept/default.nix index 9eb1bdc7e43..a8f12bd4ece 100644 --- a/pkgs/applications/editors/textadept/default.nix +++ b/pkgs/applications/editors/textadept/default.nix @@ -20,14 +20,14 @@ let ''; in stdenv.mkDerivation rec{ - version = "8.0"; - scintillua_version = "3.5.5-1"; + version = "8.2"; + scintillua_version = "3.6.0-1"; name = "textadept-${version}"; inherit buildInputs; src = fetchhg { url = http://foicica.com/hg/textadept; rev = "textadept_${version}"; - sha256 = "18kcphqkn0l77dbcyvywy3wh13ib280bb0qsffaqy439gk5zr7ql"; + sha256 = "1vb6a15fyk7ixcv5fy0g400lxbj6dp5ndbmyx53d28idbdkz9ap1"; }; preConfigure = '' cd src @@ -35,16 +35,17 @@ stdenv.mkDerivation rec{ echo '#! ${stdenv.shell}' > wget/wget chmod a+x wget/wget export PATH="$PATH:$PWD/wget" - ${get_url http://prdownloads.sourceforge.net/scintilla/scintilla355.tgz "11n49h58xh35vj1j85cxasl93rjiv699c5cs5lpv19skfsgs3sb4"} + ${get_url http://prdownloads.sourceforge.net/scintilla/scintilla360.tgz "07ib4w3n9kqfaia2yngj2q7ab5r55zn0hccfzph6vas9hl8vk9zf"} ${get_url http://foicica.com/scinterm/download/scinterm_1.6.zip "0ixwj9il6ri1xl4nvb6f108z4qhrahysza6frbbaqmbdz21hnmcl"} - ${get_url http://foicica.com/scintillua/download/scintillua_3.5.5-1.zip "0bpz5rmgaisbimhm6rpn961mbv30cwqid7kh9lad94v3y9ppvf35"} - ${get_url http://www.lua.org/ftp/lua-5.3.0.tar.gz "00fv1p6dv4701pyjrlvkrr6ykzxqy9hy1qxzj6qmwlb0ssr5wjmf"} + ${get_url http://foicica.com/scintillua/download/scintillua_3.6.0-1.zip "0zk1ciyyi0d3dz4dzzq5fa74505pvqf0w5yszl7l29c1l4hkk561"} + ${get_url http://www.lua.org/ftp/lua-5.3.1.tar.gz "05xczy5ws6d7ic3f9h9djwg983bpa4pmds3698264bncssm6f9q7"} ${get_url http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-0.12.2.tar.gz "01002avq90yc8rgxa5z9a1768jm054iid3pnfpywdcfij45jgbba"} ${get_url_zip http://github.com/keplerproject/luafilesystem/archive/v_1_6_3.zip "1hxcnqj53540ysyw8fzax7f09pl98b8f55s712gsglcdxp2g2pri"} ${get_url http://foicica.com/lspawn/download/lspawn_1.2.zip "1fhfi274bxlsdvva5q5j0wv8hx68cmf3vnv9spllzad4jdvz82xv"} ${get_url http://luajit.org/download/LuaJIT-2.0.3.tar.gz "0ydxpqkmsn2c341j4r2v6r5r0ig3kbwv3i9jran3iv81s6r6rgjm"} ${get_url http://foicica.com/gtdialog/download/gtdialog_1.2.zip "0nvcldyhj8abr8jny9pbyfjwg8qfp9f2h508vjmrvr5c5fqdbbm0"} - ${get_url http://invisible-island.net/datafiles/release/cdk.tar.gz "00s87kq5x10x22azr6q17b663syk169y3dk3kaj8z6dlk2b8vknp"} + ${get_url ftp://invisible-island.net/cdk/cdk-5.0-20150928.tgz "028da75d5f777a1c4184f88e34918bd273bd83bbe3c959bc11710c4f0ea2e448"} + mv cdk-*.tgz cdk.tar.gz ${get_url_zip http://foicica.com/hg/bombay/archive/d704272c3629.zip "19dg3ky87rfy0a3319vmv18hgn9spplpznvlqnk3djh239ddpplw"} mv d704*.zip bombay.zip ${get_url http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.17.tar.gz "12gkrv1ldwk945qbpprnyawh0jz7rmqh18fyndbxiajyxmj97538"} diff --git a/pkgs/applications/editors/vim/default.nix b/pkgs/applications/editors/vim/default.nix index 3bdd44529dd..cb151548f79 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 }: +, CoreServices, CoreData, Cocoa, Foundation, libobjc, cf-private }: stdenv.mkDerivation rec { name = "vim-${version}"; @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; buildInputs = [ ncurses pkgconfig ] - ++ stdenv.lib.optionals stdenv.isDarwin [ CoreData CoreServices Cocoa Foundation libobjc ]; + ++ stdenv.lib.optionals stdenv.isDarwin [ cf-private CoreData CoreServices Cocoa Foundation libobjc ]; nativeBuildInputs = [ gettext ]; configureFlags = [ diff --git a/pkgs/applications/gis/saga/default.nix b/pkgs/applications/gis/saga/default.nix index 7ba523d3a60..46fefc9fd7b 100644 --- a/pkgs/applications/gis/saga/default.nix +++ b/pkgs/applications/gis/saga/default.nix @@ -2,15 +2,15 @@ libharu, opencv, vigra, postgresql }: stdenv.mkDerivation rec { - name = "saga-2.2.0"; + name = "saga-2.2.1"; buildInputs = [ gdal wxGTK30 proj libharu opencv vigra postgresql libiodbc lzma jasper ]; enableParallelBuilding = true; src = fetchurl { - url = "http://sourceforge.net/projects/saga-gis/files/SAGA%20-%202.2/SAGA%202.2.0/saga_2.2.0.tar.gz"; - sha256 = "50b2e642331c817606bc954302e53757c4ffa6f6d6f468e12caeaaa7a182edaf"; + url = "http://sourceforge.net/projects/saga-gis/files/SAGA%20-%202.2/SAGA%202.2.1/saga_2.2.1.tar.gz"; + sha256 = "325e0890c28dc19c4ec727f58672be67480b2a4dd6604252c0cc4cc08aad34d0"; }; meta = { diff --git a/pkgs/applications/graphics/feh/default.nix b/pkgs/applications/graphics/feh/default.nix index 266f70e3008..8602a9a04f8 100644 --- a/pkgs/applications/graphics/feh/default.nix +++ b/pkgs/applications/graphics/feh/default.nix @@ -2,14 +2,15 @@ , libXinerama, curl, libexif }: stdenv.mkDerivation rec { - name = "feh-2.13.1"; + name = "feh-2.14"; src = fetchurl { url = "http://feh.finalrewind.org/${name}.tar.bz2"; - sha256 = "1059mflgw8hl398lwy55fj50a98xryvdf23wkpbn4s0z9388hl46"; + sha256 = "0j5wxpqccnd0hl74z2vwv25n7qnik1n2mcm2jn0c0z7cjn4wsa9q"; }; - buildInputs = [ makeWrapper xlibsWrapper imlib2 libjpeg libpng libXinerama curl libexif ]; + nativeBuildInputs = [ makeWrapper ]; + buildInputs = [ xlibsWrapper imlib2 libjpeg libpng libXinerama curl libexif ]; preBuild = '' makeFlags="PREFIX=$out exif=1" diff --git a/pkgs/applications/graphics/simple-scan/default.nix b/pkgs/applications/graphics/simple-scan/default.nix index c5d1b936233..d5f5d6c672c 100644 --- a/pkgs/applications/graphics/simple-scan/default.nix +++ b/pkgs/applications/graphics/simple-scan/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, cairo, colord, glib, gtk3, gusb, intltool, itstool, libusb , libxml2, makeWrapper, packagekit, pkgconfig, saneBackends, systemd, vala }: -let version = "3.18.0"; in +let version = "3.18.1"; in stdenv.mkDerivation rec { name = "simple-scan-${version}"; src = fetchurl { - sha256 = "09qki4h1px65fxwpr7jppzqsi5cfcb8168p13blp3wcfizjgb9gl"; + sha256 = "1i37j36kbn1h8yfzcvbis6f38xz2nj5512ls3gb0j5na0bvja2cw"; url = "https://launchpad.net/simple-scan/3.18/${version}/+download/${name}.tar.xz"; }; diff --git a/pkgs/applications/graphics/viewnior/default.nix b/pkgs/applications/graphics/viewnior/default.nix index 478553d2c00..d01b1a14018 100644 --- a/pkgs/applications/graphics/viewnior/default.nix +++ b/pkgs/applications/graphics/viewnior/default.nix @@ -1,14 +1,18 @@ -{ stdenv, fetchurl, pkgconfig, gtk2, libpng, exiv2, lcms +{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, gtk2, libpng, exiv2, lcms , intltool, gettext, shared_mime_info, glib, gdk_pixbuf, perl}: stdenv.mkDerivation rec { - name = "viewnior-1.4"; + name = "viewnior-${version}"; + version = "1.5"; - src = fetchurl { - url = "https://www.dropbox.com/s/zytq0suabesv933/${name}.tar.gz"; - sha256 = "0vv1133phgfzm92md6bbccmcvfiqb4kz28z1572c0qj971yz457a"; + src = fetchFromGitHub { + owner = "xsisqox"; + repo = "Viewnior"; + rev = name; + sha256 = "0y352hkkwmzb13a87vqgj1dpdn81qk94acby1a93xkqr1qs626lw"; }; + nativeBuildInputs = [ autoreconfHook ]; buildInputs = [ pkgconfig gtk2 libpng exiv2 lcms intltool gettext shared_mime_info glib gdk_pixbuf perl @@ -30,7 +34,7 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.gpl3; - homepage = http://xsisqox.github.com/Viewnior; + homepage = http://siyanpanayotov.com/project/viewnior/; maintainers = [ stdenv.lib.maintainers.smironov ]; diff --git a/pkgs/applications/graphics/yed/default.nix b/pkgs/applications/graphics/yed/default.nix index e3b7d001174..51c41e01bf9 100644 --- a/pkgs/applications/graphics/yed/default.nix +++ b/pkgs/applications/graphics/yed/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, requireFile, makeWrapper, unzip, jre }: stdenv.mkDerivation rec { - name = "yEd-3.14.3"; + name = "yEd-3.14.4"; src = requireFile { name = "${name}.zip"; url = "https://www.yworks.com/en/products/yfiles/yed/"; - sha256 = "0xgazknbz82sgk65hxmvbycl1vd25z80a7jgwjgw7syicrgmplcl"; + sha256 = "0pm271ss6cq2s6cv9ww92haaq2abkjxd9dvc8d72h6af5awv8xy6"; }; nativeBuildInputs = [ unzip makeWrapper ]; diff --git a/pkgs/applications/kde-apps-15.08/default.nix b/pkgs/applications/kde-apps-15.08/default.nix index 45484964ff9..3d1049f8d5b 100644 --- a/pkgs/applications/kde-apps-15.08/default.nix +++ b/pkgs/applications/kde-apps-15.08/default.nix @@ -63,6 +63,6 @@ let print-manager = callPackage ./print-manager.nix {}; }; - newScope = scope: pkgs.kf513.newScope ({ inherit kdeApp; } // scope); + newScope = scope: pkgs.kf514.newScope ({ inherit kdeApp; } // scope); in lib.makeScope newScope packages diff --git a/pkgs/applications/kde-apps-15.08/fetchsrcs.sh b/pkgs/applications/kde-apps-15.08/fetchsrcs.sh index e696bb11d93..aa7adc49123 100755 --- a/pkgs/applications/kde-apps-15.08/fetchsrcs.sh +++ b/pkgs/applications/kde-apps-15.08/fetchsrcs.sh @@ -9,29 +9,38 @@ EXTRA_WGET_ARGS='-A *.tar.xz' mkdir tmp; cd tmp +rm -f ../srcs.csv + wget -nH -r -c --no-parent $RELEASE_URL $EXTRA_WGET_ARGS +find . | while read src; do + if [[ -f "${src}" ]]; then + # Sanitize file name + filename=$(basename "$src" | tr '@' '_') + nameVersion="${filename%.tar.*}" + name=$(echo "$nameVersion" | sed -e 's,-[[:digit:]].*,,' | sed -e 's,-opensource-src$,,') + version=$(echo "$nameVersion" | sed -e 's,^\([[:alpha:]][[:alnum:]]*-\)\+,,') + echo "$name,$version,$src,$filename" >>../srcs.csv + fi +done + cat >../srcs.nix <>../srcs.nix <>../srcs.nix <>../srcs.nix +rm -f ../srcs.csv + cd .. diff --git a/pkgs/applications/kde-apps-15.08/kdelibs/0003-remove_xdg_impurities.patch b/pkgs/applications/kde-apps-15.08/kdelibs/0003-remove_xdg_impurities.patch new file mode 100644 index 00000000000..a79d7b2b7d1 --- /dev/null +++ b/pkgs/applications/kde-apps-15.08/kdelibs/0003-remove_xdg_impurities.patch @@ -0,0 +1,47 @@ +diff --git a/kdecore/kernel/kstandarddirs.cpp b/kdecore/kernel/kstandarddirs.cpp +index ab8f76d..2ae5089 100644 +--- a/kdecore/kernel/kstandarddirs.cpp ++++ b/kdecore/kernel/kstandarddirs.cpp +@@ -1768,12 +1768,6 @@ void KStandardDirs::addKDEDefaults() + else + { + xdgdirList.clear(); +- xdgdirList.append(QString::fromLatin1("/etc/xdg")); +-#ifdef Q_WS_WIN +- xdgdirList.append(installPath("kdedir") + QString::fromLatin1("etc/xdg")); +-#else +- xdgdirList.append(QFile::decodeName(KDESYSCONFDIR "/xdg")); +-#endif + } + + QString localXdgDir = readEnvPath("XDG_CONFIG_HOME"); +@@ -1821,10 +1815,6 @@ void KStandardDirs::addKDEDefaults() + } + } else { + xdgdirList = kdedirDataDirs; +-#ifndef Q_WS_WIN +- xdgdirList.append(QString::fromLatin1("/usr/local/share/")); +- xdgdirList.append(QString::fromLatin1("/usr/share/")); +-#endif + } + + localXdgDir = readEnvPath("XDG_DATA_HOME"); +diff --git a/solid/solid/xdgbasedirs.cpp b/solid/solid/xdgbasedirs.cpp +index 4c9cad9..6849d45 100644 +--- a/solid/solid/xdgbasedirs.cpp ++++ b/solid/solid/xdgbasedirs.cpp +@@ -70,12 +70,12 @@ QStringList Solid::XdgBaseDirs::systemPathList( const char *resource ) + { + if ( qstrncmp( "data", resource, 4 ) == 0 ) { + if ( instance()->mDataDirs.isEmpty() ) { +- instance()->mDataDirs = instance()->systemPathList( "XDG_DATA_DIRS", "/usr/local/share:/usr/share" ); ++ instance()->mDataDirs = instance()->systemPathList( "XDG_DATA_DIRS", "" ); + } + return instance()->mDataDirs; + } else if ( qstrncmp( "config", resource, 6 ) == 0 ) { + if ( instance()->mConfigDirs.isEmpty() ) { +- instance()->mConfigDirs = instance()->systemPathList( "XDG_CONFIG_DIRS", "/etc/xdg" ); ++ instance()->mConfigDirs = instance()->systemPathList( "XDG_CONFIG_DIRS", "" ); + } + return instance()->mConfigDirs; + } diff --git a/pkgs/applications/kde-apps-15.08/kdelibs/default.nix b/pkgs/applications/kde-apps-15.08/kdelibs/default.nix index 06788006f61..18d51e94d7c 100644 --- a/pkgs/applications/kde-apps-15.08/kdelibs/default.nix +++ b/pkgs/applications/kde-apps-15.08/kdelibs/default.nix @@ -21,6 +21,7 @@ kdeApp { patches = [ ./0001-old-kde4-cmake-policies.patch ./0002-polkit-install-path.patch + ./0003-remove_xdg_impurities.patch ]; # cmake does not detect path to `ilmbase` diff --git a/pkgs/applications/kde-apps-15.08/srcs.nix b/pkgs/applications/kde-apps-15.08/srcs.nix index 97e1e774303..3c89c39b5ed 100644 --- a/pkgs/applications/kde-apps-15.08/srcs.nix +++ b/pkgs/applications/kde-apps-15.08/srcs.nix @@ -1,181 +1,13 @@ -# DO NOT EDIT! This file is generated automatically by manifest.sh +# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh { fetchurl, mirror }: { - libkcompactdisc = { + akonadi = { version = "15.08.1"; src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/libkcompactdisc-15.08.1.tar.xz"; - sha256 = "19b6zjzdmjagz9d9x1bb46cc59r92qm9g0pbvim9br603crwsasd"; - name = "libkcompactdisc-15.08.1.tar.xz"; - }; - }; - kollision = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kollision-15.08.1.tar.xz"; - sha256 = "03bm9ydrfq0kicf7j2bmrvjgcffciq7ys0fz0xpcllkwglidsnar"; - name = "kollision-15.08.1.tar.xz"; - }; - }; - libkmahjongg = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/libkmahjongg-15.08.1.tar.xz"; - sha256 = "1jpcj2kj9wn6988gzz4csrwy4c2pwbnyi184iq6c39fmbvrv4f2r"; - name = "libkmahjongg-15.08.1.tar.xz"; - }; - }; - superkaramba = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/superkaramba-15.08.1.tar.xz"; - sha256 = "0pk7kr2bcj2yasf9af3bdqg207pidkg5m2yafmvp83dz2anyxad9"; - name = "superkaramba-15.08.1.tar.xz"; - }; - }; - kcharselect = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kcharselect-15.08.1.tar.xz"; - sha256 = "0g785ab5iclv1db2dwwlzf14a2l6n9yznw6pb8hx589za7yc46v2"; - name = "kcharselect-15.08.1.tar.xz"; - }; - }; - umbrello = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/umbrello-15.08.1.tar.xz"; - sha256 = "0pq2d4iz1dmxb7cdmcja65703qlsakp590v5yjvhjsnlasnk8anj"; - name = "umbrello-15.08.1.tar.xz"; - }; - }; - kde-runtime = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-runtime-15.08.1.tar.xz"; - sha256 = "04vx2v9m5dz5jihvmqvcd6pvk312hdhgj7pkzv8q0lg3z81fqgyi"; - name = "kde-runtime-15.08.1.tar.xz"; - }; - }; - kcontacts = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kcontacts-15.08.1.tar.xz"; - sha256 = "1a9ww08m3k7sdqnkb2dpi2c0fpfihjschyzwx82kcp1z613agx1c"; - name = "kcontacts-15.08.1.tar.xz"; - }; - }; - kontactinterface = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kontactinterface-15.08.1.tar.xz"; - sha256 = "1axsixl5yvawrczpgfbrcyax9d9mmc8yjvkxi0hi26mq8zzxkxnm"; - name = "kontactinterface-15.08.1.tar.xz"; - }; - }; - ktp-desktop-applets = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/ktp-desktop-applets-15.08.1.tar.xz"; - sha256 = "16nan7vb2gzpll2fnc4li23sjjxhgy7ijzfp6zcp5gc1bxn86jj4"; - name = "ktp-desktop-applets-15.08.1.tar.xz"; - }; - }; - kldap = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kldap-15.08.1.tar.xz"; - sha256 = "13mn0zkyd8qkp2rlcd75g821k3xpvwrj6xwjwvllfn25zsng32yw"; - name = "kldap-15.08.1.tar.xz"; - }; - }; - kaccounts-providers = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kaccounts-providers-15.08.1.tar.xz"; - sha256 = "15sl3rwwpshqvzjrkfiray3gg3ja84awsyk3y5n9jbf97rw47v3k"; - name = "kaccounts-providers-15.08.1.tar.xz"; - }; - }; - signon-kwallet-extension = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/signon-kwallet-extension-15.08.1.tar.xz"; - sha256 = "1pb73zqs34kygvaphgrvvl08hj882znsws1nzwbyyskyn6gjsw2n"; - name = "signon-kwallet-extension-15.08.1.tar.xz"; - }; - }; - klines = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/klines-15.08.1.tar.xz"; - sha256 = "17vnbk0qbiynyjycj5nda9w38ija5cvhlfhji1f580hq156qzsgl"; - name = "klines-15.08.1.tar.xz"; - }; - }; - kompare = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kompare-15.08.1.tar.xz"; - sha256 = "0n474f1nvbkxj1ryyv2x0yqm9qg3crdzmr30l2fbagi2fxmjxkli"; - name = "kompare-15.08.1.tar.xz"; - }; - }; - analitza = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/analitza-15.08.1.tar.xz"; - sha256 = "0zxkpsccnp0m8r7z1p243h5vh4fz4dzq2dz932vfac8hs45lcaki"; - name = "analitza-15.08.1.tar.xz"; - }; - }; - kalzium = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kalzium-15.08.1.tar.xz"; - sha256 = "0jhfv5cw5vhgy13ld5km664r7ydqv52nwd4k450x2d62rvq63nfp"; - name = "kalzium-15.08.1.tar.xz"; - }; - }; - kcachegrind = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kcachegrind-15.08.1.tar.xz"; - sha256 = "1nmyw0nld1qasd2zz8dg854br8nqn3kby2xd2afr9a8frhzzmiv2"; - name = "kcachegrind-15.08.1.tar.xz"; - }; - }; - kuser = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kuser-15.08.1.tar.xz"; - sha256 = "0qgvjfh1r4ri227zbcb2v9dg7njg1wq3pi189y0l3jzgfa4h1aph"; - name = "kuser-15.08.1.tar.xz"; - }; - }; - libkgeomap = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/libkgeomap-15.08.1.tar.xz"; - sha256 = "18y3pas4bx16ykf50jlwry7fbrx34cz1s0qflirxyrx6n8kh9lgm"; - name = "libkgeomap-15.08.1.tar.xz"; - }; - }; - artikulate = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/artikulate-15.08.1.tar.xz"; - sha256 = "0pz66hrnd89519ivk1cw8gzddjv6043x59nbkhmnlk8f5hvvkk2k"; - name = "artikulate-15.08.1.tar.xz"; - }; - }; - kscd = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kscd-15.08.1.tar.xz"; - sha256 = "0alf1088p32spwlpjjj91wpgk48ahzqphvag8adgvh9cp8ij7m7j"; - name = "kscd-15.08.1.tar.xz"; + url = "${mirror}/stable/applications/15.08.1/src/akonadi-15.08.1.tar.xz"; + sha256 = "19222mzvi34lqdaxavcpx0d1mxfnfynvhv5562rw3d7iqmhvbms6"; + name = "akonadi-15.08.1.tar.xz"; }; }; akonadi-calendar = { @@ -186,28 +18,28 @@ name = "akonadi-calendar-15.08.1.tar.xz"; }; }; - kdesdk-strigi-analyzers = { + akonadi-search = { version = "15.08.1"; src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kdesdk-strigi-analyzers-15.08.1.tar.xz"; - sha256 = "1g2c511ba42mxg955yyh8w45ga5313mvvpkdl7yvbz7ikb2z6ji5"; - name = "kdesdk-strigi-analyzers-15.08.1.tar.xz"; + url = "${mirror}/stable/applications/15.08.1/src/akonadi-search-15.08.1.tar.xz"; + sha256 = "0mzhil4ihs2b7k6dg29d5igpwsiwiv6awzvj6b5xn76i4xax1jk1"; + name = "akonadi-search-15.08.1.tar.xz"; }; }; - killbots = { + amor = { version = "15.08.1"; src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/killbots-15.08.1.tar.xz"; - sha256 = "1p7lxi3rh8ghashy04252wc086kxz1crdxgnisfw4dv4kr17qmb2"; - name = "killbots-15.08.1.tar.xz"; + url = "${mirror}/stable/applications/15.08.1/src/amor-15.08.1.tar.xz"; + sha256 = "125s9hsj4s3h21khgri9p52abkaa78a9yz7fnw5ij4i0ivhbks6a"; + name = "amor-15.08.1.tar.xz"; }; }; - ksirk = { + analitza = { version = "15.08.1"; src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/ksirk-15.08.1.tar.xz"; - sha256 = "00zlmjyxf31hl910kickgxcc3sh5g2j9grg2mlps8qxdv9m4g1d5"; - name = "ksirk-15.08.1.tar.xz"; + url = "${mirror}/stable/applications/15.08.1/src/analitza-15.08.1.tar.xz"; + sha256 = "0zxkpsccnp0m8r7z1p243h5vh4fz4dzq2dz932vfac8hs45lcaki"; + name = "analitza-15.08.1.tar.xz"; }; }; ark = { @@ -218,860 +50,12 @@ name = "ark-15.08.1.tar.xz"; }; }; - kde-l10n-el = { + artikulate = { version = "15.08.1"; src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-el-15.08.1.tar.xz"; - sha256 = "0qznnbk6mgbdjz4mm7rpmr04b6i9fya1yjhnmv8hpwlicl8n9sd6"; - name = "kde-l10n-el-15.08.1.tar.xz"; - }; - }; - kde-l10n-ug = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-ug-15.08.1.tar.xz"; - sha256 = "1brnbjnpwqhh52g058s2hqh77a6p2c81sygdfsjgngc0griahl4q"; - name = "kde-l10n-ug-15.08.1.tar.xz"; - }; - }; - kde-l10n-sl = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-sl-15.08.1.tar.xz"; - sha256 = "12gg889lhq6l1h5bv6hlcwsq2zkqdfxgicxhkjnm3i7ly5laij4f"; - name = "kde-l10n-sl-15.08.1.tar.xz"; - }; - }; - kde-l10n-ar = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-ar-15.08.1.tar.xz"; - sha256 = "101c1316wwxl3pf38fb9ch2h5nyra8h2cf79w9l1krdcp6s4776w"; - name = "kde-l10n-ar-15.08.1.tar.xz"; - }; - }; - kde-l10n-wa = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-wa-15.08.1.tar.xz"; - sha256 = "0z9s118fc0wj2dg2ha7mv0rldvsa3rr8mhwjdgawkmfr9ns82w64"; - name = "kde-l10n-wa-15.08.1.tar.xz"; - }; - }; - kde-l10n-ro = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-ro-15.08.1.tar.xz"; - sha256 = "0j3qccfwarb9azsvm2pf0ikc12dsbywzfi7hv2xd244qcnjpp289"; - name = "kde-l10n-ro-15.08.1.tar.xz"; - }; - }; - kde-l10n-it = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-it-15.08.1.tar.xz"; - sha256 = "04blm19llvm2n885p9in4iicaj81ap9vvxsqmfnz7rwb93bsy4wl"; - name = "kde-l10n-it-15.08.1.tar.xz"; - }; - }; - kde-l10n-he = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-he-15.08.1.tar.xz"; - sha256 = "1fgxnm6l45kcjrgjg19z2fg6fnsbpdy0agllj6rw0ffbcp68l863"; - name = "kde-l10n-he-15.08.1.tar.xz"; - }; - }; - kde-l10n-et = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-et-15.08.1.tar.xz"; - sha256 = "027vpybfrm6zdmglwlhmyrh6157gmv8i5x1hx5d8f57m8jnh3nfq"; - name = "kde-l10n-et-15.08.1.tar.xz"; - }; - }; - kde-l10n-pa = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-pa-15.08.1.tar.xz"; - sha256 = "05n9kaalsdx8nvn0p29wf33barhkhb64xxr3xg8cc0d3x21kmhx1"; - name = "kde-l10n-pa-15.08.1.tar.xz"; - }; - }; - kde-l10n-ja = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-ja-15.08.1.tar.xz"; - sha256 = "0ir82yc2jmy7ijn02y9f2vxnv1cd5a92pjji3fzriqfg6dlgyiw9"; - name = "kde-l10n-ja-15.08.1.tar.xz"; - }; - }; - kde-l10n-bg = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-bg-15.08.1.tar.xz"; - sha256 = "1r515r3c03328ivwqkm7ijj2264l21liblzllgvjy6zmg7n8ilsp"; - name = "kde-l10n-bg-15.08.1.tar.xz"; - }; - }; - kde-l10n-ko = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-ko-15.08.1.tar.xz"; - sha256 = "19w7z4j7463lg0yzkf8ndfvf3664hk524qfcrdygf61f03hkp22l"; - name = "kde-l10n-ko-15.08.1.tar.xz"; - }; - }; - kde-l10n-tr = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-tr-15.08.1.tar.xz"; - sha256 = "1bca3scdg4ma6k6957pq45dmjxgp8hx3bm9jql2rqp0knqf9dwl8"; - name = "kde-l10n-tr-15.08.1.tar.xz"; - }; - }; - kde-l10n-mr = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-mr-15.08.1.tar.xz"; - sha256 = "0ga55szsi9kbvjdcc2cjl8m15jzcfrpiryak1m78s46p056lfs7n"; - name = "kde-l10n-mr-15.08.1.tar.xz"; - }; - }; - kde-l10n-es = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-es-15.08.1.tar.xz"; - sha256 = "1bb1vp8k6f323q2rjclxpja9yykfgm2di6wn0qhr787swr6qrxjb"; - name = "kde-l10n-es-15.08.1.tar.xz"; - }; - }; - kde-l10n-hu = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-hu-15.08.1.tar.xz"; - sha256 = "0jysfqb9pmhcw2kd48n6asmkci56mgk1jcsx8gxn9lcfrqnpc52g"; - name = "kde-l10n-hu-15.08.1.tar.xz"; - }; - }; - kde-l10n-km = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-km-15.08.1.tar.xz"; - sha256 = "1yjckfma9dj8li9whwfa6bid289z05vllxqigbsjfy12721ahrc6"; - name = "kde-l10n-km-15.08.1.tar.xz"; - }; - }; - kde-l10n-eo = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-eo-15.08.1.tar.xz"; - sha256 = "07rns0a5bb2sq13hcndvq79zg451lc3rj2cldmdxdyj5axl0c955"; - name = "kde-l10n-eo-15.08.1.tar.xz"; - }; - }; - kde-l10n-pt = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-pt-15.08.1.tar.xz"; - sha256 = "0z5lginm78i6wrxhcdarv660sszybjih02ra3j4wghflzhwrgrhw"; - name = "kde-l10n-pt-15.08.1.tar.xz"; - }; - }; - kde-l10n-pl = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-pl-15.08.1.tar.xz"; - sha256 = "0ifjvbvzm5qks35z54i5mdz151347690zg4rn8y033lag81c7ir1"; - name = "kde-l10n-pl-15.08.1.tar.xz"; - }; - }; - kde-l10n-lv = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-lv-15.08.1.tar.xz"; - sha256 = "105lq8q97dg9y9j5p5zqf78gvk28qn4axr3ppk1j698576l1ihxl"; - name = "kde-l10n-lv-15.08.1.tar.xz"; - }; - }; - kde-l10n-en_GB = { - version = "en_GB-15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-en_GB-15.08.1.tar.xz"; - sha256 = "0rb4pjxds75x84ylc71ci2sj75l5p8vr2hmnrlddmj39j22c3mcj"; - name = "kde-l10n-en_GB-15.08.1.tar.xz"; - }; - }; - kde-l10n-nn = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-nn-15.08.1.tar.xz"; - sha256 = "01h9xysa8vghaghqpfp7gvps3rymiypb52ffz50srhrhjyh1zq0y"; - name = "kde-l10n-nn-15.08.1.tar.xz"; - }; - }; - kde-l10n-hr = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-hr-15.08.1.tar.xz"; - sha256 = "0jlnig5rsmdxv3ng352hd8n0vqd020bf00xnjbdihcnvdwq625lv"; - name = "kde-l10n-hr-15.08.1.tar.xz"; - }; - }; - kde-l10n-fi = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-fi-15.08.1.tar.xz"; - sha256 = "0ajgy01p22h1c2dsarsq7ximwp3blvmxnf9217szikkf5yky2w9m"; - name = "kde-l10n-fi-15.08.1.tar.xz"; - }; - }; - kde-l10n-ia = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-ia-15.08.1.tar.xz"; - sha256 = "1mgzpzy1s45v6nf2wbqgsam7bdg1x0fkmggnwy8k8f7kx5yxfcw4"; - name = "kde-l10n-ia-15.08.1.tar.xz"; - }; - }; - kde-l10n-ga = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-ga-15.08.1.tar.xz"; - sha256 = "06l39s9d6y33f4vvcxvry7cxw2m431xgvcz1wcmf6zhlpi5wwlmr"; - name = "kde-l10n-ga-15.08.1.tar.xz"; - }; - }; - kde-l10n-ca = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-ca-15.08.1.tar.xz"; - sha256 = "0ql4b550wasf31vkvha1kjyv7d0svyxk7wc77v39fbly0agxwbap"; - name = "kde-l10n-ca-15.08.1.tar.xz"; - }; - }; - kde-l10n-de = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-de-15.08.1.tar.xz"; - sha256 = "11ayw3n392qz1dyblw4gsw4pbdp3wll11z76cawhbmj2jscjd1yb"; - name = "kde-l10n-de-15.08.1.tar.xz"; - }; - }; - kde-l10n-fr = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-fr-15.08.1.tar.xz"; - sha256 = "1mclsk410ir9y6xvy8j8dswpa3k7hmjng232annq05fzapw7bda6"; - name = "kde-l10n-fr-15.08.1.tar.xz"; - }; - }; - kde-l10n-id = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-id-15.08.1.tar.xz"; - sha256 = "13lls8w18c8zrfrqfaz2yjn7jcjrv6dsax09l8wda5144xhbsxw3"; - name = "kde-l10n-id-15.08.1.tar.xz"; - }; - }; - kde-l10n-ca_valencia = { - version = "ca_valencia-15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-ca@valencia-15.08.1.tar.xz"; - sha256 = "075j5zbn9fy510bf278j3184niwf8dkdpzihvjsram8xrggl4whl"; - name = "kde-l10n-ca_valencia-15.08.1.tar.xz"; - }; - }; - kde-l10n-nds = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-nds-15.08.1.tar.xz"; - sha256 = "0ifndqj0d58g6k71qw9n4xhd0a90fqba3xsk2qyd6yhnmygd48xd"; - name = "kde-l10n-nds-15.08.1.tar.xz"; - }; - }; - kde-l10n-nl = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-nl-15.08.1.tar.xz"; - sha256 = "11jzaf5dbyl52s61031lygn8xf6qjjqaldlyqgljz1scpp13f75b"; - name = "kde-l10n-nl-15.08.1.tar.xz"; - }; - }; - kde-l10n-fa = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-fa-15.08.1.tar.xz"; - sha256 = "1bai66j03khb6f6y8v72axan6aggdlbwgv3bi91mxwlzhy8ycjxx"; - name = "kde-l10n-fa-15.08.1.tar.xz"; - }; - }; - kde-l10n-da = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-da-15.08.1.tar.xz"; - sha256 = "10sxs45bvs5qw02pj2qhykymm3ddl6ij3gvwgxj7r1kl84lfkil6"; - name = "kde-l10n-da-15.08.1.tar.xz"; - }; - }; - kde-l10n-uk = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-uk-15.08.1.tar.xz"; - sha256 = "00f6mjs7nalg8q87ix7h66kqicy7xb9pgkghldbhpal0rqgzscph"; - name = "kde-l10n-uk-15.08.1.tar.xz"; - }; - }; - kde-l10n-eu = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-eu-15.08.1.tar.xz"; - sha256 = "01jcykc8d7nzlsfjp2xcbf7bkld7skf7mmrig7dllgl0igdkx1qm"; - name = "kde-l10n-eu-15.08.1.tar.xz"; - }; - }; - kde-l10n-sk = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-sk-15.08.1.tar.xz"; - sha256 = "13fcfrsdn0q7z0p2cxkcl54g597ix17327lyxz0ns4xn9ada198s"; - name = "kde-l10n-sk-15.08.1.tar.xz"; - }; - }; - kde-l10n-kk = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-kk-15.08.1.tar.xz"; - sha256 = "13zi7yh9hsxmb8v6x2jqlyh4wdb4waj653py27g91rbznsp1fjzp"; - name = "kde-l10n-kk-15.08.1.tar.xz"; - }; - }; - kde-l10n-zh_CN = { - version = "zh_CN-15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-zh_CN-15.08.1.tar.xz"; - sha256 = "0j88zjxihddgi4a53034i5br3jf8v61wp5mcbclci59i4p4cwrh7"; - name = "kde-l10n-zh_CN-15.08.1.tar.xz"; - }; - }; - kde-l10n-lt = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-lt-15.08.1.tar.xz"; - sha256 = "03g7l9yyw6wajjpkqss16kfyg6piv50xjrzdy8611asdfabhccjs"; - name = "kde-l10n-lt-15.08.1.tar.xz"; - }; - }; - kde-l10n-sv = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-sv-15.08.1.tar.xz"; - sha256 = "0dvgqf39xiz1fkfxvfn9232j454377d92c72dd0h3yl7mf9nndd7"; - name = "kde-l10n-sv-15.08.1.tar.xz"; - }; - }; - kde-l10n-nb = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-nb-15.08.1.tar.xz"; - sha256 = "1y51kdmgnirfjsc5ka75rjvbqjbxxchqj2j4430h8jncjgvjvw6d"; - name = "kde-l10n-nb-15.08.1.tar.xz"; - }; - }; - kde-l10n-gl = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-gl-15.08.1.tar.xz"; - sha256 = "0fapj4gmm4pp5bf3gj6xwnzjxw9094mal7njb0nisshvdfbpgr37"; - name = "kde-l10n-gl-15.08.1.tar.xz"; - }; - }; - kde-l10n-hi = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-hi-15.08.1.tar.xz"; - sha256 = "0ys05gxcj6vkx4a8xjhwfym6faz6ifh50i5si175rynb6igyydnh"; - name = "kde-l10n-hi-15.08.1.tar.xz"; - }; - }; - kde-l10n-ru = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-ru-15.08.1.tar.xz"; - sha256 = "1qdgh3y8q7hnkhjfbid35fxy4xjl1hj800kljhif7q4kg4ish86m"; - name = "kde-l10n-ru-15.08.1.tar.xz"; - }; - }; - kde-l10n-sr = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-sr-15.08.1.tar.xz"; - sha256 = "1ag5fj3iy5kycwgwhxiwcp4xl19j1q1lbk07b6nz69jm12kpsy6i"; - name = "kde-l10n-sr-15.08.1.tar.xz"; - }; - }; - kde-l10n-cs = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-cs-15.08.1.tar.xz"; - sha256 = "1lmln0q9r7cvkvs0qz2ky01rj8rjbrwl7g3vkz2zyr64gxgnjilz"; - name = "kde-l10n-cs-15.08.1.tar.xz"; - }; - }; - kde-l10n-bs = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-bs-15.08.1.tar.xz"; - sha256 = "0wyk547g8k3j6lcl1wipw4jwd0wqi8zrnb2h59g55il9rj7782q3"; - name = "kde-l10n-bs-15.08.1.tar.xz"; - }; - }; - kde-l10n-is = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-is-15.08.1.tar.xz"; - sha256 = "0n3ws9imns4jzvnnrkrm8dk8yzlfjcbxl7ip36m7a09lnnskc4zw"; - name = "kde-l10n-is-15.08.1.tar.xz"; - }; - }; - kde-l10n-zh_TW = { - version = "zh_TW-15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-zh_TW-15.08.1.tar.xz"; - sha256 = "1w4f8wr9c132z4kmqcjknrgp1hh33s08qvyjxysns6ncj6izpaaz"; - name = "kde-l10n-zh_TW-15.08.1.tar.xz"; - }; - }; - kde-l10n-pt_BR = { - version = "pt_BR-15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-pt_BR-15.08.1.tar.xz"; - sha256 = "0dr0h5bxw462mpirzsnvxcy3s14nlk3a2gh5h9r2wis5fii364da"; - name = "kde-l10n-pt_BR-15.08.1.tar.xz"; - }; - }; - kmix = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kmix-15.08.1.tar.xz"; - sha256 = "1lpzghasljw07kq9a94lw61l4qlvhif6cd7jypg0vici65lz8k7d"; - name = "kmix-15.08.1.tar.xz"; - }; - }; - kjumpingcube = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kjumpingcube-15.08.1.tar.xz"; - sha256 = "1b0mqf9rhbdz4dfd0gbps59zzjqdif30zz642v4yi6mqnc002yv9"; - name = "kjumpingcube-15.08.1.tar.xz"; - }; - }; - kruler = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kruler-15.08.1.tar.xz"; - sha256 = "06qlvdyd1cbw8vr2qcqs7q8jylj7kl0y218agp8b60h03nri9psj"; - name = "kruler-15.08.1.tar.xz"; - }; - }; - poxml = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/poxml-15.08.1.tar.xz"; - sha256 = "076ksfa9pdjbs8xk38j5z1ysryqcq68fgk5zw157cmxjaxv4ahqm"; - name = "poxml-15.08.1.tar.xz"; - }; - }; - knavalbattle = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/knavalbattle-15.08.1.tar.xz"; - sha256 = "1j235kdnb0qx1dkq89gqcwk0qjj16m0iyf502d6p1mz8cskz7fkp"; - name = "knavalbattle-15.08.1.tar.xz"; - }; - }; - libkexiv2 = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/libkexiv2-15.08.1.tar.xz"; - sha256 = "0cgbh6g5kqi8lzlnidd19yxlyzid71pncpxikmhqfmnwhdgrqq2f"; - name = "libkexiv2-15.08.1.tar.xz"; - }; - }; - kcalutils = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kcalutils-15.08.1.tar.xz"; - sha256 = "0l8kzz092wz93j58h52q4icpvhvl2djgagdbx12yl7qlwin7wnd3"; - name = "kcalutils-15.08.1.tar.xz"; - }; - }; - palapeli = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/palapeli-15.08.1.tar.xz"; - sha256 = "09sbyw25ngvcg6inhh7ig0x5yyhsi3gw2il1p98sfdabjk2f8736"; - name = "palapeli-15.08.1.tar.xz"; - }; - }; - ksudoku = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/ksudoku-15.08.1.tar.xz"; - sha256 = "1l6dgackab9k1rnzbwwz3rfpxlqvydp5q632ibpqs449c6pk3kww"; - name = "ksudoku-15.08.1.tar.xz"; - }; - }; - kdebugsettings = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kdebugsettings-15.08.1.tar.xz"; - sha256 = "1h5wn6ilhkrygjacb592nmdv31791y9r0rx6m3l7xx3nbj9hy12c"; - name = "kdebugsettings-15.08.1.tar.xz"; - }; - }; - kdegraphics-strigi-analyzer = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kdegraphics-strigi-analyzer-15.08.1.tar.xz"; - sha256 = "12yby24k5crsyz6mhm2r0wnl306gp7422yj1nrl6yqi16wd37rbs"; - name = "kdegraphics-strigi-analyzer-15.08.1.tar.xz"; - }; - }; - kturtle = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kturtle-15.08.1.tar.xz"; - sha256 = "0n6vbj2kvcby62cn8i65dq2rl5jv1zfp9xbg827s6vz681an2sqk"; - name = "kturtle-15.08.1.tar.xz"; - }; - }; - libkcddb = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/libkcddb-15.08.1.tar.xz"; - sha256 = "1x26dpr26d6xc73203dbk3vni7hcn1w6jdk94ffs0aaf3bmifal2"; - name = "libkcddb-15.08.1.tar.xz"; - }; - }; - bomber = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/bomber-15.08.1.tar.xz"; - sha256 = "08l8ksqzap8hyza7mmf1wwddj8xkl03hsrc0mwvxsvyp7h7v3rxq"; - name = "bomber-15.08.1.tar.xz"; - }; - }; - ksquares = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/ksquares-15.08.1.tar.xz"; - sha256 = "17qx89q594w22nd2qhqcmb1wc291b89zs22jh62xrm62yr6h9ijj"; - name = "ksquares-15.08.1.tar.xz"; - }; - }; - konquest = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/konquest-15.08.1.tar.xz"; - sha256 = "0ss7gvr8ihk7ip4dhxyps8h1137i5m20m6sf0rv10c2h0y9cy0zk"; - name = "konquest-15.08.1.tar.xz"; - }; - }; - parley = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/parley-15.08.1.tar.xz"; - sha256 = "0f88ia58f9lw8rpz1mgr21hslkmwnwwf2ac0affm81b17nxx8zpc"; - name = "parley-15.08.1.tar.xz"; - }; - }; - kate = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kate-15.08.1.tar.xz"; - sha256 = "0hrbr4lnmz0hgs856kfb966k85p8ccdzva8h4f6ifvacgxppb5iz"; - name = "kate-15.08.1.tar.xz"; - }; - }; - baloo-widgets = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/baloo-widgets-15.08.1.tar.xz"; - sha256 = "021lgivqmahad2b5mwdg4vngyyfi6gcsk3xgn9rbzkxg67k2ivbc"; - name = "baloo-widgets-15.08.1.tar.xz"; - }; - }; - kbreakout = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kbreakout-15.08.1.tar.xz"; - sha256 = "1l83iy6iad6npykl4dyh45s5z8pgamdp7aqi2r5c9r4awg16iq48"; - name = "kbreakout-15.08.1.tar.xz"; - }; - }; - kshisen = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kshisen-15.08.1.tar.xz"; - sha256 = "1lrn5l4jscbn0ppppshpkh62plskzwy2km9dqp1hp5czpq5zvwk8"; - name = "kshisen-15.08.1.tar.xz"; - }; - }; - dragon = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/dragon-15.08.1.tar.xz"; - sha256 = "0ffb0jspckwp8alis70akhrv7kkjq69zba34y61axm67f65izh9l"; - name = "dragon-15.08.1.tar.xz"; - }; - }; - ktp-common-internals = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/ktp-common-internals-15.08.1.tar.xz"; - sha256 = "13alrk7zn3vq6khackdbyqbk209ivvcfza9mpqaxxll8sg9r3i3k"; - name = "ktp-common-internals-15.08.1.tar.xz"; - }; - }; - ktp-text-ui = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/ktp-text-ui-15.08.1.tar.xz"; - sha256 = "1f7r47rbcciq12c5531qb9wr7xqz7nvsy04jk8gaxwdsr9a97ayf"; - name = "ktp-text-ui-15.08.1.tar.xz"; - }; - }; - kcalcore = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kcalcore-15.08.1.tar.xz"; - sha256 = "0dpip8hbc5fb8yw876lig19kp2wi71dkwcb1mj8k49lph09k3460"; - name = "kcalcore-15.08.1.tar.xz"; - }; - }; - kremotecontrol = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kremotecontrol-15.08.1.tar.xz"; - sha256 = "01fck27b3ilni2h78lmhq27aq4sw89060bh69xhw8z80iad2bxyy"; - name = "kremotecontrol-15.08.1.tar.xz"; - }; - }; - ktp-kded-module = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/ktp-kded-module-15.08.1.tar.xz"; - sha256 = "0l2s07z87q2j92q4w6n16rbvd7xm8k4zgchlk06djb5d9gwdgvl0"; - name = "ktp-kded-module-15.08.1.tar.xz"; - }; - }; - kapptemplate = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kapptemplate-15.08.1.tar.xz"; - sha256 = "1pc3dq3h30lx7d51zan52mnz5zwb70g6r84cskkgc2dmws7mrl0k"; - name = "kapptemplate-15.08.1.tar.xz"; - }; - }; - dolphin-plugins = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/dolphin-plugins-15.08.1.tar.xz"; - sha256 = "1fpsbxcds2wzivcpc6vf6bqwi658mw4jrlpwd52w2nlsjpmgr31x"; - name = "dolphin-plugins-15.08.1.tar.xz"; - }; - }; - kpat = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kpat-15.08.1.tar.xz"; - sha256 = "0cw17agpx23fsmnnvwkjn3xvq59d6hpppgydalnhrqka9321qy2d"; - name = "kpat-15.08.1.tar.xz"; - }; - }; - akonadi = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/akonadi-15.08.1.tar.xz"; - sha256 = "19222mzvi34lqdaxavcpx0d1mxfnfynvhv5562rw3d7iqmhvbms6"; - name = "akonadi-15.08.1.tar.xz"; - }; - }; - kcalc = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kcalc-15.08.1.tar.xz"; - sha256 = "02xj9n6zv3f3m35g38gsmqnrshbswqkya930sc5nqc0mlyflli6m"; - name = "kcalc-15.08.1.tar.xz"; - }; - }; - sweeper = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/sweeper-15.08.1.tar.xz"; - sha256 = "08vk9yq7py576irkg34d3rzkdrzi6bb6zhynbyziyx097sqj5khj"; - name = "sweeper-15.08.1.tar.xz"; - }; - }; - lokalize = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/lokalize-15.08.1.tar.xz"; - sha256 = "15xsx430a9w3kr1abvlh4h3spn063992mc76rq17c7a8n1n7zr4b"; - name = "lokalize-15.08.1.tar.xz"; - }; - }; - step = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/step-15.08.1.tar.xz"; - sha256 = "15capfa297s4shrr6xwbpg62rn8pimwpmjm11p160g6lqdspwacm"; - name = "step-15.08.1.tar.xz"; - }; - }; - picmi = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/picmi-15.08.1.tar.xz"; - sha256 = "16sa0w3bhxbj8f8nl0wh5b639gzi6y45167g3mh62a7di6llw1rm"; - name = "picmi-15.08.1.tar.xz"; - }; - }; - kig = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kig-15.08.1.tar.xz"; - sha256 = "0wyvqfsgr1101vmzmsixribvd9plys91dvrx6cj9ji7mf4k5875g"; - name = "kig-15.08.1.tar.xz"; - }; - }; - ktp-contact-runner = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/ktp-contact-runner-15.08.1.tar.xz"; - sha256 = "1m8jc39l9d394x3hqlqvc5msy7wi1aki9q8nd4bg6nmdz8v5dxz9"; - name = "ktp-contact-runner-15.08.1.tar.xz"; - }; - }; - kimap = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kimap-15.08.1.tar.xz"; - sha256 = "07q4z16jfddh17khdd39dzasjfmnvd2zgdnph24s171815c2x2ps"; - name = "kimap-15.08.1.tar.xz"; - }; - }; - ksystemlog = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/ksystemlog-15.08.1.tar.xz"; - sha256 = "1v18f6dcirr6rayaxy8h85swj04g5giafs67h64g9flq5gacykji"; - name = "ksystemlog-15.08.1.tar.xz"; - }; - }; - kio-extras = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kio-extras-15.08.1.tar.xz"; - sha256 = "06vnr10a3m4gs5bjz3dqx1bv1sqz3q69ihq1hlih4c8lyy9wd26q"; - name = "kio-extras-15.08.1.tar.xz"; - }; - }; - blinken = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/blinken-15.08.1.tar.xz"; - sha256 = "0yh5ay2cpgb45y4any6sanzpwcngfxl98x3gnc5n81zl2kzb9y8m"; - name = "blinken-15.08.1.tar.xz"; - }; - }; - ktp-send-file = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/ktp-send-file-15.08.1.tar.xz"; - sha256 = "07pk6d1rzz0hwfsw7nk4grixvvjja219jvr56j50vpnlmlza29xs"; - name = "ktp-send-file-15.08.1.tar.xz"; - }; - }; - kdiamond = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kdiamond-15.08.1.tar.xz"; - sha256 = "1f81l6pnwrpirb5v0npcd2452dkdh0llpmzh57gfd8cik0n1agzm"; - name = "kdiamond-15.08.1.tar.xz"; - }; - }; - kholidays = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kholidays-15.08.1.tar.xz"; - sha256 = "1i875c7wpp5vlzjyw78bsxgyhmhv2y9846xbv6xi5y4b211iw6lf"; - name = "kholidays-15.08.1.tar.xz"; - }; - }; - kbounce = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kbounce-15.08.1.tar.xz"; - sha256 = "127b7c4rpkz04nihqyl7d594k9vwjcvlq0758jfmkxijsgpjc334"; - name = "kbounce-15.08.1.tar.xz"; - }; - }; - kaccounts-integration = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kaccounts-integration-15.08.1.tar.xz"; - sha256 = "07kryp71xq2zwfdm05g8mcmkmxhlj2wb2l9fi2sxbhsr360z33mx"; - name = "kaccounts-integration-15.08.1.tar.xz"; - }; - }; - lskat = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/lskat-15.08.1.tar.xz"; - sha256 = "13vhfpi34qcv6q56qaxwk89apss8l921a59qvlmadmw999h7ms0s"; - name = "lskat-15.08.1.tar.xz"; - }; - }; - libkdeedu = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/libkdeedu-15.08.1.tar.xz"; - sha256 = "09fv1fbxlf6n4k0fyiy49avykpnxbmvi833i6ibm90v9csrfv6hf"; - name = "libkdeedu-15.08.1.tar.xz"; - }; - }; - libkeduvocdocument = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/libkeduvocdocument-15.08.1.tar.xz"; - sha256 = "0fz8fkcai1zdmqhvcic689sbwm07zg69z7jw4m6wgk7yqls8mkvq"; - name = "libkeduvocdocument-15.08.1.tar.xz"; - }; - }; - akonadi-search = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/akonadi-search-15.08.1.tar.xz"; - sha256 = "0mzhil4ihs2b7k6dg29d5igpwsiwiv6awzvj6b5xn76i4xax1jk1"; - name = "akonadi-search-15.08.1.tar.xz"; - }; - }; - katomic = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/katomic-15.08.1.tar.xz"; - sha256 = "0rj6sgh8v8x57fqbjvhik9xcw563nx0dvv8rin05nr22hlid8l9y"; - name = "katomic-15.08.1.tar.xz"; - }; - }; - kross-interpreters = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kross-interpreters-15.08.1.tar.xz"; - sha256 = "1lqkmxxw1kz23q4pmmvrwqgi9vkxp0pw6g3zpr0x4zkzsj62q2ff"; - name = "kross-interpreters-15.08.1.tar.xz"; + url = "${mirror}/stable/applications/15.08.1/src/artikulate-15.08.1.tar.xz"; + sha256 = "0pz66hrnd89519ivk1cw8gzddjv6043x59nbkhmnlk8f5hvvkk2k"; + name = "artikulate-15.08.1.tar.xz"; }; }; audiocd-kio = { @@ -1082,188 +66,28 @@ name = "audiocd-kio-15.08.1.tar.xz"; }; }; - mplayerthumbs = { + baloo-widgets = { version = "15.08.1"; src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/mplayerthumbs-15.08.1.tar.xz"; - sha256 = "01l063iply1d4bfdb04agj11imha4fpnv131dcfd39ixi1icv8yb"; - name = "mplayerthumbs-15.08.1.tar.xz"; + url = "${mirror}/stable/applications/15.08.1/src/baloo-widgets-15.08.1.tar.xz"; + sha256 = "021lgivqmahad2b5mwdg4vngyyfi6gcsk3xgn9rbzkxg67k2ivbc"; + name = "baloo-widgets-15.08.1.tar.xz"; }; }; - syndication = { + blinken = { version = "15.08.1"; src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/syndication-15.08.1.tar.xz"; - sha256 = "1kklbw77iiiqfcv8sydy9jkc8g630xw551y6r1jp1wbvrdkjwq47"; - name = "syndication-15.08.1.tar.xz"; + url = "${mirror}/stable/applications/15.08.1/src/blinken-15.08.1.tar.xz"; + sha256 = "0yh5ay2cpgb45y4any6sanzpwcngfxl98x3gnc5n81zl2kzb9y8m"; + name = "blinken-15.08.1.tar.xz"; }; }; - kqtquickcharts = { + bomber = { version = "15.08.1"; src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kqtquickcharts-15.08.1.tar.xz"; - sha256 = "0jjn8nrxqjpsg9cwfazqz7v4lacl99wxhdh9mclqxk4xy54ydxqc"; - name = "kqtquickcharts-15.08.1.tar.xz"; - }; - }; - kmouth = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kmouth-15.08.1.tar.xz"; - sha256 = "1w6jgs9skis1y8g07hdzwpdsa7dmzfi5dw82wx0wnnmdm076vg41"; - name = "kmouth-15.08.1.tar.xz"; - }; - }; - dolphin = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/dolphin-15.08.1.tar.xz"; - sha256 = "09mr54zbyyq4kd3ddi054c86ji63b0k5fjd3y8x44vnd3id8jpjs"; - name = "dolphin-15.08.1.tar.xz"; - }; - }; - libkdcraw = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/libkdcraw-15.08.1.tar.xz"; - sha256 = "0kshhch81sqjlashbh3ww3nz9ahv99f1bsxlrly39rvfa8yg6vpv"; - name = "libkdcraw-15.08.1.tar.xz"; - }; - }; - libksane = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/libksane-15.08.1.tar.xz"; - sha256 = "0ih4axq0pcpvmgs8x12ad22bxixcccqpkqs160vxl7a29327rbdm"; - name = "libksane-15.08.1.tar.xz"; - }; - }; - kmines = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kmines-15.08.1.tar.xz"; - sha256 = "12n4im9vqyym5jr0chs4g3wjlr2d2a3i35jhm52j8ibdx7fnpmw6"; - name = "kmines-15.08.1.tar.xz"; - }; - }; - kiriki = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kiriki-15.08.1.tar.xz"; - sha256 = "1ighd4bmvgn84misb7zldjg5z75k1i7z8l7yjb0qybh1cc2bw3b3"; - name = "kiriki-15.08.1.tar.xz"; - }; - }; - kaccessible = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kaccessible-15.08.1.tar.xz"; - sha256 = "10crgqpiqkbrb0hil1660cy4dcywiljicqhnhr3nns0ncllvw2vi"; - name = "kaccessible-15.08.1.tar.xz"; - }; - }; - ksnapshot = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/ksnapshot-15.08.1.tar.xz"; - sha256 = "19z3rbvkn55waig6dm1lvan6wlndshhjbiqwwdlc9nh2wng8dcd0"; - name = "ksnapshot-15.08.1.tar.xz"; - }; - }; - kamera = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kamera-15.08.1.tar.xz"; - sha256 = "0czpr3wb3irlbczrx0dczph6l9dwhz3wv9amrz2lvb8p9c8j4nmd"; - name = "kamera-15.08.1.tar.xz"; - }; - }; - kdenetwork-filesharing = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kdenetwork-filesharing-15.08.1.tar.xz"; - sha256 = "03w78qf8sgwypzgwpyl5cfb5441787j6vzzhlddsbmkrl4vnhnff"; - name = "kdenetwork-filesharing-15.08.1.tar.xz"; - }; - }; - kmag = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kmag-15.08.1.tar.xz"; - sha256 = "02bhjmmqb28qyacqzikrkxgh1zf4v1012kdjpdczsmnrgb1nmpgl"; - name = "kmag-15.08.1.tar.xz"; - }; - }; - kalarmcal = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kalarmcal-15.08.1.tar.xz"; - sha256 = "02m2fd98jdacr7hm71dl6hsshil152c09p1daaa9b58yrgb9dqd9"; - name = "kalarmcal-15.08.1.tar.xz"; - }; - }; - kstars = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kstars-15.08.1.tar.xz"; - sha256 = "049pnbqn1ddmqd663vc181yh5z204klbs255w41k7p1z1vl5zszr"; - name = "kstars-15.08.1.tar.xz"; - }; - }; - ktp-approver = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/ktp-approver-15.08.1.tar.xz"; - sha256 = "0qdax2zby93xc694s3s6s21y4bfjbfxsd292ag544cwazcjz8zp5"; - name = "ktp-approver-15.08.1.tar.xz"; - }; - }; - kdesdk-kioslaves = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kdesdk-kioslaves-15.08.1.tar.xz"; - sha256 = "161885bzayf804pdci5n1xh1n4zw3pddk2j53icn573gzpvczwla"; - name = "kdesdk-kioslaves-15.08.1.tar.xz"; - }; - }; - kdenetwork-strigi-analyzers = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kdenetwork-strigi-analyzers-15.08.1.tar.xz"; - sha256 = "0w3jlg9idsxi1pwxh97s9iawjyq8m2z51kz5mm0d0irwslkwaygk"; - name = "kdenetwork-strigi-analyzers-15.08.1.tar.xz"; - }; - }; - juk = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/juk-15.08.1.tar.xz"; - sha256 = "0l6zq90jvhkhppjq0djmj1ij1c1yjjvhh5ss4czqn39bay33r2a7"; - name = "juk-15.08.1.tar.xz"; - }; - }; - kolf = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kolf-15.08.1.tar.xz"; - sha256 = "05xldbfkbbvmq743029cksgdcsfn20xadn91sw1yp9146k0bd97h"; - name = "kolf-15.08.1.tar.xz"; - }; - }; - print-manager = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/print-manager-15.08.1.tar.xz"; - sha256 = "0cy5ga11kk11ca4nzpr6wjb4a342ziaflilc9pz6l3b7r8vhjv09"; - name = "print-manager-15.08.1.tar.xz"; - }; - }; - kppp = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kppp-15.08.1.tar.xz"; - sha256 = "1v2dqb9bdi1yl4fpyn98iq8pg69r9pfy7z1wbq6b37nwlhlapva8"; - name = "kppp-15.08.1.tar.xz"; + url = "${mirror}/stable/applications/15.08.1/src/bomber-15.08.1.tar.xz"; + sha256 = "08l8ksqzap8hyza7mmf1wwddj8xkl03hsrc0mwvxsvyp7h7v3rxq"; + name = "bomber-15.08.1.tar.xz"; }; }; bovo = { @@ -1274,20 +98,52 @@ name = "bovo-15.08.1.tar.xz"; }; }; - ktimer = { + cantor = { version = "15.08.1"; src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/ktimer-15.08.1.tar.xz"; - sha256 = "07882zpgalf2yzqplg3mzl6sxh84zfkbk1jwlw8kwkr7pr7lmfvv"; - name = "ktimer-15.08.1.tar.xz"; + url = "${mirror}/stable/applications/15.08.1/src/cantor-15.08.1.tar.xz"; + sha256 = "0qcx077khzzjs8gaz2m1dph1r4ql3gpfsq536626fd94cb5is83x"; + name = "cantor-15.08.1.tar.xz"; }; }; - kpimtextedit = { + cervisia = { version = "15.08.1"; src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kpimtextedit-15.08.1.tar.xz"; - sha256 = "1djk0gyfdxsqjwhrqf4rnkjvy7hz1rysdm3idjqrnjhnlrjwsiwc"; - name = "kpimtextedit-15.08.1.tar.xz"; + url = "${mirror}/stable/applications/15.08.1/src/cervisia-15.08.1.tar.xz"; + sha256 = "0cha7j0769ib8hc2jjgdxm1pv81cqwii721ww94dd4d614isv4pk"; + name = "cervisia-15.08.1.tar.xz"; + }; + }; + dolphin = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/dolphin-15.08.1.tar.xz"; + sha256 = "09mr54zbyyq4kd3ddi054c86ji63b0k5fjd3y8x44vnd3id8jpjs"; + name = "dolphin-15.08.1.tar.xz"; + }; + }; + dolphin-plugins = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/dolphin-plugins-15.08.1.tar.xz"; + sha256 = "1fpsbxcds2wzivcpc6vf6bqwi658mw4jrlpwd52w2nlsjpmgr31x"; + name = "dolphin-plugins-15.08.1.tar.xz"; + }; + }; + dragon = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/dragon-15.08.1.tar.xz"; + sha256 = "0ffb0jspckwp8alis70akhrv7kkjq69zba34y61axm67f65izh9l"; + name = "dragon-15.08.1.tar.xz"; + }; + }; + ffmpegthumbs = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/ffmpegthumbs-15.08.1.tar.xz"; + sha256 = "00bk11zq5hkdkwxj7d4fydslh2gybhzxz2gyldjfdd8agjcl1rfm"; + name = "ffmpegthumbs-15.08.1.tar.xz"; }; }; filelight = { @@ -1298,22 +154,6 @@ name = "filelight-15.08.1.tar.xz"; }; }; - khangman = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/khangman-15.08.1.tar.xz"; - sha256 = "1g60s028b08vd34l7n8m4sd7d9zl419kz8f1hvdgs2z9zacd5zqg"; - name = "khangman-15.08.1.tar.xz"; - }; - }; - kteatime = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kteatime-15.08.1.tar.xz"; - sha256 = "0bsy22dgfpsibkpi0nv4245mxaf0xnh8rpaia8mzrh0d72gf2syb"; - name = "kteatime-15.08.1.tar.xz"; - }; - }; gpgmepp = { version = "15.08.1"; src = fetchurl { @@ -1322,124 +162,108 @@ name = "gpgmepp-15.08.1.tar.xz"; }; }; - ktp-contact-list = { + granatier = { version = "15.08.1"; src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/ktp-contact-list-15.08.1.tar.xz"; - sha256 = "0x8fvfqjjrhdnfaa9ybagf33lv1r21bywkipvkp2f81dalsd1sv0"; - name = "ktp-contact-list-15.08.1.tar.xz"; + url = "${mirror}/stable/applications/15.08.1/src/granatier-15.08.1.tar.xz"; + sha256 = "1ngdjgf3imdbv1hmp88fhnpvpspjgl2zpaig3d96fjlhxh0bgng1"; + name = "granatier-15.08.1.tar.xz"; }; }; - klettres = { + gwenview = { version = "15.08.1"; src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/klettres-15.08.1.tar.xz"; - sha256 = "0ykb5pfawiyby2xshfdq2gy7w66dw5vhqdd4vjkix6nyb87n703z"; - name = "klettres-15.08.1.tar.xz"; + url = "${mirror}/stable/applications/15.08.1/src/gwenview-15.08.1.tar.xz"; + sha256 = "0lks7chyd8bylz1m3nv3bfch5jcffkv52aawxv9r5www9wd7jq69"; + name = "gwenview-15.08.1.tar.xz"; }; }; - kidentitymanagement = { + jovie = { version = "15.08.1"; src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kidentitymanagement-15.08.1.tar.xz"; - sha256 = "0aslniqzp8bgayvvrxkdfb9ihvz57n6zf3rh99dsv34z20mfyc59"; - name = "kidentitymanagement-15.08.1.tar.xz"; + url = "${mirror}/stable/applications/15.08.1/src/jovie-15.08.1.tar.xz"; + sha256 = "021j7rxbbv5p2jjp4d7m7vsdy5117myng2min42bn6vfz4g6s5rx"; + name = "jovie-15.08.1.tar.xz"; }; }; - libkdegames = { + juk = { version = "15.08.1"; src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/libkdegames-15.08.1.tar.xz"; - sha256 = "0khr3rih3yv2vh9q2dkvdc2r1lpxhky5hmh7gachhyjh0296i9nq"; - name = "libkdegames-15.08.1.tar.xz"; + url = "${mirror}/stable/applications/15.08.1/src/juk-15.08.1.tar.xz"; + sha256 = "0l6zq90jvhkhppjq0djmj1ij1c1yjjvhh5ss4czqn39bay33r2a7"; + name = "juk-15.08.1.tar.xz"; }; }; - kmailtransport = { + kaccessible = { version = "15.08.1"; src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kmailtransport-15.08.1.tar.xz"; - sha256 = "18gnhw49df0f7j0n0nzfnr5v6wvl37mf82slwbsrjqvhj60b2xsg"; - name = "kmailtransport-15.08.1.tar.xz"; + url = "${mirror}/stable/applications/15.08.1/src/kaccessible-15.08.1.tar.xz"; + sha256 = "10crgqpiqkbrb0hil1660cy4dcywiljicqhnhr3nns0ncllvw2vi"; + name = "kaccessible-15.08.1.tar.xz"; }; }; - kbruch = { + kaccounts-integration = { version = "15.08.1"; src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kbruch-15.08.1.tar.xz"; - sha256 = "1mdbrfj7g92v5yzpdi0cccmhf5vdy7y5blbnk50p56qaq8w8avm2"; - name = "kbruch-15.08.1.tar.xz"; + url = "${mirror}/stable/applications/15.08.1/src/kaccounts-integration-15.08.1.tar.xz"; + sha256 = "07kryp71xq2zwfdm05g8mcmkmxhlj2wb2l9fi2sxbhsr360z33mx"; + name = "kaccounts-integration-15.08.1.tar.xz"; }; }; - zeroconf-ioslave = { + kaccounts-providers = { version = "15.08.1"; src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/zeroconf-ioslave-15.08.1.tar.xz"; - sha256 = "1h8v78b6fb82brpxkhlwyphb830ndzlq4z5llgav1dy7i0v8pd7r"; - name = "zeroconf-ioslave-15.08.1.tar.xz"; + url = "${mirror}/stable/applications/15.08.1/src/kaccounts-providers-15.08.1.tar.xz"; + sha256 = "15sl3rwwpshqvzjrkfiray3gg3ja84awsyk3y5n9jbf97rw47v3k"; + name = "kaccounts-providers-15.08.1.tar.xz"; }; }; - kdegraphics-thumbnailers = { + kajongg = { version = "15.08.1"; src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kdegraphics-thumbnailers-15.08.1.tar.xz"; - sha256 = "1qavbvczjikad4kg28lq6zbb7dvllfw5nggilrs0s2qar7jqlrkw"; - name = "kdegraphics-thumbnailers-15.08.1.tar.xz"; + url = "${mirror}/stable/applications/15.08.1/src/kajongg-15.08.1.tar.xz"; + sha256 = "1ialza77fc0a6541yg71b8qbjvq78sww7l0g3s1rn30pj1j1r3rx"; + name = "kajongg-15.08.1.tar.xz"; }; }; - kreversi = { + kalarmcal = { version = "15.08.1"; src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kreversi-15.08.1.tar.xz"; - sha256 = "0clxm23a0m5j8aj3cp1va5s38y0y5wr7akwmigpk37xjylzp1xdd"; - name = "kreversi-15.08.1.tar.xz"; + url = "${mirror}/stable/applications/15.08.1/src/kalarmcal-15.08.1.tar.xz"; + sha256 = "02m2fd98jdacr7hm71dl6hsshil152c09p1daaa9b58yrgb9dqd9"; + name = "kalarmcal-15.08.1.tar.xz"; }; }; - kdewebdev = { + kalgebra = { version = "15.08.1"; src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kdewebdev-15.08.1.tar.xz"; - sha256 = "00q25xp28m9sfgs7h4g89gyh34v36zwmliz1jvsq18aja45f5hpm"; - name = "kdewebdev-15.08.1.tar.xz"; + url = "${mirror}/stable/applications/15.08.1/src/kalgebra-15.08.1.tar.xz"; + sha256 = "1an9lc9h1178d94pq2a60pnw9wadxdni3drbx40w1l1kfaa38ghy"; + name = "kalgebra-15.08.1.tar.xz"; }; }; - kgoldrunner = { + kalzium = { version = "15.08.1"; src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kgoldrunner-15.08.1.tar.xz"; - sha256 = "18xs36g9gmhzlwyg2gl9cc3842dzwc196dpfp0xshja2f1rlr6fp"; - name = "kgoldrunner-15.08.1.tar.xz"; + url = "${mirror}/stable/applications/15.08.1/src/kalzium-15.08.1.tar.xz"; + sha256 = "0jhfv5cw5vhgy13ld5km664r7ydqv52nwd4k450x2d62rvq63nfp"; + name = "kalzium-15.08.1.tar.xz"; }; }; - kde-base-artwork = { + kamera = { version = "15.08.1"; src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-base-artwork-15.08.1.tar.xz"; - sha256 = "081mrc0s2lnbzwmmy9hwqas28cl6jzdycwxx3vfn4rvsgw4cgrp2"; - name = "kde-base-artwork-15.08.1.tar.xz"; + url = "${mirror}/stable/applications/15.08.1/src/kamera-15.08.1.tar.xz"; + sha256 = "0czpr3wb3irlbczrx0dczph6l9dwhz3wv9amrz2lvb8p9c8j4nmd"; + name = "kamera-15.08.1.tar.xz"; }; }; - kiten = { + kanagram = { version = "15.08.1"; src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kiten-15.08.1.tar.xz"; - sha256 = "1pz9frvf23hi2hy7g040prcgjvjssgv3yya2kvapafpmbwnd38dv"; - name = "kiten-15.08.1.tar.xz"; - }; - }; - kmahjongg = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kmahjongg-15.08.1.tar.xz"; - sha256 = "193ynx3da2nyaf2ixq7gc93nv8p9djslh8m666kdnqcxarlxd2qn"; - name = "kmahjongg-15.08.1.tar.xz"; - }; - }; - kcolorchooser = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kcolorchooser-15.08.1.tar.xz"; - sha256 = "1ig03dg4baf29hhim1m77bzwnm6mqqyzbmyhk6g92mj5883nnfb7"; - name = "kcolorchooser-15.08.1.tar.xz"; + url = "${mirror}/stable/applications/15.08.1/src/kanagram-15.08.1.tar.xz"; + sha256 = "0bchwvr87wj9p82v1vgdmfw0a8d1gax08ccq24lzigrny6ljlizr"; + name = "kanagram-15.08.1.tar.xz"; }; }; kapman = { @@ -1450,12 +274,132 @@ name = "kapman-15.08.1.tar.xz"; }; }; - gwenview = { + kapptemplate = { version = "15.08.1"; src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/gwenview-15.08.1.tar.xz"; - sha256 = "0lks7chyd8bylz1m3nv3bfch5jcffkv52aawxv9r5www9wd7jq69"; - name = "gwenview-15.08.1.tar.xz"; + url = "${mirror}/stable/applications/15.08.1/src/kapptemplate-15.08.1.tar.xz"; + sha256 = "1pc3dq3h30lx7d51zan52mnz5zwb70g6r84cskkgc2dmws7mrl0k"; + name = "kapptemplate-15.08.1.tar.xz"; + }; + }; + kate = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kate-15.08.1.tar.xz"; + sha256 = "0hrbr4lnmz0hgs856kfb966k85p8ccdzva8h4f6ifvacgxppb5iz"; + name = "kate-15.08.1.tar.xz"; + }; + }; + katomic = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/katomic-15.08.1.tar.xz"; + sha256 = "0rj6sgh8v8x57fqbjvhik9xcw563nx0dvv8rin05nr22hlid8l9y"; + name = "katomic-15.08.1.tar.xz"; + }; + }; + kblackbox = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kblackbox-15.08.1.tar.xz"; + sha256 = "1hnxsjdp9gbjc0049jx7bnzx0cykyc7qf6f2z3mrir8knin0fmi5"; + name = "kblackbox-15.08.1.tar.xz"; + }; + }; + kblocks = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kblocks-15.08.1.tar.xz"; + sha256 = "1vvlxna5dmnf7igr53p3m5z224zj1ni92qifjnnblwr55gqqwsva"; + name = "kblocks-15.08.1.tar.xz"; + }; + }; + kblog = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kblog-15.08.1.tar.xz"; + sha256 = "0a5ycnk0ljw8k4m5pm7cn37ijjq9x1p2hxf4k77jb7aw1apyqv15"; + name = "kblog-15.08.1.tar.xz"; + }; + }; + kbounce = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kbounce-15.08.1.tar.xz"; + sha256 = "127b7c4rpkz04nihqyl7d594k9vwjcvlq0758jfmkxijsgpjc334"; + name = "kbounce-15.08.1.tar.xz"; + }; + }; + kbreakout = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kbreakout-15.08.1.tar.xz"; + sha256 = "1l83iy6iad6npykl4dyh45s5z8pgamdp7aqi2r5c9r4awg16iq48"; + name = "kbreakout-15.08.1.tar.xz"; + }; + }; + kbruch = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kbruch-15.08.1.tar.xz"; + sha256 = "1mdbrfj7g92v5yzpdi0cccmhf5vdy7y5blbnk50p56qaq8w8avm2"; + name = "kbruch-15.08.1.tar.xz"; + }; + }; + kcachegrind = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kcachegrind-15.08.1.tar.xz"; + sha256 = "1nmyw0nld1qasd2zz8dg854br8nqn3kby2xd2afr9a8frhzzmiv2"; + name = "kcachegrind-15.08.1.tar.xz"; + }; + }; + kcalc = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kcalc-15.08.1.tar.xz"; + sha256 = "02xj9n6zv3f3m35g38gsmqnrshbswqkya930sc5nqc0mlyflli6m"; + name = "kcalc-15.08.1.tar.xz"; + }; + }; + kcalcore = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kcalcore-15.08.1.tar.xz"; + sha256 = "0dpip8hbc5fb8yw876lig19kp2wi71dkwcb1mj8k49lph09k3460"; + name = "kcalcore-15.08.1.tar.xz"; + }; + }; + kcalutils = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kcalutils-15.08.1.tar.xz"; + sha256 = "0l8kzz092wz93j58h52q4icpvhvl2djgagdbx12yl7qlwin7wnd3"; + name = "kcalutils-15.08.1.tar.xz"; + }; + }; + kcharselect = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kcharselect-15.08.1.tar.xz"; + sha256 = "0g785ab5iclv1db2dwwlzf14a2l6n9yznw6pb8hx589za7yc46v2"; + name = "kcharselect-15.08.1.tar.xz"; + }; + }; + kcolorchooser = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kcolorchooser-15.08.1.tar.xz"; + sha256 = "1ig03dg4baf29hhim1m77bzwnm6mqqyzbmyhk6g92mj5883nnfb7"; + name = "kcolorchooser-15.08.1.tar.xz"; + }; + }; + kcontacts = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kcontacts-15.08.1.tar.xz"; + sha256 = "1a9ww08m3k7sdqnkb2dpi2c0fpfihjschyzwx82kcp1z613agx1c"; + name = "kcontacts-15.08.1.tar.xz"; }; }; kcron = { @@ -1474,428 +418,28 @@ name = "kdeartwork-15.08.1.tar.xz"; }; }; - ktp-accounts-kcm = { + kde-baseapps = { version = "15.08.1"; src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/ktp-accounts-kcm-15.08.1.tar.xz"; - sha256 = "1qk25v0ivxkv8cyq4y44ixz9rx28djfxk06zcvn2m1rwjqhrx204"; - name = "ktp-accounts-kcm-15.08.1.tar.xz"; + url = "${mirror}/stable/applications/15.08.1/src/kde-baseapps-15.08.1.tar.xz"; + sha256 = "1ngi571gs62qnpz1ph106ard13pfh9f1ljg4y4cyv77nv90x4a2k"; + name = "kde-baseapps-15.08.1.tar.xz"; }; }; - kdepim-runtime = { + kde-base-artwork = { version = "15.08.1"; src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kdepim-runtime-15.08.1.tar.xz"; - sha256 = "1hcg900bnjryxii3f1c2yjj2nr3z4pn7yigdxclmwpfk6gvlkqm4"; - name = "kdepim-runtime-15.08.1.tar.xz"; + url = "${mirror}/stable/applications/15.08.1/src/kde-base-artwork-15.08.1.tar.xz"; + sha256 = "081mrc0s2lnbzwmmy9hwqas28cl6jzdycwxx3vfn4rvsgw4cgrp2"; + name = "kde-base-artwork-15.08.1.tar.xz"; }; }; - kfloppy = { + kdebugsettings = { version = "15.08.1"; src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kfloppy-15.08.1.tar.xz"; - sha256 = "0yg94p5gj9xazl9kk503mblawyndv2j6m0scf6na68xksgx0yplv"; - name = "kfloppy-15.08.1.tar.xz"; - }; - }; - kopete = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kopete-15.08.1.tar.xz"; - sha256 = "0949m4xw94hnw79c6ar8m9qjcx7r14qs6jww3pcnab7r0ax4xahb"; - name = "kopete-15.08.1.tar.xz"; - }; - }; - okular = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/okular-15.08.1.tar.xz"; - sha256 = "0nicpz25srpn9zmwjxrnz8h2ba597ixsqcyhymki465dv5hgx5x7"; - name = "okular-15.08.1.tar.xz"; - }; - }; - kdf = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kdf-15.08.1.tar.xz"; - sha256 = "062rz8syp7kxc9xyl4ldcqx66fdrjh5fhgdqgdjdgpn273n5v447"; - name = "kdf-15.08.1.tar.xz"; - }; - }; - kfourinline = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kfourinline-15.08.1.tar.xz"; - sha256 = "19rssc5mf8hn6fv9pm91pbhdcxp123z9c1wrmay1wmja7fmnyv9s"; - name = "kfourinline-15.08.1.tar.xz"; - }; - }; - kdeedu-data = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kdeedu-data-15.08.1.tar.xz"; - sha256 = "1yfx8526i753ifmcyh9r481cqiqzs4wh3xm1ys5x8pspg9rpn0wi"; - name = "kdeedu-data-15.08.1.tar.xz"; - }; - }; - kubrick = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kubrick-15.08.1.tar.xz"; - sha256 = "1sanlaz70m1jpaxjwlx2gljh57gg4gdcz7y9g2w191667yk0kq8g"; - name = "kubrick-15.08.1.tar.xz"; - }; - }; - svgpart = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/svgpart-15.08.1.tar.xz"; - sha256 = "10vvnsm7xlgy5fia8l8cz6cgj4xsjshiqkiiwkzlmyzzx081zi57"; - name = "svgpart-15.08.1.tar.xz"; - }; - }; - kanagram = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kanagram-15.08.1.tar.xz"; - sha256 = "0bchwvr87wj9p82v1vgdmfw0a8d1gax08ccq24lzigrny6ljlizr"; - name = "kanagram-15.08.1.tar.xz"; - }; - }; - klickety = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/klickety-15.08.1.tar.xz"; - sha256 = "1prbr2401jy4pifcyn8dy6q34f1nrhvhh8gm8p5jbr1jkzxmm1k1"; - name = "klickety-15.08.1.tar.xz"; - }; - }; - kgpg = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kgpg-15.08.1.tar.xz"; - sha256 = "0728pb6d70qfrbmd1d16lwxshy3ifb8snx5bi8vp9rrs7ncy8r4a"; - name = "kgpg-15.08.1.tar.xz"; - }; - }; - kdepim = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kdepim-15.08.1.tar.xz"; - sha256 = "06j6zmizkc8yg59dvnbcla82jb4csrwrvzzk3al18j6js0sdjnqr"; - name = "kdepim-15.08.1.tar.xz"; - }; - }; - granatier = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/granatier-15.08.1.tar.xz"; - sha256 = "1ngdjgf3imdbv1hmp88fhnpvpspjgl2zpaig3d96fjlhxh0bgng1"; - name = "granatier-15.08.1.tar.xz"; - }; - }; - knetwalk = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/knetwalk-15.08.1.tar.xz"; - sha256 = "0biis3gz943s09dzdxxdpkpizy3qzp9csi72njbm3bapxwmcflr2"; - name = "knetwalk-15.08.1.tar.xz"; - }; - }; - rocs = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/rocs-15.08.1.tar.xz"; - sha256 = "1s3mdi9hqhajryax4yg074dn0h5yq9fq4a8j6ksgg7a2ggl4l8kv"; - name = "rocs-15.08.1.tar.xz"; - }; - }; - kde-dev-utils = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-dev-utils-15.08.1.tar.xz"; - sha256 = "0jashpk1gjcf74b4vpkyrab2izp18ddwi0xky4v47micicl7wm5n"; - name = "kde-dev-utils-15.08.1.tar.xz"; - }; - }; - kdesdk-thumbnailers = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kdesdk-thumbnailers-15.08.1.tar.xz"; - sha256 = "0719qaw9whp1aa15cxcz7axfhmcm30iwwrr78xypzcy097f63q4v"; - name = "kdesdk-thumbnailers-15.08.1.tar.xz"; - }; - }; - kigo = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kigo-15.08.1.tar.xz"; - sha256 = "1vwkan7zlafisx4kap4bby4d2ndqnqbj7jrc00xgbw43l81kn4ix"; - name = "kigo-15.08.1.tar.xz"; - }; - }; - jovie = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/jovie-15.08.1.tar.xz"; - sha256 = "021j7rxbbv5p2jjp4d7m7vsdy5117myng2min42bn6vfz4g6s5rx"; - name = "jovie-15.08.1.tar.xz"; - }; - }; - amor = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/amor-15.08.1.tar.xz"; - sha256 = "125s9hsj4s3h21khgri9p52abkaa78a9yz7fnw5ij4i0ivhbks6a"; - name = "amor-15.08.1.tar.xz"; - }; - }; - kspaceduel = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kspaceduel-15.08.1.tar.xz"; - sha256 = "0anviqhcmyfnyq9zz6hh8cka75hy5ydxq5yvz7q0g6c3flj34fq2"; - name = "kspaceduel-15.08.1.tar.xz"; - }; - }; - libkipi = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/libkipi-15.08.1.tar.xz"; - sha256 = "0mmk8zfwffns7gacdjhjh45ki762wpd21nwvgbjclf3rjzgbyxz8"; - name = "libkipi-15.08.1.tar.xz"; - }; - }; - kgeography = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kgeography-15.08.1.tar.xz"; - sha256 = "1ilb9l6v8pf7aq9dzs29bbdqb60fzf7a0dwjjdfvjq8jbnhcxa9v"; - name = "kgeography-15.08.1.tar.xz"; - }; - }; - kajongg = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kajongg-15.08.1.tar.xz"; - sha256 = "1ialza77fc0a6541yg71b8qbjvq78sww7l0g3s1rn30pj1j1r3rx"; - name = "kajongg-15.08.1.tar.xz"; - }; - }; - kolourpaint = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kolourpaint-15.08.1.tar.xz"; - sha256 = "1m0dwv2wxf5nsisg4zc6h1cqbnzv4187il7y45rbkxli430jh43d"; - name = "kolourpaint-15.08.1.tar.xz"; - }; - }; - marble = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/marble-15.08.1.tar.xz"; - sha256 = "0dx0r1hjcfn3mvmsw0wgaw57jkn42166aj97ky0zdhdavkqv4j3j"; - name = "marble-15.08.1.tar.xz"; - }; - }; - kblog = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kblog-15.08.1.tar.xz"; - sha256 = "0a5ycnk0ljw8k4m5pm7cn37ijjq9x1p2hxf4k77jb7aw1apyqv15"; - name = "kblog-15.08.1.tar.xz"; - }; - }; - kget = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kget-15.08.1.tar.xz"; - sha256 = "02npfzdk283930jywhjch6sscnj16w2n3nn4ik04bx8hxv74br74"; - name = "kget-15.08.1.tar.xz"; - }; - }; - ktuberling = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/ktuberling-15.08.1.tar.xz"; - sha256 = "1y9ifgg2086zz45pj32xxjrgnbsgiq7ajbjl8cybjxcx624j66ic"; - name = "ktuberling-15.08.1.tar.xz"; - }; - }; - krfb = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/krfb-15.08.1.tar.xz"; - sha256 = "0cpypajr483iwch385240zi5l0vf4j28k0sng0kszhizspkhvp35"; - name = "krfb-15.08.1.tar.xz"; - }; - }; - ktp-filetransfer-handler = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/ktp-filetransfer-handler-15.08.1.tar.xz"; - sha256 = "135zpcl0g81xd9hljch05cjngs6x05cnzngzx5h5hsjf13fgz9cn"; - name = "ktp-filetransfer-handler-15.08.1.tar.xz"; - }; - }; - ktouch = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/ktouch-15.08.1.tar.xz"; - sha256 = "1hlg1l1xpmpwvzz47vmif395pw9szjy93p8yxhqsdhkh1f4mdssq"; - name = "ktouch-15.08.1.tar.xz"; - }; - }; - kmplot = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kmplot-15.08.1.tar.xz"; - sha256 = "1a1b6vcxp1wkp6qfidwj42vqkh6wm4m64q0hm7zv6h01l10fzdm2"; - name = "kmplot-15.08.1.tar.xz"; - }; - }; - okteta = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/okteta-15.08.1.tar.xz"; - sha256 = "14mbfqc61rw2g89shh0ad38ph24c6nrj76qx9g1diazvr3p9sf1j"; - name = "okteta-15.08.1.tar.xz"; - }; - }; - kdepimlibs = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kdepimlibs-15.08.1.tar.xz"; - sha256 = "0sjh4n2hgcfd3ngbvzk051yzglkchcjhx0nnn12li0lw2bg7l9w3"; - name = "kdepimlibs-15.08.1.tar.xz"; - }; - }; - kwalletmanager = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kwalletmanager-15.08.1.tar.xz"; - sha256 = "1ibfiaglwgqxnsmx1f8pcylv0kzywpd2mvyawcdhcl3yqdpyw4v7"; - name = "kwalletmanager-15.08.1.tar.xz"; - }; - }; - kmime = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kmime-15.08.1.tar.xz"; - sha256 = "1rz9nmx01rd4asv8iggh47m7snm0fdvlc9f59jpkbch1wxf70vqc"; - name = "kmime-15.08.1.tar.xz"; - }; - }; - ktp-auth-handler = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/ktp-auth-handler-15.08.1.tar.xz"; - sha256 = "0dwpaw2pvigc0lyqa29gxq49fp6rp5hh2wg6ysr1d00s54lr2qgw"; - name = "ktp-auth-handler-15.08.1.tar.xz"; - }; - }; - ktux = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/ktux-15.08.1.tar.xz"; - sha256 = "1vw0ybkvrcqcng6sz0hw12bhsspig98m0wjn8phlyljfd5d8p4h3"; - name = "ktux-15.08.1.tar.xz"; - }; - }; - ffmpegthumbs = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/ffmpegthumbs-15.08.1.tar.xz"; - sha256 = "00bk11zq5hkdkwxj7d4fydslh2gybhzxz2gyldjfdd8agjcl1rfm"; - name = "ffmpegthumbs-15.08.1.tar.xz"; - }; - }; - libkomparediff2 = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/libkomparediff2-15.08.1.tar.xz"; - sha256 = "1g8j5idy18a4fnc2m9cjg3xzq6kck070yq5ki4l9lbjinrhl3jpr"; - name = "libkomparediff2-15.08.1.tar.xz"; - }; - }; - kalgebra = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kalgebra-15.08.1.tar.xz"; - sha256 = "1an9lc9h1178d94pq2a60pnw9wadxdni3drbx40w1l1kfaa38ghy"; - name = "kalgebra-15.08.1.tar.xz"; - }; - }; - kblocks = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kblocks-15.08.1.tar.xz"; - sha256 = "1vvlxna5dmnf7igr53p3m5z224zj1ni92qifjnnblwr55gqqwsva"; - name = "kblocks-15.08.1.tar.xz"; - }; - }; - kblackbox = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kblackbox-15.08.1.tar.xz"; - sha256 = "1hnxsjdp9gbjc0049jx7bnzx0cykyc7qf6f2z3mrir8knin0fmi5"; - name = "kblackbox-15.08.1.tar.xz"; - }; - }; - kdegraphics-mobipocket = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kdegraphics-mobipocket-15.08.1.tar.xz"; - sha256 = "0fnrd2za98plc8aw2gmn83yar0m7ix5rg84lpfm0vnshkhrslqg6"; - name = "kdegraphics-mobipocket-15.08.1.tar.xz"; - }; - }; - ksnakeduel = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/ksnakeduel-15.08.1.tar.xz"; - sha256 = "1q0hcya6dl2lfahqnwx18hl6cwmibsvlyf25x41d42669f7vm1zz"; - name = "ksnakeduel-15.08.1.tar.xz"; - }; - }; - kde-wallpapers = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-wallpapers-15.08.1.tar.xz"; - sha256 = "01q5yh4q7kjjryab3jc8g4qwi4w18la6na0ra2mf0cf637xnlh83"; - name = "kde-wallpapers-15.08.1.tar.xz"; - }; - }; - konsole = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/konsole-15.08.1.tar.xz"; - sha256 = "15d401xxqhd8sfjc6gpn7f1zcs5w8l6y2bjvjvidmpzmr24xky1j"; - name = "konsole-15.08.1.tar.xz"; - }; - }; - kdelibs = { - version = "4.14.12"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kdelibs-4.14.12.tar.xz"; - sha256 = "1s4p3x5si0mx64rhfqplgpyqm04c84wj4mpmbmi86wxwyr5d65rg"; - name = "kdelibs-4.14.12.tar.xz"; - }; - }; - cantor = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/cantor-15.08.1.tar.xz"; - sha256 = "0qcx077khzzjs8gaz2m1dph1r4ql3gpfsq536626fd94cb5is83x"; - name = "cantor-15.08.1.tar.xz"; - }; - }; - kmbox = { - version = "15.08.1"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kmbox-15.08.1.tar.xz"; - sha256 = "1b4b9kk99kvcz4krixnzwvwf7ydkpbsrzza74f8ljbl40ldn94jn"; - name = "kmbox-15.08.1.tar.xz"; + url = "${mirror}/stable/applications/15.08.1/src/kdebugsettings-15.08.1.tar.xz"; + sha256 = "1h5wn6ilhkrygjacb592nmdv31791y9r0rx6m3l7xx3nbj9hy12c"; + name = "kdebugsettings-15.08.1.tar.xz"; }; }; kde-dev-scripts = { @@ -1906,20 +450,500 @@ name = "kde-dev-scripts-15.08.1.tar.xz"; }; }; - krdc = { + kde-dev-utils = { version = "15.08.1"; src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/krdc-15.08.1.tar.xz"; - sha256 = "1gx3vhl8w64ya71894lgy2i3kkggr84r1c5sx8nbwvapw5v4ngiz"; - name = "krdc-15.08.1.tar.xz"; + url = "${mirror}/stable/applications/15.08.1/src/kde-dev-utils-15.08.1.tar.xz"; + sha256 = "0jashpk1gjcf74b4vpkyrab2izp18ddwi0xky4v47micicl7wm5n"; + name = "kde-dev-utils-15.08.1.tar.xz"; }; }; - ktnef = { + kdeedu-data = { version = "15.08.1"; src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/ktnef-15.08.1.tar.xz"; - sha256 = "04jq60qpbgaclscgpwx3sj0l67sqzk9zr01zr6fx127apqzc2xmh"; - name = "ktnef-15.08.1.tar.xz"; + url = "${mirror}/stable/applications/15.08.1/src/kdeedu-data-15.08.1.tar.xz"; + sha256 = "1yfx8526i753ifmcyh9r481cqiqzs4wh3xm1ys5x8pspg9rpn0wi"; + name = "kdeedu-data-15.08.1.tar.xz"; + }; + }; + kdegraphics-mobipocket = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kdegraphics-mobipocket-15.08.1.tar.xz"; + sha256 = "0fnrd2za98plc8aw2gmn83yar0m7ix5rg84lpfm0vnshkhrslqg6"; + name = "kdegraphics-mobipocket-15.08.1.tar.xz"; + }; + }; + kdegraphics-strigi-analyzer = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kdegraphics-strigi-analyzer-15.08.1.tar.xz"; + sha256 = "12yby24k5crsyz6mhm2r0wnl306gp7422yj1nrl6yqi16wd37rbs"; + name = "kdegraphics-strigi-analyzer-15.08.1.tar.xz"; + }; + }; + kdegraphics-thumbnailers = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kdegraphics-thumbnailers-15.08.1.tar.xz"; + sha256 = "1qavbvczjikad4kg28lq6zbb7dvllfw5nggilrs0s2qar7jqlrkw"; + name = "kdegraphics-thumbnailers-15.08.1.tar.xz"; + }; + }; + kde-l10n-ar = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-ar-15.08.1.tar.xz"; + sha256 = "101c1316wwxl3pf38fb9ch2h5nyra8h2cf79w9l1krdcp6s4776w"; + name = "kde-l10n-ar-15.08.1.tar.xz"; + }; + }; + kde-l10n-bg = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-bg-15.08.1.tar.xz"; + sha256 = "1r515r3c03328ivwqkm7ijj2264l21liblzllgvjy6zmg7n8ilsp"; + name = "kde-l10n-bg-15.08.1.tar.xz"; + }; + }; + kde-l10n-bs = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-bs-15.08.1.tar.xz"; + sha256 = "0wyk547g8k3j6lcl1wipw4jwd0wqi8zrnb2h59g55il9rj7782q3"; + name = "kde-l10n-bs-15.08.1.tar.xz"; + }; + }; + kde-l10n-ca = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-ca-15.08.1.tar.xz"; + sha256 = "0ql4b550wasf31vkvha1kjyv7d0svyxk7wc77v39fbly0agxwbap"; + name = "kde-l10n-ca-15.08.1.tar.xz"; + }; + }; + kde-l10n-ca_valencia = { + version = "ca_valencia-15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-ca@valencia-15.08.1.tar.xz"; + sha256 = "075j5zbn9fy510bf278j3184niwf8dkdpzihvjsram8xrggl4whl"; + name = "kde-l10n-ca_valencia-15.08.1.tar.xz"; + }; + }; + kde-l10n-cs = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-cs-15.08.1.tar.xz"; + sha256 = "1lmln0q9r7cvkvs0qz2ky01rj8rjbrwl7g3vkz2zyr64gxgnjilz"; + name = "kde-l10n-cs-15.08.1.tar.xz"; + }; + }; + kde-l10n-da = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-da-15.08.1.tar.xz"; + sha256 = "10sxs45bvs5qw02pj2qhykymm3ddl6ij3gvwgxj7r1kl84lfkil6"; + name = "kde-l10n-da-15.08.1.tar.xz"; + }; + }; + kde-l10n-de = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-de-15.08.1.tar.xz"; + sha256 = "11ayw3n392qz1dyblw4gsw4pbdp3wll11z76cawhbmj2jscjd1yb"; + name = "kde-l10n-de-15.08.1.tar.xz"; + }; + }; + kde-l10n-el = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-el-15.08.1.tar.xz"; + sha256 = "0qznnbk6mgbdjz4mm7rpmr04b6i9fya1yjhnmv8hpwlicl8n9sd6"; + name = "kde-l10n-el-15.08.1.tar.xz"; + }; + }; + kde-l10n-en_GB = { + version = "en_GB-15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-en_GB-15.08.1.tar.xz"; + sha256 = "0rb4pjxds75x84ylc71ci2sj75l5p8vr2hmnrlddmj39j22c3mcj"; + name = "kde-l10n-en_GB-15.08.1.tar.xz"; + }; + }; + kde-l10n-eo = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-eo-15.08.1.tar.xz"; + sha256 = "07rns0a5bb2sq13hcndvq79zg451lc3rj2cldmdxdyj5axl0c955"; + name = "kde-l10n-eo-15.08.1.tar.xz"; + }; + }; + kde-l10n-es = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-es-15.08.1.tar.xz"; + sha256 = "1bb1vp8k6f323q2rjclxpja9yykfgm2di6wn0qhr787swr6qrxjb"; + name = "kde-l10n-es-15.08.1.tar.xz"; + }; + }; + kde-l10n-et = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-et-15.08.1.tar.xz"; + sha256 = "027vpybfrm6zdmglwlhmyrh6157gmv8i5x1hx5d8f57m8jnh3nfq"; + name = "kde-l10n-et-15.08.1.tar.xz"; + }; + }; + kde-l10n-eu = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-eu-15.08.1.tar.xz"; + sha256 = "01jcykc8d7nzlsfjp2xcbf7bkld7skf7mmrig7dllgl0igdkx1qm"; + name = "kde-l10n-eu-15.08.1.tar.xz"; + }; + }; + kde-l10n-fa = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-fa-15.08.1.tar.xz"; + sha256 = "1bai66j03khb6f6y8v72axan6aggdlbwgv3bi91mxwlzhy8ycjxx"; + name = "kde-l10n-fa-15.08.1.tar.xz"; + }; + }; + kde-l10n-fi = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-fi-15.08.1.tar.xz"; + sha256 = "0ajgy01p22h1c2dsarsq7ximwp3blvmxnf9217szikkf5yky2w9m"; + name = "kde-l10n-fi-15.08.1.tar.xz"; + }; + }; + kde-l10n-fr = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-fr-15.08.1.tar.xz"; + sha256 = "1mclsk410ir9y6xvy8j8dswpa3k7hmjng232annq05fzapw7bda6"; + name = "kde-l10n-fr-15.08.1.tar.xz"; + }; + }; + kde-l10n-ga = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-ga-15.08.1.tar.xz"; + sha256 = "06l39s9d6y33f4vvcxvry7cxw2m431xgvcz1wcmf6zhlpi5wwlmr"; + name = "kde-l10n-ga-15.08.1.tar.xz"; + }; + }; + kde-l10n-gl = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-gl-15.08.1.tar.xz"; + sha256 = "0fapj4gmm4pp5bf3gj6xwnzjxw9094mal7njb0nisshvdfbpgr37"; + name = "kde-l10n-gl-15.08.1.tar.xz"; + }; + }; + kde-l10n-he = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-he-15.08.1.tar.xz"; + sha256 = "1fgxnm6l45kcjrgjg19z2fg6fnsbpdy0agllj6rw0ffbcp68l863"; + name = "kde-l10n-he-15.08.1.tar.xz"; + }; + }; + kde-l10n-hi = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-hi-15.08.1.tar.xz"; + sha256 = "0ys05gxcj6vkx4a8xjhwfym6faz6ifh50i5si175rynb6igyydnh"; + name = "kde-l10n-hi-15.08.1.tar.xz"; + }; + }; + kde-l10n-hr = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-hr-15.08.1.tar.xz"; + sha256 = "0jlnig5rsmdxv3ng352hd8n0vqd020bf00xnjbdihcnvdwq625lv"; + name = "kde-l10n-hr-15.08.1.tar.xz"; + }; + }; + kde-l10n-hu = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-hu-15.08.1.tar.xz"; + sha256 = "0jysfqb9pmhcw2kd48n6asmkci56mgk1jcsx8gxn9lcfrqnpc52g"; + name = "kde-l10n-hu-15.08.1.tar.xz"; + }; + }; + kde-l10n-ia = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-ia-15.08.1.tar.xz"; + sha256 = "1mgzpzy1s45v6nf2wbqgsam7bdg1x0fkmggnwy8k8f7kx5yxfcw4"; + name = "kde-l10n-ia-15.08.1.tar.xz"; + }; + }; + kde-l10n-id = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-id-15.08.1.tar.xz"; + sha256 = "13lls8w18c8zrfrqfaz2yjn7jcjrv6dsax09l8wda5144xhbsxw3"; + name = "kde-l10n-id-15.08.1.tar.xz"; + }; + }; + kde-l10n-is = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-is-15.08.1.tar.xz"; + sha256 = "0n3ws9imns4jzvnnrkrm8dk8yzlfjcbxl7ip36m7a09lnnskc4zw"; + name = "kde-l10n-is-15.08.1.tar.xz"; + }; + }; + kde-l10n-it = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-it-15.08.1.tar.xz"; + sha256 = "04blm19llvm2n885p9in4iicaj81ap9vvxsqmfnz7rwb93bsy4wl"; + name = "kde-l10n-it-15.08.1.tar.xz"; + }; + }; + kde-l10n-ja = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-ja-15.08.1.tar.xz"; + sha256 = "0ir82yc2jmy7ijn02y9f2vxnv1cd5a92pjji3fzriqfg6dlgyiw9"; + name = "kde-l10n-ja-15.08.1.tar.xz"; + }; + }; + kde-l10n-kk = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-kk-15.08.1.tar.xz"; + sha256 = "13zi7yh9hsxmb8v6x2jqlyh4wdb4waj653py27g91rbznsp1fjzp"; + name = "kde-l10n-kk-15.08.1.tar.xz"; + }; + }; + kde-l10n-km = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-km-15.08.1.tar.xz"; + sha256 = "1yjckfma9dj8li9whwfa6bid289z05vllxqigbsjfy12721ahrc6"; + name = "kde-l10n-km-15.08.1.tar.xz"; + }; + }; + kde-l10n-ko = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-ko-15.08.1.tar.xz"; + sha256 = "19w7z4j7463lg0yzkf8ndfvf3664hk524qfcrdygf61f03hkp22l"; + name = "kde-l10n-ko-15.08.1.tar.xz"; + }; + }; + kde-l10n-lt = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-lt-15.08.1.tar.xz"; + sha256 = "03g7l9yyw6wajjpkqss16kfyg6piv50xjrzdy8611asdfabhccjs"; + name = "kde-l10n-lt-15.08.1.tar.xz"; + }; + }; + kde-l10n-lv = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-lv-15.08.1.tar.xz"; + sha256 = "105lq8q97dg9y9j5p5zqf78gvk28qn4axr3ppk1j698576l1ihxl"; + name = "kde-l10n-lv-15.08.1.tar.xz"; + }; + }; + kde-l10n-mr = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-mr-15.08.1.tar.xz"; + sha256 = "0ga55szsi9kbvjdcc2cjl8m15jzcfrpiryak1m78s46p056lfs7n"; + name = "kde-l10n-mr-15.08.1.tar.xz"; + }; + }; + kde-l10n-nb = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-nb-15.08.1.tar.xz"; + sha256 = "1y51kdmgnirfjsc5ka75rjvbqjbxxchqj2j4430h8jncjgvjvw6d"; + name = "kde-l10n-nb-15.08.1.tar.xz"; + }; + }; + kde-l10n-nds = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-nds-15.08.1.tar.xz"; + sha256 = "0ifndqj0d58g6k71qw9n4xhd0a90fqba3xsk2qyd6yhnmygd48xd"; + name = "kde-l10n-nds-15.08.1.tar.xz"; + }; + }; + kde-l10n-nl = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-nl-15.08.1.tar.xz"; + sha256 = "11jzaf5dbyl52s61031lygn8xf6qjjqaldlyqgljz1scpp13f75b"; + name = "kde-l10n-nl-15.08.1.tar.xz"; + }; + }; + kde-l10n-nn = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-nn-15.08.1.tar.xz"; + sha256 = "01h9xysa8vghaghqpfp7gvps3rymiypb52ffz50srhrhjyh1zq0y"; + name = "kde-l10n-nn-15.08.1.tar.xz"; + }; + }; + kde-l10n-pa = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-pa-15.08.1.tar.xz"; + sha256 = "05n9kaalsdx8nvn0p29wf33barhkhb64xxr3xg8cc0d3x21kmhx1"; + name = "kde-l10n-pa-15.08.1.tar.xz"; + }; + }; + kde-l10n-pl = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-pl-15.08.1.tar.xz"; + sha256 = "0ifjvbvzm5qks35z54i5mdz151347690zg4rn8y033lag81c7ir1"; + name = "kde-l10n-pl-15.08.1.tar.xz"; + }; + }; + kde-l10n-pt = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-pt-15.08.1.tar.xz"; + sha256 = "0z5lginm78i6wrxhcdarv660sszybjih02ra3j4wghflzhwrgrhw"; + name = "kde-l10n-pt-15.08.1.tar.xz"; + }; + }; + kde-l10n-pt_BR = { + version = "pt_BR-15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-pt_BR-15.08.1.tar.xz"; + sha256 = "0dr0h5bxw462mpirzsnvxcy3s14nlk3a2gh5h9r2wis5fii364da"; + name = "kde-l10n-pt_BR-15.08.1.tar.xz"; + }; + }; + kde-l10n-ro = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-ro-15.08.1.tar.xz"; + sha256 = "0j3qccfwarb9azsvm2pf0ikc12dsbywzfi7hv2xd244qcnjpp289"; + name = "kde-l10n-ro-15.08.1.tar.xz"; + }; + }; + kde-l10n-ru = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-ru-15.08.1.tar.xz"; + sha256 = "1qdgh3y8q7hnkhjfbid35fxy4xjl1hj800kljhif7q4kg4ish86m"; + name = "kde-l10n-ru-15.08.1.tar.xz"; + }; + }; + kde-l10n-sk = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-sk-15.08.1.tar.xz"; + sha256 = "13fcfrsdn0q7z0p2cxkcl54g597ix17327lyxz0ns4xn9ada198s"; + name = "kde-l10n-sk-15.08.1.tar.xz"; + }; + }; + kde-l10n-sl = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-sl-15.08.1.tar.xz"; + sha256 = "12gg889lhq6l1h5bv6hlcwsq2zkqdfxgicxhkjnm3i7ly5laij4f"; + name = "kde-l10n-sl-15.08.1.tar.xz"; + }; + }; + kde-l10n-sr = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-sr-15.08.1.tar.xz"; + sha256 = "1ag5fj3iy5kycwgwhxiwcp4xl19j1q1lbk07b6nz69jm12kpsy6i"; + name = "kde-l10n-sr-15.08.1.tar.xz"; + }; + }; + kde-l10n-sv = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-sv-15.08.1.tar.xz"; + sha256 = "0dvgqf39xiz1fkfxvfn9232j454377d92c72dd0h3yl7mf9nndd7"; + name = "kde-l10n-sv-15.08.1.tar.xz"; + }; + }; + kde-l10n-tr = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-tr-15.08.1.tar.xz"; + sha256 = "1bca3scdg4ma6k6957pq45dmjxgp8hx3bm9jql2rqp0knqf9dwl8"; + name = "kde-l10n-tr-15.08.1.tar.xz"; + }; + }; + kde-l10n-ug = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-ug-15.08.1.tar.xz"; + sha256 = "1brnbjnpwqhh52g058s2hqh77a6p2c81sygdfsjgngc0griahl4q"; + name = "kde-l10n-ug-15.08.1.tar.xz"; + }; + }; + kde-l10n-uk = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-uk-15.08.1.tar.xz"; + sha256 = "00f6mjs7nalg8q87ix7h66kqicy7xb9pgkghldbhpal0rqgzscph"; + name = "kde-l10n-uk-15.08.1.tar.xz"; + }; + }; + kde-l10n-wa = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-wa-15.08.1.tar.xz"; + sha256 = "0z9s118fc0wj2dg2ha7mv0rldvsa3rr8mhwjdgawkmfr9ns82w64"; + name = "kde-l10n-wa-15.08.1.tar.xz"; + }; + }; + kde-l10n-zh_CN = { + version = "zh_CN-15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-zh_CN-15.08.1.tar.xz"; + sha256 = "0j88zjxihddgi4a53034i5br3jf8v61wp5mcbclci59i4p4cwrh7"; + name = "kde-l10n-zh_CN-15.08.1.tar.xz"; + }; + }; + kde-l10n-zh_TW = { + version = "zh_TW-15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-l10n/kde-l10n-zh_TW-15.08.1.tar.xz"; + sha256 = "1w4f8wr9c132z4kmqcjknrgp1hh33s08qvyjxysns6ncj6izpaaz"; + name = "kde-l10n-zh_TW-15.08.1.tar.xz"; + }; + }; + kdelibs = { + version = "4.14.12"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kdelibs-4.14.12.tar.xz"; + sha256 = "1s4p3x5si0mx64rhfqplgpyqm04c84wj4mpmbmi86wxwyr5d65rg"; + name = "kdelibs-4.14.12.tar.xz"; + }; + }; + kdenetwork-filesharing = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kdenetwork-filesharing-15.08.1.tar.xz"; + sha256 = "03w78qf8sgwypzgwpyl5cfb5441787j6vzzhlddsbmkrl4vnhnff"; + name = "kdenetwork-filesharing-15.08.1.tar.xz"; + }; + }; + kdenetwork-strigi-analyzers = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kdenetwork-strigi-analyzers-15.08.1.tar.xz"; + sha256 = "0w3jlg9idsxi1pwxh97s9iawjyq8m2z51kz5mm0d0irwslkwaygk"; + name = "kdenetwork-strigi-analyzers-15.08.1.tar.xz"; }; }; kdenlive = { @@ -1930,36 +954,316 @@ name = "kdenlive-15.08.1.tar.xz"; }; }; - kwordquiz = { + kdepim = { version = "15.08.1"; src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kwordquiz-15.08.1.tar.xz"; - sha256 = "0b20n7k8ging2gw6l0k09r71ww1dg0fh5y5lqzlzcl8vqhdwkwpp"; - name = "kwordquiz-15.08.1.tar.xz"; + url = "${mirror}/stable/applications/15.08.1/src/kdepim-15.08.1.tar.xz"; + sha256 = "06j6zmizkc8yg59dvnbcla82jb4csrwrvzzk3al18j6js0sdjnqr"; + name = "kdepim-15.08.1.tar.xz"; }; }; - libkface = { + kdepimlibs = { version = "15.08.1"; src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/libkface-15.08.1.tar.xz"; - sha256 = "0k2rsmnzfyab1x1nyirlhs48c19b2i2f0x60w1igp7b66n6819kd"; - name = "libkface-15.08.1.tar.xz"; + url = "${mirror}/stable/applications/15.08.1/src/kdepimlibs-15.08.1.tar.xz"; + sha256 = "0sjh4n2hgcfd3ngbvzk051yzglkchcjhx0nnn12li0lw2bg7l9w3"; + name = "kdepimlibs-15.08.1.tar.xz"; }; }; - kde-baseapps = { + kdepim-runtime = { version = "15.08.1"; src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/kde-baseapps-15.08.1.tar.xz"; - sha256 = "1ngi571gs62qnpz1ph106ard13pfh9f1ljg4y4cyv77nv90x4a2k"; - name = "kde-baseapps-15.08.1.tar.xz"; + url = "${mirror}/stable/applications/15.08.1/src/kdepim-runtime-15.08.1.tar.xz"; + sha256 = "1hcg900bnjryxii3f1c2yjj2nr3z4pn7yigdxclmwpfk6gvlkqm4"; + name = "kdepim-runtime-15.08.1.tar.xz"; }; }; - cervisia = { + kde-runtime = { version = "15.08.1"; src = fetchurl { - url = "${mirror}/stable/applications/15.08.1/src/cervisia-15.08.1.tar.xz"; - sha256 = "0cha7j0769ib8hc2jjgdxm1pv81cqwii721ww94dd4d614isv4pk"; - name = "cervisia-15.08.1.tar.xz"; + url = "${mirror}/stable/applications/15.08.1/src/kde-runtime-15.08.1.tar.xz"; + sha256 = "04vx2v9m5dz5jihvmqvcd6pvk312hdhgj7pkzv8q0lg3z81fqgyi"; + name = "kde-runtime-15.08.1.tar.xz"; + }; + }; + kdesdk-kioslaves = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kdesdk-kioslaves-15.08.1.tar.xz"; + sha256 = "161885bzayf804pdci5n1xh1n4zw3pddk2j53icn573gzpvczwla"; + name = "kdesdk-kioslaves-15.08.1.tar.xz"; + }; + }; + kdesdk-strigi-analyzers = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kdesdk-strigi-analyzers-15.08.1.tar.xz"; + sha256 = "1g2c511ba42mxg955yyh8w45ga5313mvvpkdl7yvbz7ikb2z6ji5"; + name = "kdesdk-strigi-analyzers-15.08.1.tar.xz"; + }; + }; + kdesdk-thumbnailers = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kdesdk-thumbnailers-15.08.1.tar.xz"; + sha256 = "0719qaw9whp1aa15cxcz7axfhmcm30iwwrr78xypzcy097f63q4v"; + name = "kdesdk-thumbnailers-15.08.1.tar.xz"; + }; + }; + kde-wallpapers = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kde-wallpapers-15.08.1.tar.xz"; + sha256 = "01q5yh4q7kjjryab3jc8g4qwi4w18la6na0ra2mf0cf637xnlh83"; + name = "kde-wallpapers-15.08.1.tar.xz"; + }; + }; + kdewebdev = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kdewebdev-15.08.1.tar.xz"; + sha256 = "00q25xp28m9sfgs7h4g89gyh34v36zwmliz1jvsq18aja45f5hpm"; + name = "kdewebdev-15.08.1.tar.xz"; + }; + }; + kdf = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kdf-15.08.1.tar.xz"; + sha256 = "062rz8syp7kxc9xyl4ldcqx66fdrjh5fhgdqgdjdgpn273n5v447"; + name = "kdf-15.08.1.tar.xz"; + }; + }; + kdiamond = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kdiamond-15.08.1.tar.xz"; + sha256 = "1f81l6pnwrpirb5v0npcd2452dkdh0llpmzh57gfd8cik0n1agzm"; + name = "kdiamond-15.08.1.tar.xz"; + }; + }; + kfloppy = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kfloppy-15.08.1.tar.xz"; + sha256 = "0yg94p5gj9xazl9kk503mblawyndv2j6m0scf6na68xksgx0yplv"; + name = "kfloppy-15.08.1.tar.xz"; + }; + }; + kfourinline = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kfourinline-15.08.1.tar.xz"; + sha256 = "19rssc5mf8hn6fv9pm91pbhdcxp123z9c1wrmay1wmja7fmnyv9s"; + name = "kfourinline-15.08.1.tar.xz"; + }; + }; + kgeography = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kgeography-15.08.1.tar.xz"; + sha256 = "1ilb9l6v8pf7aq9dzs29bbdqb60fzf7a0dwjjdfvjq8jbnhcxa9v"; + name = "kgeography-15.08.1.tar.xz"; + }; + }; + kget = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kget-15.08.1.tar.xz"; + sha256 = "02npfzdk283930jywhjch6sscnj16w2n3nn4ik04bx8hxv74br74"; + name = "kget-15.08.1.tar.xz"; + }; + }; + kgoldrunner = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kgoldrunner-15.08.1.tar.xz"; + sha256 = "18xs36g9gmhzlwyg2gl9cc3842dzwc196dpfp0xshja2f1rlr6fp"; + name = "kgoldrunner-15.08.1.tar.xz"; + }; + }; + kgpg = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kgpg-15.08.1.tar.xz"; + sha256 = "0728pb6d70qfrbmd1d16lwxshy3ifb8snx5bi8vp9rrs7ncy8r4a"; + name = "kgpg-15.08.1.tar.xz"; + }; + }; + khangman = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/khangman-15.08.1.tar.xz"; + sha256 = "1g60s028b08vd34l7n8m4sd7d9zl419kz8f1hvdgs2z9zacd5zqg"; + name = "khangman-15.08.1.tar.xz"; + }; + }; + kholidays = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kholidays-15.08.1.tar.xz"; + sha256 = "1i875c7wpp5vlzjyw78bsxgyhmhv2y9846xbv6xi5y4b211iw6lf"; + name = "kholidays-15.08.1.tar.xz"; + }; + }; + kidentitymanagement = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kidentitymanagement-15.08.1.tar.xz"; + sha256 = "0aslniqzp8bgayvvrxkdfb9ihvz57n6zf3rh99dsv34z20mfyc59"; + name = "kidentitymanagement-15.08.1.tar.xz"; + }; + }; + kig = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kig-15.08.1.tar.xz"; + sha256 = "0wyvqfsgr1101vmzmsixribvd9plys91dvrx6cj9ji7mf4k5875g"; + name = "kig-15.08.1.tar.xz"; + }; + }; + kigo = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kigo-15.08.1.tar.xz"; + sha256 = "1l1l0yxc6kz1y74pvr5nl5rdmynbzm5izrh412g30nzs30rj2hiw"; + name = "kigo-15.08.1.tar.xz"; + }; + }; + killbots = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/killbots-15.08.1.tar.xz"; + sha256 = "1p7lxi3rh8ghashy04252wc086kxz1crdxgnisfw4dv4kr17qmb2"; + name = "killbots-15.08.1.tar.xz"; + }; + }; + kimap = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kimap-15.08.1.tar.xz"; + sha256 = "07q4z16jfddh17khdd39dzasjfmnvd2zgdnph24s171815c2x2ps"; + name = "kimap-15.08.1.tar.xz"; + }; + }; + kio-extras = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kio-extras-15.08.1.tar.xz"; + sha256 = "06vnr10a3m4gs5bjz3dqx1bv1sqz3q69ihq1hlih4c8lyy9wd26q"; + name = "kio-extras-15.08.1.tar.xz"; + }; + }; + kiriki = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kiriki-15.08.1.tar.xz"; + sha256 = "1ighd4bmvgn84misb7zldjg5z75k1i7z8l7yjb0qybh1cc2bw3b3"; + name = "kiriki-15.08.1.tar.xz"; + }; + }; + kiten = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kiten-15.08.1.tar.xz"; + sha256 = "1pz9frvf23hi2hy7g040prcgjvjssgv3yya2kvapafpmbwnd38dv"; + name = "kiten-15.08.1.tar.xz"; + }; + }; + kjumpingcube = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kjumpingcube-15.08.1.tar.xz"; + sha256 = "1b0mqf9rhbdz4dfd0gbps59zzjqdif30zz642v4yi6mqnc002yv9"; + name = "kjumpingcube-15.08.1.tar.xz"; + }; + }; + kldap = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kldap-15.08.1.tar.xz"; + sha256 = "13mn0zkyd8qkp2rlcd75g821k3xpvwrj6xwjwvllfn25zsng32yw"; + name = "kldap-15.08.1.tar.xz"; + }; + }; + klettres = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/klettres-15.08.1.tar.xz"; + sha256 = "0ykb5pfawiyby2xshfdq2gy7w66dw5vhqdd4vjkix6nyb87n703z"; + name = "klettres-15.08.1.tar.xz"; + }; + }; + klickety = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/klickety-15.08.1.tar.xz"; + sha256 = "1prbr2401jy4pifcyn8dy6q34f1nrhvhh8gm8p5jbr1jkzxmm1k1"; + name = "klickety-15.08.1.tar.xz"; + }; + }; + klines = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/klines-15.08.1.tar.xz"; + sha256 = "17vnbk0qbiynyjycj5nda9w38ija5cvhlfhji1f580hq156qzsgl"; + name = "klines-15.08.1.tar.xz"; + }; + }; + kmag = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kmag-15.08.1.tar.xz"; + sha256 = "02bhjmmqb28qyacqzikrkxgh1zf4v1012kdjpdczsmnrgb1nmpgl"; + name = "kmag-15.08.1.tar.xz"; + }; + }; + kmahjongg = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kmahjongg-15.08.1.tar.xz"; + sha256 = "193ynx3da2nyaf2ixq7gc93nv8p9djslh8m666kdnqcxarlxd2qn"; + name = "kmahjongg-15.08.1.tar.xz"; + }; + }; + kmailtransport = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kmailtransport-15.08.1.tar.xz"; + sha256 = "18gnhw49df0f7j0n0nzfnr5v6wvl37mf82slwbsrjqvhj60b2xsg"; + name = "kmailtransport-15.08.1.tar.xz"; + }; + }; + kmbox = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kmbox-15.08.1.tar.xz"; + sha256 = "1b4b9kk99kvcz4krixnzwvwf7ydkpbsrzza74f8ljbl40ldn94jn"; + name = "kmbox-15.08.1.tar.xz"; + }; + }; + kmime = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kmime-15.08.1.tar.xz"; + sha256 = "1rz9nmx01rd4asv8iggh47m7snm0fdvlc9f59jpkbch1wxf70vqc"; + name = "kmime-15.08.1.tar.xz"; + }; + }; + kmines = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kmines-15.08.1.tar.xz"; + sha256 = "12n4im9vqyym5jr0chs4g3wjlr2d2a3i35jhm52j8ibdx7fnpmw6"; + name = "kmines-15.08.1.tar.xz"; + }; + }; + kmix = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kmix-15.08.1.tar.xz"; + sha256 = "1lpzghasljw07kq9a94lw61l4qlvhif6cd7jypg0vici65lz8k7d"; + name = "kmix-15.08.1.tar.xz"; }; }; kmousetool = { @@ -1970,6 +1274,182 @@ name = "kmousetool-15.08.1.tar.xz"; }; }; + kmouth = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kmouth-15.08.1.tar.xz"; + sha256 = "1w6jgs9skis1y8g07hdzwpdsa7dmzfi5dw82wx0wnnmdm076vg41"; + name = "kmouth-15.08.1.tar.xz"; + }; + }; + kmplot = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kmplot-15.08.1.tar.xz"; + sha256 = "1a1b6vcxp1wkp6qfidwj42vqkh6wm4m64q0hm7zv6h01l10fzdm2"; + name = "kmplot-15.08.1.tar.xz"; + }; + }; + knavalbattle = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/knavalbattle-15.08.1.tar.xz"; + sha256 = "1j235kdnb0qx1dkq89gqcwk0qjj16m0iyf502d6p1mz8cskz7fkp"; + name = "knavalbattle-15.08.1.tar.xz"; + }; + }; + knetwalk = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/knetwalk-15.08.1.tar.xz"; + sha256 = "0biis3gz943s09dzdxxdpkpizy3qzp9csi72njbm3bapxwmcflr2"; + name = "knetwalk-15.08.1.tar.xz"; + }; + }; + kolf = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kolf-15.08.1.tar.xz"; + sha256 = "05xldbfkbbvmq743029cksgdcsfn20xadn91sw1yp9146k0bd97h"; + name = "kolf-15.08.1.tar.xz"; + }; + }; + kollision = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kollision-15.08.1.tar.xz"; + sha256 = "03bm9ydrfq0kicf7j2bmrvjgcffciq7ys0fz0xpcllkwglidsnar"; + name = "kollision-15.08.1.tar.xz"; + }; + }; + kolourpaint = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kolourpaint-15.08.1.tar.xz"; + sha256 = "1m0dwv2wxf5nsisg4zc6h1cqbnzv4187il7y45rbkxli430jh43d"; + name = "kolourpaint-15.08.1.tar.xz"; + }; + }; + kompare = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kompare-15.08.1.tar.xz"; + sha256 = "0n474f1nvbkxj1ryyv2x0yqm9qg3crdzmr30l2fbagi2fxmjxkli"; + name = "kompare-15.08.1.tar.xz"; + }; + }; + konquest = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/konquest-15.08.1.tar.xz"; + sha256 = "0ss7gvr8ihk7ip4dhxyps8h1137i5m20m6sf0rv10c2h0y9cy0zk"; + name = "konquest-15.08.1.tar.xz"; + }; + }; + konsole = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/konsole-15.08.1.tar.xz"; + sha256 = "15d401xxqhd8sfjc6gpn7f1zcs5w8l6y2bjvjvidmpzmr24xky1j"; + name = "konsole-15.08.1.tar.xz"; + }; + }; + kontactinterface = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kontactinterface-15.08.1.tar.xz"; + sha256 = "1axsixl5yvawrczpgfbrcyax9d9mmc8yjvkxi0hi26mq8zzxkxnm"; + name = "kontactinterface-15.08.1.tar.xz"; + }; + }; + kopete = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kopete-15.08.1.tar.xz"; + sha256 = "0949m4xw94hnw79c6ar8m9qjcx7r14qs6jww3pcnab7r0ax4xahb"; + name = "kopete-15.08.1.tar.xz"; + }; + }; + kpat = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kpat-15.08.1.tar.xz"; + sha256 = "0cw17agpx23fsmnnvwkjn3xvq59d6hpppgydalnhrqka9321qy2d"; + name = "kpat-15.08.1.tar.xz"; + }; + }; + kpimtextedit = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kpimtextedit-15.08.1.tar.xz"; + sha256 = "1djk0gyfdxsqjwhrqf4rnkjvy7hz1rysdm3idjqrnjhnlrjwsiwc"; + name = "kpimtextedit-15.08.1.tar.xz"; + }; + }; + kppp = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kppp-15.08.1.tar.xz"; + sha256 = "1v2dqb9bdi1yl4fpyn98iq8pg69r9pfy7z1wbq6b37nwlhlapva8"; + name = "kppp-15.08.1.tar.xz"; + }; + }; + kqtquickcharts = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kqtquickcharts-15.08.1.tar.xz"; + sha256 = "0jjn8nrxqjpsg9cwfazqz7v4lacl99wxhdh9mclqxk4xy54ydxqc"; + name = "kqtquickcharts-15.08.1.tar.xz"; + }; + }; + krdc = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/krdc-15.08.1.tar.xz"; + sha256 = "1gx3vhl8w64ya71894lgy2i3kkggr84r1c5sx8nbwvapw5v4ngiz"; + name = "krdc-15.08.1.tar.xz"; + }; + }; + kremotecontrol = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kremotecontrol-15.08.1.tar.xz"; + sha256 = "01fck27b3ilni2h78lmhq27aq4sw89060bh69xhw8z80iad2bxyy"; + name = "kremotecontrol-15.08.1.tar.xz"; + }; + }; + kreversi = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kreversi-15.08.1.tar.xz"; + sha256 = "0clxm23a0m5j8aj3cp1va5s38y0y5wr7akwmigpk37xjylzp1xdd"; + name = "kreversi-15.08.1.tar.xz"; + }; + }; + krfb = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/krfb-15.08.1.tar.xz"; + sha256 = "0cpypajr483iwch385240zi5l0vf4j28k0sng0kszhizspkhvp35"; + name = "krfb-15.08.1.tar.xz"; + }; + }; + kross-interpreters = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kross-interpreters-15.08.1.tar.xz"; + sha256 = "1lqkmxxw1kz23q4pmmvrwqgi9vkxp0pw6g3zpr0x4zkzsj62q2ff"; + name = "kross-interpreters-15.08.1.tar.xz"; + }; + }; + kruler = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kruler-15.08.1.tar.xz"; + sha256 = "06qlvdyd1cbw8vr2qcqs7q8jylj7kl0y218agp8b60h03nri9psj"; + name = "kruler-15.08.1.tar.xz"; + }; + }; ksaneplugin = { version = "15.08.1"; src = fetchurl { @@ -1978,4 +1458,524 @@ name = "ksaneplugin-15.08.1.tar.xz"; }; }; + kscd = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kscd-15.08.1.tar.xz"; + sha256 = "0alf1088p32spwlpjjj91wpgk48ahzqphvag8adgvh9cp8ij7m7j"; + name = "kscd-15.08.1.tar.xz"; + }; + }; + kshisen = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kshisen-15.08.1.tar.xz"; + sha256 = "1lrn5l4jscbn0ppppshpkh62plskzwy2km9dqp1hp5czpq5zvwk8"; + name = "kshisen-15.08.1.tar.xz"; + }; + }; + ksirk = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/ksirk-15.08.1.tar.xz"; + sha256 = "00zlmjyxf31hl910kickgxcc3sh5g2j9grg2mlps8qxdv9m4g1d5"; + name = "ksirk-15.08.1.tar.xz"; + }; + }; + ksnakeduel = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/ksnakeduel-15.08.1.tar.xz"; + sha256 = "1q0hcya6dl2lfahqnwx18hl6cwmibsvlyf25x41d42669f7vm1zz"; + name = "ksnakeduel-15.08.1.tar.xz"; + }; + }; + ksnapshot = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/ksnapshot-15.08.1.tar.xz"; + sha256 = "19z3rbvkn55waig6dm1lvan6wlndshhjbiqwwdlc9nh2wng8dcd0"; + name = "ksnapshot-15.08.1.tar.xz"; + }; + }; + kspaceduel = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kspaceduel-15.08.1.tar.xz"; + sha256 = "0anviqhcmyfnyq9zz6hh8cka75hy5ydxq5yvz7q0g6c3flj34fq2"; + name = "kspaceduel-15.08.1.tar.xz"; + }; + }; + ksquares = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/ksquares-15.08.1.tar.xz"; + sha256 = "17qx89q594w22nd2qhqcmb1wc291b89zs22jh62xrm62yr6h9ijj"; + name = "ksquares-15.08.1.tar.xz"; + }; + }; + kstars = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kstars-15.08.1.tar.xz"; + sha256 = "049pnbqn1ddmqd663vc181yh5z204klbs255w41k7p1z1vl5zszr"; + name = "kstars-15.08.1.tar.xz"; + }; + }; + ksudoku = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/ksudoku-15.08.1.tar.xz"; + sha256 = "1l6dgackab9k1rnzbwwz3rfpxlqvydp5q632ibpqs449c6pk3kww"; + name = "ksudoku-15.08.1.tar.xz"; + }; + }; + ksystemlog = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/ksystemlog-15.08.1.tar.xz"; + sha256 = "1v18f6dcirr6rayaxy8h85swj04g5giafs67h64g9flq5gacykji"; + name = "ksystemlog-15.08.1.tar.xz"; + }; + }; + kteatime = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kteatime-15.08.1.tar.xz"; + sha256 = "0bsy22dgfpsibkpi0nv4245mxaf0xnh8rpaia8mzrh0d72gf2syb"; + name = "kteatime-15.08.1.tar.xz"; + }; + }; + ktimer = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/ktimer-15.08.1.tar.xz"; + sha256 = "07882zpgalf2yzqplg3mzl6sxh84zfkbk1jwlw8kwkr7pr7lmfvv"; + name = "ktimer-15.08.1.tar.xz"; + }; + }; + ktnef = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/ktnef-15.08.1.tar.xz"; + sha256 = "04jq60qpbgaclscgpwx3sj0l67sqzk9zr01zr6fx127apqzc2xmh"; + name = "ktnef-15.08.1.tar.xz"; + }; + }; + ktouch = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/ktouch-15.08.1.tar.xz"; + sha256 = "1hlg1l1xpmpwvzz47vmif395pw9szjy93p8yxhqsdhkh1f4mdssq"; + name = "ktouch-15.08.1.tar.xz"; + }; + }; + ktp-accounts-kcm = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/ktp-accounts-kcm-15.08.1.tar.xz"; + sha256 = "1qk25v0ivxkv8cyq4y44ixz9rx28djfxk06zcvn2m1rwjqhrx204"; + name = "ktp-accounts-kcm-15.08.1.tar.xz"; + }; + }; + ktp-approver = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/ktp-approver-15.08.1.tar.xz"; + sha256 = "0qdax2zby93xc694s3s6s21y4bfjbfxsd292ag544cwazcjz8zp5"; + name = "ktp-approver-15.08.1.tar.xz"; + }; + }; + ktp-auth-handler = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/ktp-auth-handler-15.08.1.tar.xz"; + sha256 = "0dwpaw2pvigc0lyqa29gxq49fp6rp5hh2wg6ysr1d00s54lr2qgw"; + name = "ktp-auth-handler-15.08.1.tar.xz"; + }; + }; + ktp-common-internals = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/ktp-common-internals-15.08.1.tar.xz"; + sha256 = "13alrk7zn3vq6khackdbyqbk209ivvcfza9mpqaxxll8sg9r3i3k"; + name = "ktp-common-internals-15.08.1.tar.xz"; + }; + }; + ktp-contact-list = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/ktp-contact-list-15.08.1.tar.xz"; + sha256 = "0x8fvfqjjrhdnfaa9ybagf33lv1r21bywkipvkp2f81dalsd1sv0"; + name = "ktp-contact-list-15.08.1.tar.xz"; + }; + }; + ktp-contact-runner = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/ktp-contact-runner-15.08.1.tar.xz"; + sha256 = "1m8jc39l9d394x3hqlqvc5msy7wi1aki9q8nd4bg6nmdz8v5dxz9"; + name = "ktp-contact-runner-15.08.1.tar.xz"; + }; + }; + ktp-desktop-applets = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/ktp-desktop-applets-15.08.1.tar.xz"; + sha256 = "16nan7vb2gzpll2fnc4li23sjjxhgy7ijzfp6zcp5gc1bxn86jj4"; + name = "ktp-desktop-applets-15.08.1.tar.xz"; + }; + }; + ktp-filetransfer-handler = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/ktp-filetransfer-handler-15.08.1.tar.xz"; + sha256 = "135zpcl0g81xd9hljch05cjngs6x05cnzngzx5h5hsjf13fgz9cn"; + name = "ktp-filetransfer-handler-15.08.1.tar.xz"; + }; + }; + ktp-kded-module = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/ktp-kded-module-15.08.1.tar.xz"; + sha256 = "0l2s07z87q2j92q4w6n16rbvd7xm8k4zgchlk06djb5d9gwdgvl0"; + name = "ktp-kded-module-15.08.1.tar.xz"; + }; + }; + ktp-send-file = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/ktp-send-file-15.08.1.tar.xz"; + sha256 = "07pk6d1rzz0hwfsw7nk4grixvvjja219jvr56j50vpnlmlza29xs"; + name = "ktp-send-file-15.08.1.tar.xz"; + }; + }; + ktp-text-ui = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/ktp-text-ui-15.08.1.tar.xz"; + sha256 = "1f7r47rbcciq12c5531qb9wr7xqz7nvsy04jk8gaxwdsr9a97ayf"; + name = "ktp-text-ui-15.08.1.tar.xz"; + }; + }; + ktuberling = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/ktuberling-15.08.1.tar.xz"; + sha256 = "1y9ifgg2086zz45pj32xxjrgnbsgiq7ajbjl8cybjxcx624j66ic"; + name = "ktuberling-15.08.1.tar.xz"; + }; + }; + kturtle = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kturtle-15.08.1.tar.xz"; + sha256 = "0n6vbj2kvcby62cn8i65dq2rl5jv1zfp9xbg827s6vz681an2sqk"; + name = "kturtle-15.08.1.tar.xz"; + }; + }; + ktux = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/ktux-15.08.1.tar.xz"; + sha256 = "1vw0ybkvrcqcng6sz0hw12bhsspig98m0wjn8phlyljfd5d8p4h3"; + name = "ktux-15.08.1.tar.xz"; + }; + }; + kubrick = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kubrick-15.08.1.tar.xz"; + sha256 = "1sanlaz70m1jpaxjwlx2gljh57gg4gdcz7y9g2w191667yk0kq8g"; + name = "kubrick-15.08.1.tar.xz"; + }; + }; + kuser = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kuser-15.08.1.tar.xz"; + sha256 = "0qgvjfh1r4ri227zbcb2v9dg7njg1wq3pi189y0l3jzgfa4h1aph"; + name = "kuser-15.08.1.tar.xz"; + }; + }; + kwalletmanager = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kwalletmanager-15.08.1.tar.xz"; + sha256 = "1ibfiaglwgqxnsmx1f8pcylv0kzywpd2mvyawcdhcl3yqdpyw4v7"; + name = "kwalletmanager-15.08.1.tar.xz"; + }; + }; + kwordquiz = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/kwordquiz-15.08.1.tar.xz"; + sha256 = "0b20n7k8ging2gw6l0k09r71ww1dg0fh5y5lqzlzcl8vqhdwkwpp"; + name = "kwordquiz-15.08.1.tar.xz"; + }; + }; + libkcddb = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/libkcddb-15.08.1.tar.xz"; + sha256 = "1x26dpr26d6xc73203dbk3vni7hcn1w6jdk94ffs0aaf3bmifal2"; + name = "libkcddb-15.08.1.tar.xz"; + }; + }; + libkcompactdisc = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/libkcompactdisc-15.08.1.tar.xz"; + sha256 = "19b6zjzdmjagz9d9x1bb46cc59r92qm9g0pbvim9br603crwsasd"; + name = "libkcompactdisc-15.08.1.tar.xz"; + }; + }; + libkdcraw = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/libkdcraw-15.08.1.tar.xz"; + sha256 = "0kshhch81sqjlashbh3ww3nz9ahv99f1bsxlrly39rvfa8yg6vpv"; + name = "libkdcraw-15.08.1.tar.xz"; + }; + }; + libkdeedu = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/libkdeedu-15.08.1.tar.xz"; + sha256 = "09fv1fbxlf6n4k0fyiy49avykpnxbmvi833i6ibm90v9csrfv6hf"; + name = "libkdeedu-15.08.1.tar.xz"; + }; + }; + libkdegames = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/libkdegames-15.08.1.tar.xz"; + sha256 = "0khr3rih3yv2vh9q2dkvdc2r1lpxhky5hmh7gachhyjh0296i9nq"; + name = "libkdegames-15.08.1.tar.xz"; + }; + }; + libkeduvocdocument = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/libkeduvocdocument-15.08.1.tar.xz"; + sha256 = "0fz8fkcai1zdmqhvcic689sbwm07zg69z7jw4m6wgk7yqls8mkvq"; + name = "libkeduvocdocument-15.08.1.tar.xz"; + }; + }; + libkexiv2 = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/libkexiv2-15.08.1.tar.xz"; + sha256 = "0cgbh6g5kqi8lzlnidd19yxlyzid71pncpxikmhqfmnwhdgrqq2f"; + name = "libkexiv2-15.08.1.tar.xz"; + }; + }; + libkface = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/libkface-15.08.1.tar.xz"; + sha256 = "0k2rsmnzfyab1x1nyirlhs48c19b2i2f0x60w1igp7b66n6819kd"; + name = "libkface-15.08.1.tar.xz"; + }; + }; + libkgeomap = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/libkgeomap-15.08.1.tar.xz"; + sha256 = "18y3pas4bx16ykf50jlwry7fbrx34cz1s0qflirxyrx6n8kh9lgm"; + name = "libkgeomap-15.08.1.tar.xz"; + }; + }; + libkipi = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/libkipi-15.08.1.tar.xz"; + sha256 = "0mmk8zfwffns7gacdjhjh45ki762wpd21nwvgbjclf3rjzgbyxz8"; + name = "libkipi-15.08.1.tar.xz"; + }; + }; + libkmahjongg = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/libkmahjongg-15.08.1.tar.xz"; + sha256 = "1jpcj2kj9wn6988gzz4csrwy4c2pwbnyi184iq6c39fmbvrv4f2r"; + name = "libkmahjongg-15.08.1.tar.xz"; + }; + }; + libkomparediff2 = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/libkomparediff2-15.08.1.tar.xz"; + sha256 = "1g8j5idy18a4fnc2m9cjg3xzq6kck070yq5ki4l9lbjinrhl3jpr"; + name = "libkomparediff2-15.08.1.tar.xz"; + }; + }; + libksane = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/libksane-15.08.1.tar.xz"; + sha256 = "0ih4axq0pcpvmgs8x12ad22bxixcccqpkqs160vxl7a29327rbdm"; + name = "libksane-15.08.1.tar.xz"; + }; + }; + lokalize = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/lokalize-15.08.1.tar.xz"; + sha256 = "15xsx430a9w3kr1abvlh4h3spn063992mc76rq17c7a8n1n7zr4b"; + name = "lokalize-15.08.1.tar.xz"; + }; + }; + lskat = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/lskat-15.08.1.tar.xz"; + sha256 = "13vhfpi34qcv6q56qaxwk89apss8l921a59qvlmadmw999h7ms0s"; + name = "lskat-15.08.1.tar.xz"; + }; + }; + marble = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/marble-15.08.1.tar.xz"; + sha256 = "0dx0r1hjcfn3mvmsw0wgaw57jkn42166aj97ky0zdhdavkqv4j3j"; + name = "marble-15.08.1.tar.xz"; + }; + }; + mplayerthumbs = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/mplayerthumbs-15.08.1.tar.xz"; + sha256 = "01l063iply1d4bfdb04agj11imha4fpnv131dcfd39ixi1icv8yb"; + name = "mplayerthumbs-15.08.1.tar.xz"; + }; + }; + okteta = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/okteta-15.08.1.tar.xz"; + sha256 = "14mbfqc61rw2g89shh0ad38ph24c6nrj76qx9g1diazvr3p9sf1j"; + name = "okteta-15.08.1.tar.xz"; + }; + }; + okular = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/okular-15.08.1.tar.xz"; + sha256 = "0nicpz25srpn9zmwjxrnz8h2ba597ixsqcyhymki465dv5hgx5x7"; + name = "okular-15.08.1.tar.xz"; + }; + }; + palapeli = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/palapeli-15.08.1.tar.xz"; + sha256 = "09sbyw25ngvcg6inhh7ig0x5yyhsi3gw2il1p98sfdabjk2f8736"; + name = "palapeli-15.08.1.tar.xz"; + }; + }; + parley = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/parley-15.08.1.tar.xz"; + sha256 = "0f88ia58f9lw8rpz1mgr21hslkmwnwwf2ac0affm81b17nxx8zpc"; + name = "parley-15.08.1.tar.xz"; + }; + }; + picmi = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/picmi-15.08.1.tar.xz"; + sha256 = "16sa0w3bhxbj8f8nl0wh5b639gzi6y45167g3mh62a7di6llw1rm"; + name = "picmi-15.08.1.tar.xz"; + }; + }; + poxml = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/poxml-15.08.1.tar.xz"; + sha256 = "076ksfa9pdjbs8xk38j5z1ysryqcq68fgk5zw157cmxjaxv4ahqm"; + name = "poxml-15.08.1.tar.xz"; + }; + }; + print-manager = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/print-manager-15.08.1.tar.xz"; + sha256 = "0cy5ga11kk11ca4nzpr6wjb4a342ziaflilc9pz6l3b7r8vhjv09"; + name = "print-manager-15.08.1.tar.xz"; + }; + }; + rocs = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/rocs-15.08.1.tar.xz"; + sha256 = "1s3mdi9hqhajryax4yg074dn0h5yq9fq4a8j6ksgg7a2ggl4l8kv"; + name = "rocs-15.08.1.tar.xz"; + }; + }; + signon-kwallet-extension = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/signon-kwallet-extension-15.08.1.tar.xz"; + sha256 = "1pb73zqs34kygvaphgrvvl08hj882znsws1nzwbyyskyn6gjsw2n"; + name = "signon-kwallet-extension-15.08.1.tar.xz"; + }; + }; + step = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/step-15.08.1.tar.xz"; + sha256 = "15capfa297s4shrr6xwbpg62rn8pimwpmjm11p160g6lqdspwacm"; + name = "step-15.08.1.tar.xz"; + }; + }; + superkaramba = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/superkaramba-15.08.1.tar.xz"; + sha256 = "0pk7kr2bcj2yasf9af3bdqg207pidkg5m2yafmvp83dz2anyxad9"; + name = "superkaramba-15.08.1.tar.xz"; + }; + }; + svgpart = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/svgpart-15.08.1.tar.xz"; + sha256 = "10vvnsm7xlgy5fia8l8cz6cgj4xsjshiqkiiwkzlmyzzx081zi57"; + name = "svgpart-15.08.1.tar.xz"; + }; + }; + sweeper = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/sweeper-15.08.1.tar.xz"; + sha256 = "08vk9yq7py576irkg34d3rzkdrzi6bb6zhynbyziyx097sqj5khj"; + name = "sweeper-15.08.1.tar.xz"; + }; + }; + syndication = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/syndication-15.08.1.tar.xz"; + sha256 = "1kklbw77iiiqfcv8sydy9jkc8g630xw551y6r1jp1wbvrdkjwq47"; + name = "syndication-15.08.1.tar.xz"; + }; + }; + umbrello = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/umbrello-15.08.1.tar.xz"; + sha256 = "0pq2d4iz1dmxb7cdmcja65703qlsakp590v5yjvhjsnlasnk8anj"; + name = "umbrello-15.08.1.tar.xz"; + }; + }; + zeroconf-ioslave = { + version = "15.08.1"; + src = fetchurl { + url = "${mirror}/stable/applications/15.08.1/src/zeroconf-ioslave-15.08.1.tar.xz"; + sha256 = "1h8v78b6fb82brpxkhlwyphb830ndzlq4z5llgav1dy7i0v8pd7r"; + name = "zeroconf-ioslave-15.08.1.tar.xz"; + }; + }; } diff --git a/pkgs/applications/misc/blender/default.nix b/pkgs/applications/misc/blender/default.nix index bc4c97d1f21..149cd05bd7b 100644 --- a/pkgs/applications/misc/blender/default.nix +++ b/pkgs/applications/misc/blender/default.nix @@ -1,7 +1,7 @@ -{ stdenv, lib, fetchurl, fetchpatch, SDL, boost, cmake, ffmpeg, gettext, glew +{ stdenv, lib, fetchurl, SDL, boost, cmake, ffmpeg, gettext, glew , ilmbase, libXi, libjpeg, libpng, libsamplerate, libsndfile , libtiff, mesa, openal, opencolorio, openexr, openimageio, openjpeg, python -, zlib, fftw +, zlib, fftw, opensubdiv , jackaudioSupport ? false, libjack2 , cudaSupport ? false, cudatoolkit , colladaSupport ? true, opencollada @@ -10,17 +10,18 @@ with lib; stdenv.mkDerivation rec { - name = "blender-2.75a"; + name = "blender-2.76"; src = fetchurl { url = "http://download.blender.org/source/${name}.tar.gz"; - sha256 = "09lxb2li70p6fg7hbakin9ffy3b3101c1gdjqi3pykks5q3h9sq4"; + sha256 = "0daqirvlr0bwgrgrr7igyl8rcgjvpvrgns76z2z57kdxi6d696av"; }; buildInputs = [ SDL boost cmake ffmpeg gettext glew ilmbase libXi libjpeg libpng libsamplerate libsndfile libtiff mesa openal opencolorio openexr openimageio /* openjpeg */ python zlib fftw + (opensubdiv.override { inherit cudaSupport; }) ] ++ optional jackaudioSupport libjack2 ++ optional cudaSupport cudatoolkit @@ -41,6 +42,7 @@ stdenv.mkDerivation rec { "-DWITH_GAMEENGINE=ON" "-DWITH_OPENCOLORIO=ON" "-DWITH_PLAYER=ON" + "-DWITH_OPENSUBDIV=ON" "-DPYTHON_LIBRARY=python${python.majorVersion}m" "-DPYTHON_LIBPATH=${python}/lib" "-DPYTHON_INCLUDE_DIR=${python}/include/python${python.majorVersion}m" diff --git a/pkgs/applications/misc/calibre/default.nix b/pkgs/applications/misc/calibre/default.nix index 5bd9bcf5c49..9b1a6c6ad35 100644 --- a/pkgs/applications/misc/calibre/default.nix +++ b/pkgs/applications/misc/calibre/default.nix @@ -6,11 +6,11 @@ stdenv.mkDerivation rec { name = "calibre-${version}"; - version = "2.38.0"; + version = "2.40.0"; src = fetchurl { url = "https://github.com/kovidgoyal/calibre/releases/download/v${version}/${name}.tar.xz"; - sha256 = "075axil53djss99fj9drfh5cvxdbjw6z5z5qk53vm13k5pw6bmhn"; + sha256 = "1xzf910w3c15vajnlra32xzi0gwb4z7a9m9w5nfj0by2wss3fv7n"; }; inherit python; diff --git a/pkgs/applications/misc/hamster-time-tracker/default.nix b/pkgs/applications/misc/hamster-time-tracker/default.nix index 3a94456e6cc..52298e6c297 100644 --- a/pkgs/applications/misc/hamster-time-tracker/default.nix +++ b/pkgs/applications/misc/hamster-time-tracker/default.nix @@ -1,5 +1,6 @@ { stdenv, fetchzip, buildPythonPackage, docbook2x, libxslt, gnome_doc_utils , intltool, dbus_glib, pygobject, pygtk, pyxdg, gnome_python, dbus, sqlite3 +, hicolor_icon_theme }: # TODO: Add optional dependency 'wnck', for "workspace tracking" support. Fixes @@ -17,7 +18,9 @@ buildPythonPackage rec { sha256 = "1a85rcg561792kdyv744cgzw7mmpmgv6d6li1sijfdpqa1ninf8g"; }; - buildInputs = [ docbook2x libxslt gnome_doc_utils intltool dbus_glib ]; + buildInputs = [ + docbook2x libxslt gnome_doc_utils intltool dbus_glib hicolor_icon_theme + ]; propagatedBuildInputs = [ pygobject pygtk pyxdg gnome_python dbus sqlite3 ]; diff --git a/pkgs/applications/misc/rxvt_unicode-plugins/urxvt-perls/default.nix b/pkgs/applications/misc/rxvt_unicode-plugins/urxvt-perls/default.nix index 6a1acca48d9..03a505591b7 100644 --- a/pkgs/applications/misc/rxvt_unicode-plugins/urxvt-perls/default.nix +++ b/pkgs/applications/misc/rxvt_unicode-plugins/urxvt-perls/default.nix @@ -1,12 +1,14 @@ -{ stdenv, fetchgit }: +{ stdenv, fetchFromGitHub }: -stdenv.mkDerivation { - name = "urxvt-perls-2015-03-28"; +stdenv.mkDerivation rec { + name = "urxvt-perls-${version}"; + version = "2.2"; - src = fetchgit { - url = "git://github.com/muennich/urxvt-perls"; - rev = "e4dbde31edd19e2f4c2b6c91117ee91e2f83ddd7"; - sha256 = "1f8a27c3d54377fdd4ab0be2f4efb8329d4900bb1c792b306dc23b5ee59260b1"; + src = fetchFromGitHub { + owner = "muennich"; + repo = "urxvt-perls"; + rev = version; + sha256 = "1cb0jbjmwfy2dlq2ny8wpc04k79jp3pz9qhbmgagsxs3sp1jg2hz"; }; installPhase = '' diff --git a/pkgs/applications/misc/rxvt_unicode/default.nix b/pkgs/applications/misc/rxvt_unicode/default.nix index c1d74c247ce..325a42b70b1 100644 --- a/pkgs/applications/misc/rxvt_unicode/default.nix +++ b/pkgs/applications/misc/rxvt_unicode/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, perlSupport, libX11, libXt, libXft, ncurses, perl, +{ stdenv, fetchurl, fetchpatch, perlSupport, libX11, libXt, libXft, ncurses, perl, fontconfig, freetype, pkgconfig, libXrender, gdkPixbufSupport, gdk_pixbuf, unicode3Support }: @@ -28,6 +28,10 @@ stdenv.mkDerivation (rec { patches = [ ./rxvt-unicode-9.06-font-width.patch ./rxvt-unicode-256-color-resources.patch + (fetchpatch { + url = "https://raw.githubusercontent.com/mina86/urxvt-tabbedex/ad4f54c8b8d3a01fc17975fd3fd14aa674c07d2b/rxvt-unicode-scroll-bug-fix.patch"; + sha256 = "1ild0r6y7jb800yiss5pgd4k60s7l9njv3nn3x280yvg1lx6ihpg"; + }) ] ++ stdenv.lib.optional stdenv.isDarwin ./rxvt-unicode-makefile-phony.patch; diff --git a/pkgs/applications/misc/synapse/default.nix b/pkgs/applications/misc/synapse/default.nix index 8086e8ca56d..7dce7c7fbcd 100644 --- a/pkgs/applications/misc/synapse/default.nix +++ b/pkgs/applications/misc/synapse/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, intltool, pkgconfig, glib, libnotify, gtk3, libgee -, keybinder3, json_glib, zeitgeist, vala +, keybinder3, json_glib, zeitgeist, vala, hicolor_icon_theme }: with stdenv.lib; @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { buildInputs = [ intltool pkgconfig glib libnotify gtk3 libgee keybinder3 json_glib zeitgeist - vala + vala hicolor_icon_theme ]; meta = { diff --git a/pkgs/applications/misc/wcalc/default.nix b/pkgs/applications/misc/wcalc/default.nix new file mode 100644 index 00000000000..1c6dc8f63c2 --- /dev/null +++ b/pkgs/applications/misc/wcalc/default.nix @@ -0,0 +1,20 @@ +{ stdenv, fetchurl, mpfr, readline }: + +stdenv.mkDerivation rec { + name = "wcalc-${version}"; + version = "2.5"; + + src = fetchurl { + url = "mirror://sourceforge/w-calc/${name}.tar.bz2"; + sha256 = "1vi8dl6rccqiq1apmpwawyg2ywx6a1ic1d3cvkf2hlwk1z11fb0f"; + }; + + buildInputs = [ mpfr readline ]; + + meta = with stdenv.lib; { + description = "A command line calculator"; + homepage = http://w-calc.sourceforge.net; + license = licenses.gpl2; + platforms = platforms.all; + }; +} diff --git a/pkgs/applications/networking/browsers/chromium/source/sources.nix b/pkgs/applications/networking/browsers/chromium/source/sources.nix index b80e3b534fb..94755ea3ad4 100644 --- a/pkgs/applications/networking/browsers/chromium/source/sources.nix +++ b/pkgs/applications/networking/browsers/chromium/source/sources.nix @@ -7,10 +7,10 @@ sha256bin64 = "1ycdp37ikdc9w4hp9qgpzjp47zh37g01ax8x4ack202vrv0dxhsh"; }; beta = { - version = "46.0.2490.42"; - sha256 = "0nw6sc6vc5vm5j133hrjq06bibaljq5calqlmzha8ckx21zrr5yy"; - sha256bin32 = "1a1xi4w7f16chb9w1c102ya7890lj31c0fyyrwgvmpymlw9msnh0"; - sha256bin64 = "11758h6674d7g6c5bb820x1pg5z9q78j582kd0sa0p73g5888wd0"; + version = "46.0.2490.52"; + sha256 = "00sgb1pnp3fcijwdwpngnnddmn5nrbljsqz7f6dlnd63qfc91xjw"; + sha256bin32 = "10jgcxc2zwffg8lxi55zl9apql6pyxh1g1n3z46gcb6j6am4y5m5"; + sha256bin64 = "0i839ir4qcjl9llpqnwy793hvbdfh898x1izc5k93h7nm6i34ry9"; }; stable = { version = "45.0.2454.101"; 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 01c64340875..4b94ecdcf5f 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.508"; + version = "11.2.202.535"; 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 = "1i0301vnz94pxcwm9wk1jjyv7gwywy6p7z26ikd5cg259myxbg75"; + sha256 = "13fy842plbnv4w081sbhga0jrpbwz8yydg49c2v96l2marmzw9zp"; } 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 = "1483bi34ymchv1cqg57whxhlrhhvwhcw33zjgwzmy7bacxbkj9ia"; + sha256 = "0z99nz1k0cf86dgs367ddxfnf05m32psidpmdzi5qiqaj10h6j6s"; } else throw "Flash Player is not supported on this platform"; @@ -91,5 +91,6 @@ stdenv.mkDerivation { description = "Adobe Flash Player browser plugin"; homepage = http://www.adobe.com/products/flashplayer/; license = stdenv.lib.licenses.unfree; + maintainers = [ stdenv.lib.maintainers.enolan ]; }; } diff --git a/pkgs/applications/networking/browsers/opera/default.nix b/pkgs/applications/networking/browsers/opera/default.nix index b29f2d1974c..ab199ff97cd 100644 --- a/pkgs/applications/networking/browsers/opera/default.nix +++ b/pkgs/applications/networking/browsers/opera/default.nix @@ -50,8 +50,9 @@ stdenv.mkDerivation rec { preFixup = '' + rm $out/bin/uninstall-opera find $out/lib/opera -type f | while read f; do - type=$(readelf -h "$f" 2>/dev/null | grep 'Type:' | sed -e 's/ *Type: *\([A-Z]*\) (.*/\1/') + type=$(readelf -h "$f" 2>/dev/null | sed -n 's/ *Type: *\([A-Z]*\).*/\1/p' || true) if [ -z "$type" ]; then : elif [ $type == "EXEC" ]; then diff --git a/pkgs/applications/networking/browsers/qutebrowser/default.nix b/pkgs/applications/networking/browsers/qutebrowser/default.nix index 7f2190ab82c..267b0871f08 100644 --- a/pkgs/applications/networking/browsers/qutebrowser/default.nix +++ b/pkgs/applications/networking/browsers/qutebrowser/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchgit, python, buildPythonPackage, qt5, pyqt5, jinja2, pygments, pyyaml, pypeg2, gst_plugins_base, gst_plugins_good, gst_ffmpeg }: -let version = "0.4.0"; in +let version = "0.4.1"; in buildPythonPackage { name = "qutebrowser-${version}"; @@ -9,8 +9,8 @@ buildPythonPackage { src = fetchgit { url = "https://github.com/The-Compiler/qutebrowser.git"; - rev = "e11fcda240eaad1b83b26c7d6424c427d2ad3b96"; - sha256 = "0hpd6fibzcl0s6jrsj60rs12dyliwr05r8h9wvngh19a3pmg8q74"; + rev = "8d9e9851f1dcff5deb6363586ad0f1edec040b72"; + sha256 = "1qsdad10swnk14qw4pfyvb94y6valhkscyvl46zbxxs7ck6llsm2"; }; # Needs tox diff --git a/pkgs/applications/networking/feedreaders/rsstail/default.nix b/pkgs/applications/networking/feedreaders/rsstail/default.nix index 5786d708cd6..1a36dd8ae20 100644 --- a/pkgs/applications/networking/feedreaders/rsstail/default.nix +++ b/pkgs/applications/networking/feedreaders/rsstail/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchFromGitHub, cppcheck, libmrss }: -let version = "2015-09-06"; in +let version = "2.1"; in stdenv.mkDerivation rec { name = "rsstail-${version}"; src = fetchFromGitHub { - sha256 = "1rfzib5fzm0i8wf3njld1lvxgbci0hxxnvp2qx1k4bwpv744xkpx"; - rev = "16636539e4cc75dafbfa7f05539769be7dad4b66"; + sha256 = "12p69i3g1fwlw0bds9jqsdmzkid3k5a41w31d227i7vm12wcvjf6"; + rev = "6f2436185372b3f945a4989406c4b6a934fe8a95"; repo = "rsstail"; owner = "flok99"; }; @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { ++ stdenv.lib.optional doCheck cppcheck; postPatch = '' - substituteInPlace Makefile --replace -liconv "" + substituteInPlace Makefile --replace -liconv_hook "" ''; makeFlags = "prefix=$(out)"; diff --git a/pkgs/applications/networking/google-drive-ocamlfuse/default.nix b/pkgs/applications/networking/google-drive-ocamlfuse/default.nix index db2934785eb..e085adbdcda 100644 --- a/pkgs/applications/networking/google-drive-ocamlfuse/default.nix +++ b/pkgs/applications/networking/google-drive-ocamlfuse/default.nix @@ -1,18 +1,27 @@ -{ stdenv, fetchurl, ocamlPackages, zlib }: +{ stdenv, fetchFromGitHub, ocamlPackages, zlib }: stdenv.mkDerivation rec { - name = "google-drive-ocamlfuse-0.5.12"; - src = fetchurl { - url = "https://forge.ocamlcore.org/frs/download.php/1489/${name}.tar.gz"; - sha256 = "0yfzzrv4h7vplw6qjm9viymy51jaqqari012agar96zwa86fsrdr"; + name = "google-drive-ocamlfuse-${version}"; + version = "0.5.18"; + + src = fetchFromGitHub { + owner = "astrada"; + repo = "google-drive-ocamlfuse"; + rev = "v${version}"; + sha256 = "0a545zalsqw3jndrvkc0bsn4aab74cf8lwnsw09b5gjm8pm79b9r"; }; buildInputs = [ zlib ] ++ (with ocamlPackages; [ocaml ocamlfuse findlib gapi_ocaml ocaml_sqlite3 camlidl]); + configurePhase = "ocaml setup.ml -configure --prefix \"$out\""; buildPhase = "ocaml setup.ml -build"; installPhase = "ocaml setup.ml -install"; meta = { - + homepage = http://gdfuse.forge.ocamlcore.org/; + description = "A FUSE-based file system backed by Google Drive, written in OCaml"; + license = stdenv.lib.licenses.mit; + platforms = stdenv.lib.platforms.linux; + maintainers = with stdenv.lib.maintainers; [ obadz ]; }; } diff --git a/pkgs/applications/networking/ids/snort/default.nix b/pkgs/applications/networking/ids/snort/default.nix index ea7e0962699..e6c45e7335f 100644 --- a/pkgs/applications/networking/ids/snort/default.nix +++ b/pkgs/applications/networking/ids/snort/default.nix @@ -10,7 +10,15 @@ stdenv.mkDerivation rec { sha256 = "1gmlrh9ygpd5h6nnrr4090wk5n2yq2yrvwi7q6xbm6lxj4rcamyv"; }; - buildInputs = [ libpcap pcre libdnet daq zlib flex bison ]; + buildInputs = [ makeWrapper libpcap pcre libdnet daq zlib flex bison ]; + + enableParallelBuilding = true; + + configureFlags = "--disable-static-daq --enable-control-socket --with-daq-includes=${daq}/includes --with-daq-libraries=${daq}/lib"; + + postInstall = '' + wrapProgram $out/bin/snort --add-flags "--daq-dir ${daq}/lib/daq --dynamic-preprocessor-lib-dir $out/lib/snort_dynamicpreprocessor/ --dynamic-engine-lib-dir $out/lib/snort_dynamicengine" + ''; meta = { description = "Network intrusion prevention and detection system (IDS/IPS)"; diff --git a/pkgs/applications/networking/instant-messengers/baresip/default.nix b/pkgs/applications/networking/instant-messengers/baresip/default.nix index d41ba5fcdb3..2b60b3a7a46 100644 --- a/pkgs/applications/networking/instant-messengers/baresip/default.nix +++ b/pkgs/applications/networking/instant-messengers/baresip/default.nix @@ -4,11 +4,11 @@ , gsm, speex, portaudio, spandsp, libuuid }: stdenv.mkDerivation rec { - version = "0.4.14"; + version = "0.4.15"; name = "baresip-${version}"; src=fetchurl { url = "http://www.creytiv.com/pub/baresip-${version}.tar.gz"; - sha256 = "19vn63j6dpybjy14mgnwf0yk2jbcbfdjs50whzwyrrkcv6ipj6hc"; + sha256 = "13712li6y3ikwzl17j46w25xyv3z98yqj7zpr3jifyvbna9ls5r3"; }; buildInputs = [zlib openssl libre librem pkgconfig cairo mpg123 gstreamer gst_ffmpeg gst_plugins_base gst_plugins_bad gst_plugins_good diff --git a/pkgs/applications/networking/instant-messengers/gajim/default.nix b/pkgs/applications/networking/instant-messengers/gajim/default.nix index 69497f87c6b..b2325e87e0d 100644 --- a/pkgs/applications/networking/instant-messengers/gajim/default.nix +++ b/pkgs/applications/networking/instant-messengers/gajim/default.nix @@ -7,7 +7,6 @@ , enableRST ? true , enableSpelling ? true, gtkspell ? null , enableNotifications ? false -, enableLaTeX ? false, texLive ? null }: assert enableJingle -> farstream != null && gst_plugins_bad != null @@ -16,17 +15,16 @@ assert enableE2E -> pythonPackages.pycrypto != null; assert enableRST -> pythonPackages.docutils != null; assert enableSpelling -> gtkspell != null; assert enableNotifications -> pythonPackages.notify != null; -assert enableLaTeX -> texLive != null; with stdenv.lib; stdenv.mkDerivation rec { name = "gajim-${version}"; - version = "0.16.3"; + version = "0.16.4"; src = fetchurl { url = "http://www.gajim.org/downloads/0.16/gajim-${version}.tar.bz2"; - sha256 = "05a59hf9wna6n9fi0a4bhz1hifqj21bwb4ff9rd0my23rdwmij51"; + sha256 = "0zyfs7q1qg8iqszr8l1gb18gqla6zrrfsgpmbxblpi9maqxas5i1"; }; patches = [ @@ -51,11 +49,6 @@ stdenv.mkDerivation rec { '' + optionalString enableSpelling '' sed -i -e 's|=.*find_lib.*|= "${gtkspell}/lib/libgtkspell.so"|' \ src/gtkspell.py - '' + optionalString enableLaTeX '' - sed -i -e "s|try_run(.'dvipng'|try_run(['${texLive}/bin/dvipng'|" \ - -e "s|try_run(.'latex'|try_run(['${texLive}/bin/latex'|" \ - -e 's/tmpfd.close()/os.close(tmpfd)/' \ - src/common/latex.py ''; buildInputs = [ @@ -68,8 +61,7 @@ stdenv.mkDerivation rec { ] ++ optionals enableJingle [ farstream gst_plugins_bad libnice ] ++ optional enableE2E pythonPackages.pycrypto ++ optional enableRST pythonPackages.docutils - ++ optional enableNotifications pythonPackages.notify - ++ optional enableLaTeX texLive; + ++ optional enableNotifications pythonPackages.notify; postInstall = '' install -m 644 -t "$out/share/gajim/icons/hicolor" \ diff --git a/pkgs/applications/networking/instant-messengers/pidgin-plugins/pidgin-skypeweb/default.nix b/pkgs/applications/networking/instant-messengers/pidgin-plugins/pidgin-skypeweb/default.nix new file mode 100644 index 00000000000..1c717eb97fb --- /dev/null +++ b/pkgs/applications/networking/instant-messengers/pidgin-plugins/pidgin-skypeweb/default.nix @@ -0,0 +1,36 @@ +{ stdenv, fetchFromGitHub, pkgconfig, pidgin, json_glib }: + +let + rev = "b92a05c67e"; + date = "2015-10-02"; +in +stdenv.mkDerivation rec { + name = "pidgin-skypeweb-${date}-${rev}"; + + src = fetchFromGitHub { + owner = "EionRobb"; + repo = "skype4pidgin"; + rev = "${rev}"; + sha256 = "00r57w9iwx2yp68ld6f3zkhf53vsk679b42w3xxla6bqblpcxzxl"; + }; + + sourceRoot = "skype4pidgin-${rev}-src/skypeweb"; + + buildInputs = [ pkgconfig pidgin json_glib ]; + + makeFlags = [ + "PLUGIN_DIR_PURPLE=/lib/pidgin/" + "DATA_ROOT_DIR_PURPLE=/share" + "DESTDIR=$(out)" + ]; + + postInstall = "ln -s \$out/lib/pidgin \$out/share/pidgin-skypeweb"; + + meta = with stdenv.lib; { + homepage = https://github.com/EionRobb/skype4pidgin; + description = "SkypeWeb Plugin for Pidgin"; + license = licenses.gpl3; + platforms = platforms.linux; + maintainers = with maintainers; [ jgeerds ]; + }; +} diff --git a/pkgs/applications/networking/instant-messengers/teamspeak/client.nix b/pkgs/applications/networking/instant-messengers/teamspeak/client.nix index ece4b9f0e01..a18ffac5d63 100644 --- a/pkgs/applications/networking/instant-messengers/teamspeak/client.nix +++ b/pkgs/applications/networking/instant-messengers/teamspeak/client.nix @@ -1,18 +1,18 @@ { stdenv, fetchurl, makeWrapper, makeDesktopItem, zlib, glib, libpng, freetype -, xorg, fontconfig, qt5, xkeyboard_config, alsaLib, libpulseaudio ? null +, xorg, fontconfig, qt55, xkeyboard_config, alsaLib, libpulseaudio ? null , libredirect, quazip, less, which, unzip }: let arch = if stdenv.is64bit then "amd64" else "x86"; - + libDir = if stdenv.is64bit then "lib64" else "lib"; deps = [ zlib glib libpng freetype xorg.libSM xorg.libICE xorg.libXrender xorg.libXrandr xorg.libXfixes xorg.libXcursor xorg.libXinerama - xorg.libxcb fontconfig xorg.libXext xorg.libX11 alsaLib qt5.base libpulseaudio + xorg.libxcb fontconfig xorg.libXext xorg.libX11 alsaLib qt55.qtbase libpulseaudio ]; desktopItem = makeDesktopItem { @@ -30,7 +30,7 @@ in stdenv.mkDerivation rec { name = "teamspeak-client-${version}"; - version = "3.0.16"; + version = "3.0.18.1"; src = fetchurl { urls = [ @@ -38,9 +38,9 @@ stdenv.mkDerivation rec { "http://teamspeak.gameserver.gamed.de/ts3/releases/${version}/TeamSpeak3-Client-linux_${arch}-${version}.run" "http://files.teamspeak-services.com/releases/${version}/TeamSpeak3-Client-linux_${arch}-${version}.run" ]; - sha256 = if stdenv.is64bit - then "0gvphrmrkyy1g2nprvdk7cvawznzlv4smw0mlvzd4b9mvynln0v2" - else "1b3nbvfpd8lx3dig8z5yk6zjkbmsy6y938dhj1f562wc8adixciz"; + sha256 = if stdenv.is64bit + then "1bc9m2niagqmijmzlki8jmp48vhns041xdjlji9fyqay6l5mx5fw" + else "156dirxjys7pbximw19qs7j52my36p4kp98df3kgrsiiv8mz6v68"; }; # grab the plugin sdk for the desktop icon @@ -71,7 +71,7 @@ stdenv.mkDerivation rec { installPhase = '' # Delete unecessary libraries - these are provided by nixos. - rm *.so.* + rm *.so.* *.so rm qt.conf # Install files. @@ -89,15 +89,16 @@ stdenv.mkDerivation rec { ln -s $out/lib/teamspeak/ts3client $out/bin/ts3client wrapProgram $out/bin/ts3client \ - --set LD_PRELOAD "${libredirect}/lib/libredirect.so:${quazip}/lib/libquazip.so" \ + --set LD_LIBRARY_PATH "${quazip}/lib" \ + --set LD_PRELOAD "${libredirect}/lib/libredirect.so" \ --set QT_PLUGIN_PATH "$out/lib/teamspeak/platforms" \ --set NIX_REDIRECTS /usr/share/X11/xkb=${xkeyboard_config}/share/X11/xkb ''; dontStrip = true; dontPatchELF = true; - - meta = { + + meta = { description = "The TeamSpeak voice communication tool"; homepage = http://teamspeak.com/; license = "http://www.teamspeak.com/?page=downloads&type=ts3_linux_client_latest"; diff --git a/pkgs/applications/networking/mailreaders/claws-mail/default.nix b/pkgs/applications/networking/mailreaders/claws-mail/default.nix index f226ff16a1c..b29165fde97 100644 --- a/pkgs/applications/networking/mailreaders/claws-mail/default.nix +++ b/pkgs/applications/networking/mailreaders/claws-mail/default.nix @@ -29,7 +29,7 @@ with stdenv.lib; -let version = "3.11.1"; in +let version = "3.12.0"; in stdenv.mkDerivation { name = "claws-mail-${version}"; @@ -40,16 +40,20 @@ stdenv.mkDerivation { license = licenses.gpl3; platforms = platforms.linux; maintainers = [ maintainers.khumba ]; - priority = 10; # Resolve the conflict with the share/mime link we create. }; src = fetchurl { - url = "http://downloads.sourceforge.net/project/claws-mail/Claws%20Mail/${version}/claws-mail-${version}.tar.bz2"; - sha256 = "0w13xzri9d3165qsxf1dig1f0gxn3ib4lysfc9pgi4zpyzd0zgrw"; + url = "http://www.claws-mail.org/download.php?file=releases/claws-mail-${version}.tar.xz"; + sha256 = "1jnnwivpcplv8x4w0ibb1qcnasl37fr53lbfybhgb936l2mdcai7"; }; patches = [ ./mime.patch ]; + postPatch = '' + substituteInPlace src/procmime.c \ + --subst-var-by MIMEROOTDIR ${shared_mime_info}/share + ''; + buildInputs = [ curl dbus dbus_glib gtk gnutls hicolor_icon_theme libetpan perl pkgconfig python @@ -90,7 +94,5 @@ stdenv.mkDerivation { postInstall = '' mkdir -p $out/share/applications cp claws-mail.desktop $out/share/applications - - ln -sT ${shared_mime_info}/share/mime $out/share/mime ''; } diff --git a/pkgs/applications/networking/mailreaders/claws-mail/mime.patch b/pkgs/applications/networking/mailreaders/claws-mail/mime.patch index 5437c1c65d7..62f5df4b69a 100644 --- a/pkgs/applications/networking/mailreaders/claws-mail/mime.patch +++ b/pkgs/applications/networking/mailreaders/claws-mail/mime.patch @@ -1,14 +1,15 @@ ---- a/src/procmime.c 2015-09-18 04:03:11.767654094 -0700 -+++ b/src/procmime.c 2015-09-18 04:08:38.834503034 -0700 +--- a/src/procmime.c 2015-10-01 23:02:16.629908590 -0700 ++++ b/src/procmime.c 2015-10-01 23:02:46.932001337 -0700 @@ -1196,11 +1196,7 @@ if (mime_type_list) return mime_type_list; -#if defined(__NetBSD__) || defined(__OpenBSD__) || defined(__FreeBSD__) - if ((fp = procmime_fopen(DATAROOTDIR "/mime/globs", "rb")) == NULL) +- if ((fp = procmime_fopen(DATAROOTDIR "/mime/globs", "rb")) == NULL) -#else - if ((fp = procmime_fopen("/usr/share/mime/globs", "rb")) == NULL) -#endif ++ if ((fp = procmime_fopen("@MIMEROOTDIR@/mime/globs", "rb")) == NULL) { fp_is_glob_file = FALSE; if ((fp = procmime_fopen("/etc/mime.types", "rb")) == NULL) { diff --git a/pkgs/applications/networking/mumble/default.nix b/pkgs/applications/networking/mumble/default.nix index afe27eb3814..8660d94a9e0 100644 --- a/pkgs/applications/networking/mumble/default.nix +++ b/pkgs/applications/networking/mumble/default.nix @@ -1,71 +1,153 @@ -{ stdenv, fetchurl, pkgconfig -, avahi, boost, libopus, celt, libsndfile, protobuf, qt4, speex +{ stdenv, fetchurl, fetchgit, pkgconfig +, qt4, qt5, avahi, boost, libopus, libsndfile, protobuf, speex, libcap +, alsaLib , jackSupport ? false, libjack2 ? null , speechdSupport ? false, speechd ? null , pulseSupport ? false, libpulseaudio ? null +, iceSupport ? false, zeroc_ice ? null }: assert jackSupport -> libjack2 != null; assert speechdSupport -> speechd != null; assert pulseSupport -> libpulseaudio != null; +assert iceSupport -> zeroc_ice != null; +with stdenv.lib; let - optional = stdenv.lib.optional; - optionalString = stdenv.lib.optionalString; -in -stdenv.mkDerivation rec { - name = "mumble-${version}"; - version = "1.2.10"; + generic = overrides: source: stdenv.mkDerivation (source // overrides // { + name = "${overrides.type}-${source.version}"; - src = fetchurl { - url = "https://github.com/mumble-voip/mumble/releases/download/${version}/${name}.tar.gz"; - sha256 = "012vm0xf84x13414jlsx964c5a1nwnbn41jnspkciajlxxipldn6"; + patches = optional jackSupport ./mumble-jack-support.patch; + + nativeBuildInputs = [ pkgconfig ] + ++ { qt4 = [ qt4 ]; qt5 = [ qt5.base ]; }."qt${toString source.qtVersion}" + ++ (overrides.nativeBuildInputs or [ ]); + buildInputs = [ boost protobuf avahi ] + ++ { qt4 = [ qt4 ]; qt5 = [ qt5.base ]; }."qt${toString source.qtVersion}" + ++ (overrides.buildInputs or [ ]); + + configureFlags = [ + "CONFIG+=shared" + "CONFIG+=no-g15" + "CONFIG+=packaged" + "CONFIG+=no-update" + "CONFIG+=no-embed-qt-translations" + "CONFIG+=bundled-celt" + "CONFIG+=no-bundled-opus" + "CONFIG+=no-bundled-speex" + ] ++ optional (!speechdSupport) "CONFIG+=no-speechd" + ++ optional jackSupport "CONFIG+=no-oss CONFIG+=no-alsa CONFIG+=jackaudio" + ++ (overrides.configureFlags or [ ]); + + configurePhase = '' + qmake $configureFlags DEFINES+="PLUGIN_PATH=$out/lib" + ''; + + makeFlags = [ "release" ]; + + installPhase = '' + mkdir -p $out/{lib,bin} + find release -type f -not -name \*.\* -exec cp {} $out/bin \; + find release -type f -name \*.\* -exec cp {} $out/lib \; + + mkdir -p $out/share/man/man1 + cp man/mum* $out/share/man/man1 + '' + (overrides.installPhase or ""); + + meta = { + description = "Low-latency, high quality voice chat software"; + homepage = "http://mumble.sourceforge.net/"; + license = licenses.bsd3; + maintainers = with maintainers; [ viric jgeerds wkennington ]; + platforms = platforms.linux; + }; + }); + + client = source: generic { + type = "mumble"; + + nativeBuildInputs = optional (source.qtVersion == 5) qt5.tools; + buildInputs = [ libopus libsndfile speex ] + ++ optional (source.qtVersion == 5) qt5.svg + ++ optional stdenv.isLinux alsaLib + ++ optional jackSupport libjack2 + ++ optional speechdSupport speechd + ++ optional pulseSupport libpulseaudio; + + configureFlags = [ + "CONFIG+=no-server" + ]; + + installPhase = '' + cp scripts/mumble-overlay $out/bin + sed -i "s,/usr/lib,$out/lib,g" $out/bin/mumble-overlay + + mkdir -p $out/share/applications + cp scripts/mumble.desktop $out/share/applications + + mkdir -p $out/share/icons{,/hicolor/scalable/apps} + cp icons/mumble.svg $out/share/icons + ln -s $out/share/icon/mumble.svg $out/share/icons/hicolor/scalable/apps + ''; + } source; + + server = generic { + type = "murmur"; + + postPatch = optional iceSupport '' + sed -i 's,/usr/share/Ice/,${zeroc_ice}/,g' src/murmur/murmur.pro + ''; + + configureFlags = [ + "CONFIG+=no-client" + ]; + + buildInputs = [ libcap ] ++ optional iceSupport [ zeroc_ice ]; }; - patches = optional jackSupport ./mumble-jack-support.patch; + stableSource = rec { + version = "1.2.10"; + qtVersion = 4; - configureFlags = [ - "CONFIG+=shared" - "CONFIG+=no-g15" - "CONFIG+=packaged" - "CONFIG+=no-update" - "CONFIG+=no-server" - "CONFIG+=no-embed-qt-translations" - "CONFIG+=no-bundled-celt" - "CONFIG+=no-bundled-opus" - "CONFIG+=no-bundled-speex" - ] ++ optional (!speechdSupport) "CONFIG+=no-speechd" - ++ optional jackSupport "CONFIG+=no-oss CONFIG+=no-alsa CONFIG+=jackaudio"; - - configurePhase = '' - qmake $configureFlags - ''; - - nativeBuildInputs = [ pkgconfig ]; - - NIX_CFLAGS_COMPILE = [ "-I${celt}/include/celt" ]; - - buildInputs = [ avahi boost libopus celt libsndfile protobuf qt4 speex ] - ++ optional jackSupport libjack2 - ++ optional speechdSupport speechd - ++ optional pulseSupport libpulseaudio; - - installPhase = '' - mkdir -p $out - cp -r ./release $out/bin - - mkdir -p $out/share/applications - cp scripts/mumble.desktop $out/share/applications - - mkdir -p $out/share/icons - cp icons/mumble.svg $out/share/icons - ''; - - meta = with stdenv.lib; { - description = "Low-latency, high quality voice chat software"; - homepage = "http://mumble.sourceforge.net/"; - license = licenses.bsd3; - maintainers = with maintainers; [ viric jgeerds ]; - platforms = platforms.linux; + src = fetchurl { + url = "https://github.com/mumble-voip/mumble/releases/download/${version}/mumble-${version}.tar.gz"; + sha256 = "012vm0xf84x13414jlsx964c5a1nwnbn41jnspkciajlxxipldn6"; + }; }; + + gitSource = rec { + version = "1.3.0-git-2015-09-27"; + qtVersion = 5; + + src = fetchgit { + url = "https://github.com/mumble-voip/mumble"; + rev = "13e494c60beb20748eeb8be126b27e1226d168c8"; + sha256 = "1vihassis5i7hyljbb8qjihjj4y80n5l380x5dl0nwb55j2mylhg"; + }; + + # TODO: Remove fetchgit as it requires git + /*src = fetchFromGitHub { + owner = "mumble-voip"; + repo = "mumble"; + rev = "13e494c60beb20748eeb8be126b27e1226d168c8"; + sha256 = "024my6wzahq16w7fjwrbksgnq98z4jjbdyy615kfyd9yk2qnpl80"; + }; + + theme = fetchFromGitHub { + owner = "mumble-voip"; + repo = "mumble-theme"; + rev = "16b61d958f131ca85ab0f601d7331601b63d8f30"; + sha256 = "0rbh825mwlh38j6nv2sran2clkiwvzj430mhvkdvzli9ysjxgsl3"; + }; + + prePatch = '' + rmdir themes/Mumble + ln -s ${theme} themes/Mumble + '';*/ + }; +in { + mumble = client stableSource; + mumble_git = client gitSource; + murmur = server stableSource; + murmur_git = server gitSource; } diff --git a/pkgs/applications/networking/mumble/murmur.nix b/pkgs/applications/networking/mumble/murmur.nix deleted file mode 100644 index cb10fca6cd9..00000000000 --- a/pkgs/applications/networking/mumble/murmur.nix +++ /dev/null @@ -1,42 +0,0 @@ -{ stdenv, qt4, boost, protobuf, mumble -, avahi, libcap, pkgconfig -, iceSupport ? false -, zeroc_ice ? null -}: - -assert iceSupport -> zeroc_ice != null; - -let - optional = stdenv.lib.optional; - optionalString = stdenv.lib.optionalString; -in -stdenv.mkDerivation rec { - name = "murmur-${version}"; - - inherit (mumble) version src; - - patchPhase = optional iceSupport '' - sed -i 's,/usr/share/Ice/,${zeroc_ice}/,g' src/murmur/murmur.pro - ''; - - configurePhase = '' - qmake CONFIG+=no-client CONFIG+=no-embed-qt \ - ${optionalString (!iceSupport) "CONFIG+=no-ice"} - ''; - - buildInputs = [ qt4 boost protobuf avahi libcap pkgconfig ] - ++ optional iceSupport [ zeroc_ice ]; - - installPhase = '' - mkdir -p $out - cp -r ./release $out/bin - ''; - - meta = with stdenv.lib; { - homepage = "http://mumble.sourceforge.net/"; - description = "Low-latency, high quality voice chat software"; - license = licenses.bsd3; - platforms = platforms.linux; - maintainers = with maintainers; [ viric ]; - }; -} diff --git a/pkgs/applications/networking/nload/default.nix b/pkgs/applications/networking/nload/default.nix new file mode 100644 index 00000000000..f3faa0128bb --- /dev/null +++ b/pkgs/applications/networking/nload/default.nix @@ -0,0 +1,27 @@ +{ stdenv, fetchurl, ncurses }: + +stdenv.mkDerivation rec { + version = "0.7.4"; + name = "nload-${version}"; + + src = fetchurl { + url = "http://www.roland-riegel.de/nload/${name}.tar.gz"; + sha256 = "1rb9skch2kgqzigf19x8bzk211jdfjfdkrcvaqyj89jy2pkm3h61"; + }; + + buildInputs = [ ncurses ]; + + meta = { + description = "Monitors network traffic and bandwidth usage with ncurses graphs"; + longDescription = '' + nload is a console application which monitors network traffic and + bandwidth usage in real time. It visualizes the in- and outgoing traffic + using two graphs and provides additional info like total amount of + transfered data and min/max network usage. + ''; + homepage = http://www.roland-riegel.de/nload/index.html; + license = stdenv.lib.licenses.gpl2; + platforms = stdenv.lib.platforms.unix; + maintainers = [ stdenv.lib.maintainers.devhell ]; + }; +} diff --git a/pkgs/applications/networking/p2p/twister/default.nix b/pkgs/applications/networking/p2p/twister/default.nix index c762edb857b..d8685da8d81 100644 --- a/pkgs/applications/networking/p2p/twister/default.nix +++ b/pkgs/applications/networking/p2p/twister/default.nix @@ -8,19 +8,19 @@ let name = "twister-html"; src = fetchgit { url = "git://github.com/miguelfreitas/twister-html.git"; - rev = "891f7bf24e1c3df7ec5e1db23c765df2d7c2d5a9"; - sha256 = "0d96rfkpwxyiz32k2pd6a64r2kr3600qgp9v73ddcpq593wf11qb"; + rev = "01e7f7ca9b7e42ed90f91bc42da2c909ca5c0b9b"; + sha256 = "0scjbin6s1kmi0bqq0dx0qyjw4n5xgmj567n0156i39f9h0dabqy"; }; }; in stdenv.mkDerivation rec { name = "twister-${version}"; - version = "0.9.22"; + version = "0.9.30"; src = fetchurl { url = "https://github.com/miguelfreitas/twister-core/" + "archive/v${version}.tar.gz"; - sha256 = "1haq0d7ypnazs599g4kcq1x914fslc04wazqj54rlvjdp7yx4j3f"; + sha256 = "1i39iqq6z25rh869vi5k76g84rmyh30p05xid7z9sqjrqdfpyyzk"; }; configureFlags = [ @@ -29,6 +29,7 @@ in stdenv.mkDerivation rec { "--disable-deprecated-functions" "--enable-tests" "--enable-python-binding" + "--with-boost-libdir=${boost.lib}/lib" ]; buildInputs = [ diff --git a/pkgs/applications/networking/spideroak/default.nix b/pkgs/applications/networking/spideroak/default.nix index 403630e25e5..525e1547023 100644 --- a/pkgs/applications/networking/spideroak/default.nix +++ b/pkgs/applications/networking/spideroak/default.nix @@ -12,19 +12,19 @@ let else if stdenv.system == "i686-linux" then "ld-linux.so.2" else throw "Spideroak client for: ${stdenv.system} not supported!"; - sha256 = if stdenv.system == "x86_64-linux" then "0ax5ij3fwq3q9agf7qkw2zg53fcd82llg734pq3swzpn3z1ajs38" - else if stdenv.system == "i686-linux" then "18hvgx8bvd2khnqfn434gd4mflv0w5y8kvim72rvya2kwxsyf3i1" + sha256 = if stdenv.system == "x86_64-linux" then "88fd785647def79ee36621fa2a8a5bea73c513de03103f068dd10bc25f3cf356" + else if stdenv.system == "i686-linux" then "8c23271291f40aa144bbf38ceb3cc2a05bed00759c87a65bd798cf8bb289d07a" else throw "Spideroak client for: ${stdenv.system} not supported!"; ldpath = stdenv.lib.makeSearchPath "lib" [ - glib fontconfig libXext libX11 freetype libXrender + glib fontconfig libXext libX11 freetype libXrender ]; - version = "5.1.6"; + version = "6.0.1"; in stdenv.mkDerivation { name = "spideroak-${version}"; - + src = fetchurl { name = "spideroak-${version}-${arch}"; url = "https://spideroak.com/getbuild?platform=slackware&arch=${arch}&version=${version}"; @@ -36,17 +36,17 @@ in stdenv.mkDerivation { unpackCmd = "tar -xzf $curSrc"; installPhase = '' - ensureDir "$out" + mkdir "$out" cp -r "./"* "$out" - ensureDir "$out/bin" - rm "$out/usr/bin/SpiderOak" + mkdir "$out/bin" + rm "$out/usr/bin/SpiderOakONE" patchelf --set-interpreter ${stdenv.glibc}/lib/${interpreter} \ - "$out/opt/SpiderOak/lib/SpiderOak" + "$out/opt/SpiderOakONE/lib/SpiderOakONE" - RPATH=$out/opt/SpiderOak/lib:${ldpath} - makeWrapper $out/opt/SpiderOak/lib/SpiderOak $out/bin/spideroak --set LD_LIBRARY_PATH $RPATH \ - --set QT_PLUGIN_PATH $out/opt/SpiderOak/lib/plugins/ \ + RPATH=$out/opt/SpiderOakONE/lib:${ldpath} + makeWrapper $out/opt/SpiderOakONE/lib/SpiderOakONE $out/bin/spideroak --set LD_LIBRARY_PATH $RPATH \ + --set QT_PLUGIN_PATH $out/opt/SpiderOakONE/lib/plugins/ \ --set SpiderOak_EXEC_SCRIPT $out/bin/spideroak ''; diff --git a/pkgs/applications/office/libreoffice/default.nix b/pkgs/applications/office/libreoffice/default.nix index f1adef86dc9..55bdd8eceb0 100644 --- a/pkgs/applications/office/libreoffice/default.nix +++ b/pkgs/applications/office/libreoffice/default.nix @@ -20,7 +20,7 @@ let langsSpaces = stdenv.lib.concatStringsSep " " langs; major = "5"; minor = "0"; - patch = "1"; + patch = "2"; tweak = "2"; subdir = "${major}.${minor}.${patch}"; version = "${subdir}${if tweak == "" then "" else "."}${tweak}"; @@ -47,14 +47,14 @@ let translations = fetchSrc { name = "translations"; - sha256 = "0z8qf4ri8wmzgc5601fxcwxwym1h9rwk0kaqpxhqbkj04h9z0xq7"; + sha256 = "06w1gz78136bs6fbwslxz5zsg538yqfarkq1am7zn8rzczz2qplh"; }; # TODO: dictionaries help = fetchSrc { name = "help"; - sha256 = "0iz9jz0ppghzh33kzw7v0xqchim9brys6mnmlk74nzrhci2vj7f7"; + sha256 = "157hypz093vhqbysygx5q4fbb81785m2b7slccfkp8x87dcsahj3"; }; }; @@ -63,7 +63,7 @@ in stdenv.mkDerivation rec { src = fetchurl { url = "http://download.documentfoundation.org/libreoffice/src/${subdir}/libreoffice-${version}.tar.xz"; - sha256 = "06nj1wnx09a6v3kx9k48810mkb19dbkaln1af33f4m7bxg5bjl87"; + sha256 = "0xn1pg72vfdajmhak6chajvd51h74jqvq2565xv3j823143niw01"; }; # Openoffice will open libcups dynamically, so we link it directly diff --git a/pkgs/applications/science/math/R/default.nix b/pkgs/applications/science/math/R/default.nix index 0f13faf7513..79bfef08bb5 100644 --- a/pkgs/applications/science/math/R/default.nix +++ b/pkgs/applications/science/math/R/default.nix @@ -6,11 +6,11 @@ }: stdenv.mkDerivation rec { - name = "R-3.2.1"; + name = "R-3.2.2"; src = fetchurl { url = "http://cran.r-project.org/src/base/R-3/${name}.tar.gz"; - sha256 = "d59dbc3f04f4604a5cf0fb210b8ea703ef2438b3ee65fd5ab536ec5234f4c982"; + sha256 = "07a6s865bjnh7w0fqsrkv1pva76w99v86w0w787qpdil87km54cw"; }; buildInputs = [ bzip2 gfortran libX11 libXmu libXt @@ -19,7 +19,8 @@ stdenv.mkDerivation rec { which jdk openblas ]; - patches = [ ./no-usr-local-search-paths.patch ]; + patches = [ ./no-usr-local-search-paths.patch + ./fix-tests-without-recommended-packages.patch ]; preConfigure = '' configureFlagsArray=( diff --git a/pkgs/applications/science/math/R/fix-tests-without-recommended-packages.patch b/pkgs/applications/science/math/R/fix-tests-without-recommended-packages.patch new file mode 100644 index 00000000000..c736c7098a3 --- /dev/null +++ b/pkgs/applications/science/math/R/fix-tests-without-recommended-packages.patch @@ -0,0 +1,24 @@ +diff -Naur R-3.2.2-upstream/tests/reg-packages.R R-3.2.2/tests/reg-packages.R +--- R-3.2.2-upstream/tests/reg-packages.R 2015-08-05 17:45:05.000000000 -0430 ++++ R-3.2.2/tests/reg-packages.R 2015-10-01 02:11:05.484992903 -0430 +@@ -82,7 +82,8 @@ + ## pkgB tests an empty R directory + dir.create(file.path(pkgPath, "pkgB", "R"), recursive = TRUE, + showWarnings = FALSE) +-p.lis <- if("Matrix" %in% row.names(installed.packages(.Library))) ++matrixIsInstalled <- "Matrix" %in% row.names(installed.packages(.Library)) ++p.lis <- if(matrixIsInstalled) + c("pkgA", "pkgB", "exNSS4") else "exNSS4" + for(p. in p.lis) { + cat("building package", p., "...\n") +@@ -111,8 +112,8 @@ + tools::assertError(is.null(pkgA:::nilData)) + } + +-if(dir.exists(file.path("myLib", "exNSS4"))) { +- for(ns in c("pkgB", "pkgA", "Matrix", "exNSS4")) unloadNamespace(ns) ++if(matrixIsInstalled && dir.exists(file.path("myLib", "exNSS4"))) { ++ for(ns in c(rev(p.lis), "Matrix")) unloadNamespace(ns) + ## Both exNSS4 and Matrix define "atomicVector" *the same*, + ## but 'exNSS4' has it extended - and hence *both* are registered in cache -> "conflicts" + requireNamespace("exNSS4", lib= "myLib") diff --git a/pkgs/applications/search/recoll/default.nix b/pkgs/applications/search/recoll/default.nix index 3182f4a5c66..555da3de6d5 100644 --- a/pkgs/applications/search/recoll/default.nix +++ b/pkgs/applications/search/recoll/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl -, qt4, xapian, file, python -, djvulibre, groff, libxslt, unzip, xpdf, antiword, catdoc, lyx +, qt4, xapian, file, python, perl +, djvulibre, groff, libxslt, unzip, poppler_utils, antiword, catdoc, lyx , libwpd, unrtf, untex , ghostscript, gawk, gnugrep, gnused, gnutar, gzip, libiconv }: @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { substituteInPlace $f --replace gunzip ${gzip}/bin/gunzip substituteInPlace $f --replace iconv ${libiconv}/bin/iconv substituteInPlace $f --replace lyx ${lyx}/bin/lyx - substituteInPlace $f --replace pdftotext ${xpdf}/bin/pdftotext + substituteInPlace $f --replace pdftotext ${poppler_utils}/bin/pdftotext substituteInPlace $f --replace pstotext ${ghostscript}/bin/ps2ascii substituteInPlace $f --replace sed ${gnused}/bin/sed substituteInPlace $f --replace tar ${gnutar}/bin/tar @@ -44,6 +44,7 @@ stdenv.mkDerivation rec { substituteInPlace $f --replace unrtf ${unrtf}/bin/unrtf substituteInPlace $f --replace untex ${untex}/bin/untex substituteInPlace $f --replace wpd2html ${libwpd}/bin/wpd2html + substituteInPlace $f --replace /usr/bin/perl ${perl}/bin/perl done ''; diff --git a/pkgs/applications/version-management/git-and-tools/git-crypt/default.nix b/pkgs/applications/version-management/git-and-tools/git-crypt/default.nix index c13c5e07001..c0acb13740a 100644 --- a/pkgs/applications/version-management/git-and-tools/git-crypt/default.nix +++ b/pkgs/applications/version-management/git-and-tools/git-crypt/default.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { make install PREFIX=$out ''; - meta = { + meta = with stdenv.lib; { homepage = "https://www.agwa.name/projects/git-crypt"; description = "transparent file encryption in git"; longDescription = '' @@ -33,9 +33,9 @@ stdenv.mkDerivation rec { entire repository. ''; downloadPage = "https://github.com/AGWA/git-crypt/releases"; - license = stdenv.lib.licenses.gpl3; + license = licenses.gpl3; version = "0.5.0"; - maintainers = [ "Desmond O. Chang " ]; + maintainers = [ maintainers.dochang ]; }; } diff --git a/pkgs/applications/version-management/mercurial/default.nix b/pkgs/applications/version-management/mercurial/default.nix index 5a44240fa76..0557b8a2c55 100644 --- a/pkgs/applications/version-management/mercurial/default.nix +++ b/pkgs/applications/version-management/mercurial/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, python, makeWrapper, docutils, unzip, hg-git, dulwich , guiSupport ? false, tk ? null, hg-crecord ? null, curses -, ApplicationServices }: +, ApplicationServices, cf-private }: let version = "3.5.1"; @@ -20,7 +20,8 @@ stdenv.mkDerivation { buildInputs = [ python makeWrapper docutils unzip ]; - propagatedBuildInputs = stdenv.lib.optional stdenv.isDarwin ApplicationServices; + propagatedBuildInputs = stdenv.lib.optionals stdenv.isDarwin + [ ApplicationServices cf-private ]; makeFlags = "PREFIX=$(out)"; diff --git a/pkgs/applications/video/kodi/default.nix b/pkgs/applications/video/kodi/default.nix index 3fd3d31c18c..142822023fb 100644 --- a/pkgs/applications/video/kodi/default.nix +++ b/pkgs/applications/video/kodi/default.nix @@ -110,6 +110,7 @@ in stdenv.mkDerivation rec { --prefix LD_LIBRARY_PATH ":" "${libvdpau}/lib" \ --prefix LD_LIBRARY_PATH ":" "${libcec}/lib" \ --prefix LD_LIBRARY_PATH ":" "${libcec_platform}/lib" \ + --prefix LD_LIBRARY_PATH ":" "${libass}/lib" \ --prefix LD_LIBRARY_PATH ":" "${rtmpdump}/lib" done ''; diff --git a/pkgs/applications/video/makemkv/default.nix b/pkgs/applications/video/makemkv/default.nix index 040f74c16ff..b65dfe921c4 100644 --- a/pkgs/applications/video/makemkv/default.nix +++ b/pkgs/applications/video/makemkv/default.nix @@ -4,17 +4,17 @@ stdenv.mkDerivation rec { name = "makemkv-${ver}"; - ver = "1.9.5"; + ver = "1.9.7"; builder = ./builder.sh; src_bin = fetchurl { url = "http://www.makemkv.com/download/makemkv-bin-${ver}.tar.gz"; - sha256 = "1qzkdrij89s748rvmibx083g1irfm8dqx257skr45i2gsg2qqijp"; + sha256 = "1b1kdfs89ms2vyi4406ydw01py0mvvij01rx9anblgy10bc0yvfy"; }; src_oss = fetchurl { url = "http://www.makemkv.com/download/makemkv-oss-${ver}.tar.gz"; - sha256 = "1immnlx1rld8iw89fxgq2sk2l050sa8h046ka8mdwg8682d75lfg"; + sha256 = "169fl1v3i133ihldyfq3akj3x30qsxndw7q52vv90gmn5r52bzb9"; }; buildInputs = [openssl qt4 mesa zlib pkgconfig libav]; diff --git a/pkgs/applications/virtualization/qemu/default.nix b/pkgs/applications/virtualization/qemu/default.nix index 1bedb404a2a..48cb3d0e758 100644 --- a/pkgs/applications/virtualization/qemu/default.nix +++ b/pkgs/applications/virtualization/qemu/default.nix @@ -11,7 +11,7 @@ with stdenv.lib; let - version = "2.4.0"; + version = "2.4.0.1"; audio = optionalString (hasSuffix "linux" stdenv.system) "alsa," + optionalString pulseSupport "pa," + optionalString sdlSupport "sdl,"; @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "http://wiki.qemu.org/download/qemu-${version}.tar.bz2"; - sha256 = "0836gqv5zcl0xswwjcns3mlkn18lyz2fiq8rl1ihcm6cpf8vkc3j"; + sha256 = "1nqv5p94zpnhcaqkifnn83ap7dd0qrb0qiicswbyhhby0f48pzpc"; }; buildInputs = diff --git a/pkgs/applications/virtualization/virt-manager/default.nix b/pkgs/applications/virtualization/virt-manager/default.nix index a98ebe424c6..d2305f83067 100644 --- a/pkgs/applications/virtualization/virt-manager/default.nix +++ b/pkgs/applications/virtualization/virt-manager/default.nix @@ -37,6 +37,7 @@ buildPythonPackage rec { gsettings_desktop_schemas gnome3.defaultIconTheme wrapGAppsHook + dconf ]; configurePhase = '' diff --git a/pkgs/applications/virtualization/virtualbox/default.nix b/pkgs/applications/virtualization/virtualbox/default.nix index 9136bba0215..b84272b7547 100644 --- a/pkgs/applications/virtualization/virtualbox/default.nix +++ b/pkgs/applications/virtualization/virtualbox/default.nix @@ -18,7 +18,7 @@ let # revision/hash as well. See # http://download.virtualbox.org/virtualbox/${version}/SHA256SUMS # for hashes. - version = "5.0.4"; + version = "5.0.6"; forEachModule = action: '' for mod in \ @@ -39,12 +39,12 @@ let ''; # See https://github.com/NixOS/nixpkgs/issues/672 for details - extpackRevision = "102546"; + extpackRevision = "103037"; extensionPack = requireFile rec { name = "Oracle_VM_VirtualBox_Extension_Pack-${version}-${extpackRevision}.vbox-extpack"; # IMPORTANT: Hash must be base16 encoded because it's used as an input to # VBoxExtPackHelperApp! - sha256 = "e4618e7847eff7c31426f4639bcd83c37bd817147081d3218f21c8e7b6bc7cfa"; + sha256 = "4eed4f3d253bffe4ce61ee9431d79cbe1f897b3583efc2ff3746f453450787b5"; message = '' In order to use the extension pack, you need to comply with the VirtualBox Personal Use and Evaluation License (PUEL) by downloading the related binaries from: @@ -63,7 +63,7 @@ in stdenv.mkDerivation { src = fetchurl { url = "http://download.virtualbox.org/virtualbox/${version}/VirtualBox-${version}.tar.bz2"; - sha256 = "b19e23fc8e71f38aef7c059f44e59fcbff3bb2ce85baa8de81f1629b85f68fcf"; + sha256 = "0hsqd9bvbbzs3ihlfp2m15z6vx3nydjirv6drhfs6r9iqhl3zmi2"; }; buildInputs = diff --git a/pkgs/applications/virtualization/virtualbox/guest-additions/default.nix b/pkgs/applications/virtualization/virtualbox/guest-additions/default.nix index 76cc8c080ca..4ef62baa3d9 100644 --- a/pkgs/applications/virtualization/virtualbox/guest-additions/default.nix +++ b/pkgs/applications/virtualization/virtualbox/guest-additions/default.nix @@ -12,7 +12,7 @@ stdenv.mkDerivation { src = fetchurl { url = "http://download.virtualbox.org/virtualbox/${version}/VBoxGuestAdditions_${version}.iso"; - sha256 = "de4abc28832d4e96b826efef3e7e69e69d6b941babfdc6317185f1fd6e22ffcf"; + sha256 = "59ed9911c2bb22357345448c3df6104938b45fa780311d20c330e39c6e309991"; }; KERN_DIR = "${kernel.dev}/lib/modules/*/build"; diff --git a/pkgs/build-support/build-fhs-chrootenv/env.nix b/pkgs/build-support/build-fhs-chrootenv/env.nix index b659655f74b..fa7e432ab60 100644 --- a/pkgs/build-support/build-fhs-chrootenv/env.nix +++ b/pkgs/build-support/build-fhs-chrootenv/env.nix @@ -95,6 +95,7 @@ let # symlink other core stuff ln -s /host-etc/localtime localtime ln -s /host-etc/machine-id machine-id + ln -s /host-etc/os-release os-release # symlink PAM stuff ln -s /host-etc/pam.d pam.d diff --git a/pkgs/build-support/build-fhs-userenv/chroot-user.rb b/pkgs/build-support/build-fhs-userenv/chroot-user.rb index b7d6276ceab..05b4914b6f6 100755 --- a/pkgs/build-support/build-fhs-userenv/chroot-user.rb +++ b/pkgs/build-support/build-fhs-userenv/chroot-user.rb @@ -1,18 +1,18 @@ #!/usr/bin/env ruby -# Bind mounts hierarchy: [from, to (relative)] +# Bind mounts hierarchy: from => to (relative) # If 'to' is nil, path will be the same -mounts = [ ['/nix/store', nil], - ['/dev', nil], - ['/proc', nil], - ['/sys', nil], - ['/etc', 'host-etc'], - ['/tmp', 'host-tmp'], - ['/home', nil], - ['/var', nil], - ['/run', nil], - ['/root', nil], - ] +mounts = { '/nix/store' => nil, + '/dev' => nil, + '/proc' => nil, + '/sys' => nil, + '/etc' => 'host-etc', + '/tmp' => 'host-tmp', + '/home' => nil, + '/var' => nil, + '/run' => nil, + '/root' => nil, + } # Propagate environment variables envvars = [ 'TERM', @@ -65,8 +65,22 @@ abort "Usage: chrootenv swdir program args..." unless ARGV.length >= 2 swdir = Pathname.new ARGV[0] execp = ARGV.drop 1 +# Populate extra mounts +if not ENV["CHROOTENV_EXTRA_BINDS"].nil? + for extra in ENV["CHROOTENV_EXTRA_BINDS"].split(':') + paths = extra.split('=') + if not paths.empty? + if paths.size <= 2 + mounts[paths[0]] = paths[1] + else + $stderr.puts "Ignoring invalid entry in CHROOTENV_EXTRA_BINDS: #{extra}" + end + end + end +end + # Set destination paths for mounts -mounts.map! { |x| [x[0], x[1].nil? ? x[0].sub(/^\/*/, '') : x[1]] } +mounts = mounts.map { |k, v| [k, v.nil? ? k.sub(/^\/*/, '') : v] }.to_h # Create temporary directory for root and chdir root = Dir.mktmpdir 'chrootenv' @@ -97,10 +111,10 @@ if $cpid == 0 write_file '/proc/self/gid_map', "#{gid} #{gid} 1" # Do rbind mounts. - mounts.each do |x| - to = "#{root}/#{x[1]}" + mounts.each do |from, rto| + to = "#{root}/#{rto}" FileUtils.mkdir_p to - $mount.call x[0], to, nil, MS_BIND | MS_REC, nil + $mount.call from, to, nil, MS_BIND | MS_REC, nil end # Chroot! @@ -108,7 +122,7 @@ if $cpid == 0 Dir.chdir '/' # Symlink swdir hierarchy - mount_dirs = Set.new mounts.map { |x| Pathname.new x[1] } + mount_dirs = Set.new mounts.map { |_, v| Pathname.new v } link_swdir = lambda do |swdir, prefix| swdir.find do |path| rel = prefix.join path.relative_path_from(swdir) diff --git a/pkgs/build-support/build-fhs-userenv/default.nix b/pkgs/build-support/build-fhs-userenv/default.nix index 9060c073eee..424adf081ca 100644 --- a/pkgs/build-support/build-fhs-userenv/default.nix +++ b/pkgs/build-support/build-fhs-userenv/default.nix @@ -1,4 +1,4 @@ -{ runCommand, writeText, writeScriptBin, stdenv, ruby } : { env, runScript ? "bash" } : +{ runCommand, lib, writeText, writeScriptBin, stdenv, ruby } : { env, runScript ? "bash", extraBindMounts ? [] } : let name = env.pname; @@ -27,6 +27,7 @@ in runCommand name { passthru.env = runCommand "${name}-shell-env" { shellHook = '' + export CHROOTENV_EXTRA_BINDS="${lib.concatStringsSep ":" extraBindMounts}:$CHROOTENV_EXTRA_BINDS" exec ${chroot-user}/bin/chroot-user ${env} bash -l ${init "bash"} "$(pwd)" ''; } '' @@ -39,6 +40,7 @@ in runCommand name { mkdir -p $out/bin cat <$out/bin/${name} #! ${stdenv.shell} + export CHROOTENV_EXTRA_BINDS="${lib.concatStringsSep ":" extraBindMounts}:\$CHROOTENV_EXTRA_BINDS" exec ${chroot-user}/bin/chroot-user ${env} bash -l ${init runScript} "\$(pwd)" "\$@" EOF chmod +x $out/bin/${name} diff --git a/pkgs/build-support/fetchgitlocal/default.nix b/pkgs/build-support/fetchgitlocal/default.nix index 43fc4b1179d..830133b982d 100644 --- a/pkgs/build-support/fetchgitlocal/default.nix +++ b/pkgs/build-support/fetchgitlocal/default.nix @@ -1,23 +1,40 @@ { runCommand, git, nix }: src: -let hash = import (runCommand "head-hash.nix" - { dummy = builtins.currentTime; - preferLocalBuild = true; } -'' - cd ${toString src} - (${git}/bin/git show && ${git}/bin/git diff) > $out - hash=$(${nix}/bin/nix-hash $out) - echo "\"$hash\"" > $out -''); in +let + srcStr = toString src; -runCommand "local-git-export" - { dummy = hash; - preferLocalBuild = true; } -'' - cd ${toString src} - mkdir -p "$out" - for file in $(${git}/bin/git ls-files); do - mkdir -p "$out/$(dirname $file)" - cp -d $file "$out/$file" || true # don't fail when trying to copy a directory - done -'' + # Adds the current directory (respecting ignored files) to the git store, and returns the hash + gitHashFile = runCommand "put-in-git" { + nativeBuildInputs = [ git ]; + dummy = builtins.currentTime; # impure, do every time + preferLocalBuild = true; + } '' + cd ${srcStr} + ROOT=$(git rev-parse --show-toplevel) # path to repo + + cp $ROOT/.git/index $ROOT/.git/index-user # backup index + git reset # reset index + git add . # add current directory + + # hash of current directory + # remove trailing newline + git rev-parse $(git write-tree) \ + | tr -d '\n' > $out + + mv $ROOT/.git/index-user $ROOT/.git/index # restore index + ''; + + gitHash = builtins.readFile gitHashFile; # cache against git hash + + nixPath = runCommand "put-in-nix" { + nativeBuildInputs = [ git ]; + preferLocalBuild = true; + } '' + mkdir $out + + # dump tar of *current directory* at given revision + git -C ${srcStr} archive --format=tar ${gitHash} \ + | tar xvf - -C $out + ''; + +in nixPath diff --git a/pkgs/build-support/fetchhg/nix-prefetch-hg b/pkgs/build-support/fetchhg/nix-prefetch-hg index a877b217125..7143eecfe5c 100755 --- a/pkgs/build-support/fetchhg/nix-prefetch-hg +++ b/pkgs/build-support/fetchhg/nix-prefetch-hg @@ -1,4 +1,5 @@ -#! /bin/sh -e +#! /usr/bin/env bash +set -e url=$1 rev=$2 diff --git a/pkgs/build-support/fetchurl/builder.sh b/pkgs/build-support/fetchurl/builder.sh index 66792229585..b4c8e1f992c 100644 --- a/pkgs/build-support/fetchurl/builder.sh +++ b/pkgs/build-support/fetchurl/builder.sh @@ -9,7 +9,7 @@ source $mirrorsFile # cryptographic hash of the output anyway). curl="curl \ --location --max-redirs 20 \ - --retry 3 + --retry 3 \ --disable-epsv \ --cookie-jar cookies \ --insecure \ diff --git a/pkgs/build-support/vm/default.nix b/pkgs/build-support/vm/default.nix index c4fefe4d501..5ebb6db8bfe 100644 --- a/pkgs/build-support/vm/default.nix +++ b/pkgs/build-support/vm/default.nix @@ -302,13 +302,13 @@ rec { `run-vm' will be left behind in the temporary build directory that allows you to boot into the VM and debug it interactively. */ - runInLinuxVM = drv: lib.overrideDerivation drv (attrs: { + runInLinuxVM = drv: lib.overrideDerivation drv ({ memSize ? 512, QEMU_OPTS ? "", args, builder, ... }: { requiredSystemFeatures = [ "kvm" ]; builder = "${bash}/bin/sh"; args = ["-e" (vmRunCommand qemuCommandLinux)]; - origArgs = attrs.args; - origBuilder = attrs.builder; - QEMU_OPTS = "${attrs.QEMU_OPTS or ""} -m ${toString (attrs.memSize or 512)}"; + origArgs = args; + origBuilder = builder; + QEMU_OPTS = "${QEMU_OPTS} -m ${toString memSize}"; }); @@ -1688,44 +1688,44 @@ rec { debian70x86_64 = debian7x86_64; debian7i386 = { - name = "debian-7.8-wheezy-i386"; - fullName = "Debian 7.8 Wheezy (i386)"; + name = "debian-7.9-wheezy-i386"; + fullName = "Debian 7.9 Wheezy (i386)"; packagesList = fetchurl { url = mirror://debian/dists/wheezy/main/binary-i386/Packages.bz2; - sha256 = "d86c28cb4f1aa178e678c253944c674a60991a367349e58a90d9a3e939e4e4bc"; + sha256 = "a390176680327fd52d6aada6dd8eee051c94ce49d80f0a68dc90ef51b81c3169"; }; urlPrefix = mirror://debian; packages = commonDebianPackages; }; debian7x86_64 = { - name = "debian-7.8-wheezy-amd64"; - fullName = "Debian 7.8 Wheezy (amd64)"; + name = "debian-7.9-wheezy-amd64"; + fullName = "Debian 7.9 Wheezy (amd64)"; packagesList = fetchurl { url = mirror://debian/dists/wheezy/main/binary-amd64/Packages.bz2; - sha256 = "c8257d74c9411e2f0b9891a21f5dbf5fb088b46d1df043907a4d390b32da2931"; + sha256 = "818d78c648505f91cb99f269178d4f62b56d4209cd51bebbc9bf2bd31c8c7156"; }; urlPrefix = mirror://debian; packages = commonDebianPackages; }; debian8i386 = { - name = "debian-8.1-jessie-i386"; - fullName = "Debian 8.1 Jessie (i386)"; + name = "debian-8.2-jessie-i386"; + fullName = "Debian 8.2 Jessie (i386)"; packagesList = fetchurl { url = mirror://debian/dists/jessie/main/binary-i386/Packages.xz; - sha256 = "e658c2aebc3c0bc529e89de3ad916a71372f0a80161111d86a7dab1026644507"; + sha256 = "f7eda33a296d792d467b84ba608a33f00ff249cb9a385c005586925645d83778"; }; urlPrefix = mirror://debian; packages = commonDebianPackages; }; debian8x86_64 = { - name = "debian-8.1-jessie-amd64"; - fullName = "Debian 8.1 Jessie (amd64)"; + name = "debian-8.2-jessie-amd64"; + fullName = "Debian 8.2 Jessie (amd64)"; packagesList = fetchurl { url = mirror://debian/dists/jessie/main/binary-amd64/Packages.xz; - sha256 = "265907f3cb05aff5f653907e9babd4704902f78cd5e355d4cd4ae590e4d5b043"; + sha256 = "ff1b82b4c767769e594fd482de4ef8f70bce8e9f01fa8ef2d6952def0b071ba0"; }; urlPrefix = mirror://debian; packages = commonDebianPackages; diff --git a/pkgs/data/fonts/culmus/default.nix b/pkgs/data/fonts/culmus/default.nix new file mode 100644 index 00000000000..08783e46cde --- /dev/null +++ b/pkgs/data/fonts/culmus/default.nix @@ -0,0 +1,25 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation rec { + name = "culmus-${version}"; + version = "0.130"; + + src = fetchurl { + url = "mirror://sourceforge/culmus/culmus/${version}/culmus-${version}.tar.gz"; + sha256 = "908583e388bc983a63df4f38f7130eac69fc19539952031408bb3c627846f9c1"; + }; + + installPhase = '' + mkdir -p $out/share/fonts/truetype + cp -v *.ttf $out/share/fonts/truetype/ + ''; + + meta = { + description = "Culmus Hebrew fonts"; + longDescription = "The Culmus project aims at providing the Hebrew-speaking GNU/Linux and Unix community with a basic collection of Hebrew fonts for X Windows."; + platforms = stdenv.lib.platforms.all; + license = stdenv.lib.licenses.gpl2; + homepage = http://culmus.sourceforge.net/; + downloadPage = http://culmus.sourceforge.net/download.html; + }; +} diff --git a/pkgs/data/fonts/fira-mono/default.nix b/pkgs/data/fonts/fira-mono/default.nix index 8299153aa2c..3997ba27719 100644 --- a/pkgs/data/fonts/fira-mono/default.nix +++ b/pkgs/data/fonts/fira-mono/default.nix @@ -1,16 +1,16 @@ { stdenv, fetchurl, unzip }: stdenv.mkDerivation rec { - name = "fira-mono-3.205"; + name = "fira-mono-3.206"; src = fetchurl { - url = http://www.carrois.com/downloads/fira_mono_3_2/FiraMonoFonts3205.zip; - sha256 = "0zd4wy8ksbz0qiiqgl9w7zyh34q8n983dyb44g5dfdcjakj09qlz"; + url = http://www.carrois.com/downloads/fira_mono_3_2/FiraMonoFonts3206.zip; + sha256 = "1z65x0dw5dq6rs6p9wyfrir50rlh95vgzsxr8jcd40nqazw4jhpi"; }; buildInputs = [ unzip ]; phases = [ "unpackPhase" "installPhase" ]; - sourceRoot = "FiraMonoFonts3205"; + sourceRoot = "FiraMonoFonts3206"; installPhase = '' mkdir -p $out/share/fonts/opentype diff --git a/pkgs/data/fonts/fira/default.nix b/pkgs/data/fonts/fira/default.nix index 18373439ab0..f777ae33e0b 100644 --- a/pkgs/data/fonts/fira/default.nix +++ b/pkgs/data/fonts/fira/default.nix @@ -1,16 +1,16 @@ { stdenv, fetchurl, unzip }: stdenv.mkDerivation rec { - name = "fira-4.105"; + name = "fira-4.106"; src = fetchurl { - url = http://www.carrois.com/downloads/fira_4_1/FiraFonts4105.zip; - sha256 = "1857kpn7p7fc1xsmqx9589hk396ggwzd167yc3dmn1mh5dixibfz"; + url = http://www.carrois.com/downloads/fira_4_1/FiraFonts4106.zip; + sha256 = "123xwd7abb96lsla1v579vfpvc7fwixhq78221qxrw4dv8mgf8id"; }; buildInputs = [unzip]; phases = [ "unpackPhase" "installPhase" ]; - sourceRoot = "FiraFonts4105"; + sourceRoot = "FiraFonts4106"; installPhase = '' mkdir -p $out/share/fonts/opentype diff --git a/pkgs/data/misc/geolite-legacy/default.nix b/pkgs/data/misc/geolite-legacy/default.nix index 580af02cdc9..fa704aef097 100644 --- a/pkgs/data/misc/geolite-legacy/default.nix +++ b/pkgs/data/misc/geolite-legacy/default.nix @@ -8,29 +8,29 @@ 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-09-29"; + version = "2015-10-13"; in stdenv.mkDerivation { name = "geolite-legacy-${version}"; srcGeoIP = fetchDB "GeoLiteCountry/GeoIP.dat.gz" "GeoIP.dat.gz" - "11xv6ws0gzyj9bf1j1g67cklkkl6s4wb6z6n7kxjcxnn2274nfy0"; + "066j1mnpzfyd5cp0knvg13v01fdvgv32ggvab0xwyh1pa0c14dv4"; srcGeoIPv6 = fetchDB "GeoIPv6.dat.gz" "GeoIPv6.dat.gz" "1q5vgk522wq5ybhbw86zk8njgg611kc46a22vkrp08vklbni3akz"; srcGeoLiteCity = fetchDB "GeoLiteCity.dat.xz" "GeoIPCity.dat.xz" - "07hx9g6kif75icsblcdk64rq13w2knpns4lrxdbf63mmqbqxj29g"; + "09w7vs13xzji574bykggh8cph992zc4yajvhjh4qrvwrxjmjilw3"; srcGeoLiteCityv6 = fetchDB "GeoLiteCityv6-beta/GeoLiteCityv6.dat.gz" "GeoIPCityv6.dat.gz" - "0f3y1cpjfd4q55a2kvhzsklmmp6k19v9vsdsjxr4sapc8f5fgfc9"; + "0jdgfcy90mk7q25rhb8ymnddkskmp2cmyzmbjr3ij0zvbbpzxl4i"; srcGeoIPASNum = fetchDB "asnum/GeoIPASNum.dat.gz" "GeoIPASNum.dat.gz" - "1b8rk3crnm94ndlkw99h7iyn9daznf7sirck1zs80ppg7c69gknp"; + "0j73lw2i6nnx1mgp1hspfa95zca5h0hqj12g16rln7pss868wnwi"; srcGeoIPASNumv6 = fetchDB "asnum/GeoIPASNumv6.dat.gz" "GeoIPASNumv6.dat.gz" - "06hwj3ksfz4ikh84cqcdl1xi4rkrc9cz26h31vg9w5awx5kbbc10"; + "1id4rkxp5pppr274y276w2zmx44dn0h44d4ax780g8cbhlc9n2br"; meta = with stdenv.lib; { inherit version; diff --git a/pkgs/desktops/gnome-2/platform/gnome-common/default.nix b/pkgs/desktops/gnome-2/platform/gnome-common/default.nix index 6cb8ff336a0..c00f0a9c37b 100644 --- a/pkgs/desktops/gnome-2/platform/gnome-common/default.nix +++ b/pkgs/desktops/gnome-2/platform/gnome-common/default.nix @@ -12,6 +12,7 @@ stdenv.mkDerivation rec { propagatedBuildInputs = [ which ]; # autogen.sh which is using gnome_common tends to require which patches = [(fetchurl { + name = "gnome-common-patch"; url = "https://bug697543.bugzilla-attachments.gnome.org/attachment.cgi?id=240935"; sha256 = "17abp7czfzirjm7qsn2czd03hdv9kbyhk3lkjxg2xsf5fky7z7jl"; })]; diff --git a/pkgs/desktops/gnome-3/3.16/core/gnome-common/default.nix b/pkgs/desktops/gnome-3/3.16/core/gnome-common/default.nix index 98b7a1f8b63..2762b3fa33b 100644 --- a/pkgs/desktops/gnome-3/3.16/core/gnome-common/default.nix +++ b/pkgs/desktops/gnome-3/3.16/core/gnome-common/default.nix @@ -11,6 +11,7 @@ in stdenv.mkDerivation rec { }; patches = [(fetchurl { + name = "gnome-common-3-patch"; url = "https://bug697543.bugzilla-attachments.gnome.org/attachment.cgi?id=240935"; sha256 = "17abp7czfzirjm7qsn2czd03hdv9kbyhk3lkjxg2xsf5fky7z7jl"; })]; diff --git a/pkgs/desktops/gnome-3/3.16/misc/geary/default.nix b/pkgs/desktops/gnome-3/3.16/misc/geary/default.nix index 11655edded0..9ed8494098d 100644 --- a/pkgs/desktops/gnome-3/3.16/misc/geary/default.nix +++ b/pkgs/desktops/gnome-3/3.16/misc/geary/default.nix @@ -5,14 +5,15 @@ , gnome3, librsvg, gnome_doc_utils, webkitgtk }: let - majorVersion = "0.8"; + majorVersion = "0.10"; + minorVersion = "0"; in stdenv.mkDerivation rec { - name = "geary-${majorVersion}.2"; + name = "geary-${majorVersion}.${minorVersion}"; src = fetchurl { url = "mirror://gnome/sources/geary/${majorVersion}/${name}.tar.xz"; - sha256 = "3cfa626168935acf49c9415fad54c7849f17fd833026cfd3c224ba0fb892d641"; + sha256 = "46197a5a1b8b040adcee99082dbfd9fff9ca804e3bf0055a2e90b13214bdbca5"; }; propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; @@ -39,7 +40,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - patches = [ ./disable_valadoc.patch ]; + # patches = [ ./disable_valadoc.patch ]; patchFlags = "-p0"; meta = with stdenv.lib; { diff --git a/pkgs/desktops/plasma-5.3/default.nix b/pkgs/desktops/plasma-5.3/default.nix index ec9873390e5..80c04a38a48 100644 --- a/pkgs/desktops/plasma-5.3/default.nix +++ b/pkgs/desktops/plasma-5.3/default.nix @@ -158,7 +158,7 @@ let breeze-qt4 = overrideDerivation super.breeze (drv: { name = "breeze-qt4-${version}"; buildInputs = [ pkgs.xorg.xproto pkgs.kde4.kdelibs pkgs.qt4 ]; - nativeBuildInputs = [ scope.cmake pkgs.pkgconfig ]; + nativeBuildInputs = [ pkgs.automoc4 scope.cmake pkgs.pkgconfig ]; cmakeFlags = [ "-DUSE_KDE4=ON" "-DQT_QMAKE_EXECUTABLE=${scope.qt4}/bin/qmake" diff --git a/pkgs/desktops/plasma-5.4/default.nix b/pkgs/desktops/plasma-5.4/default.nix index db8747d74bd..af2602c9afd 100644 --- a/pkgs/desktops/plasma-5.4/default.nix +++ b/pkgs/desktops/plasma-5.4/default.nix @@ -11,7 +11,7 @@ let inherit (pkgs) lib stdenv symlinkJoin; - kf5 = pkgs.kf513; + kf5 = pkgs.kf514; kdeApps = pkgs.kdeApps_15_08; srcs = import ./srcs.nix { inherit (pkgs) fetchurl; inherit mirror; }; diff --git a/pkgs/desktops/plasma-5.4/fetchsrcs.sh b/pkgs/desktops/plasma-5.4/fetchsrcs.sh index e2c5bdc9d69..a9256c5014e 100755 --- a/pkgs/desktops/plasma-5.4/fetchsrcs.sh +++ b/pkgs/desktops/plasma-5.4/fetchsrcs.sh @@ -1,37 +1,46 @@ #! /usr/bin/env nix-shell -#! nix-shell -i bash -p coreutils findutils gnused nix wget +#! nix-shell -i bash -p coreutils findutils gawk gnused nix wget set -x # The trailing slash at the end is necessary! -RELEASE_URL="http://download.kde.org/stable/plasma/5.4.1/" +RELEASE_URL="http://download.kde.org/stable/plasma/5.4.2/" EXTRA_WGET_ARGS='-A *.tar.xz' mkdir tmp; cd tmp +rm -f ../srcs.csv + wget -nH -r -c --no-parent $RELEASE_URL $EXTRA_WGET_ARGS +find . | while read src; do + if [[ -f "${src}" ]]; then + # Sanitize file name + filename=$(basename "$src" | tr '@' '_') + nameVersion="${filename%.tar.*}" + name=$(echo "$nameVersion" | sed -e 's,-[[:digit:]].*,,' | sed -e 's,-opensource-src$,,') + version=$(echo "$nameVersion" | sed -e 's,^\([[:alpha:]][[:alnum:]]*-\)\+,,') + echo "$name,$version,$src,$filename" >>../srcs.csv + fi +done + cat >../srcs.nix <>../srcs.nix <>../srcs.nix <>../srcs.nix +rm -f ../srcs.csv + cd .. diff --git a/pkgs/desktops/plasma-5.4/srcs.nix b/pkgs/desktops/plasma-5.4/srcs.nix index f9fa3250938..6bc3916f2c0 100644 --- a/pkgs/desktops/plasma-5.4/srcs.nix +++ b/pkgs/desktops/plasma-5.4/srcs.nix @@ -1,301 +1,301 @@ -# DO NOT EDIT! This file is generated automatically by manifest.sh +# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh { fetchurl, mirror }: { - plasma-nm = { - version = "5.4.1"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.1/plasma-nm-5.4.1.tar.xz"; - sha256 = "02rx63ff95nhq2i5hndk93mxixkzf46gp792768i93ss50wjr1li"; - name = "plasma-nm-5.4.1.tar.xz"; - }; - }; - kmenuedit = { - version = "5.4.1"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.1/kmenuedit-5.4.1.tar.xz"; - sha256 = "1h0zv6ksfw3ym88y3v5yxwwmw8m9cqbwbrsca0rxa4dc43vinn5m"; - name = "kmenuedit-5.4.1.tar.xz"; - }; - }; - kdecoration = { - version = "5.4.1"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.1/kdecoration-5.4.1.tar.xz"; - sha256 = "04jz0b0cx5hwiws5f5d72zd6rr3hqchlbm5qd3xjhq9m8rdb28yv"; - name = "kdecoration-5.4.1.tar.xz"; - }; - }; - user-manager = { - version = "5.4.1"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.1/user-manager-5.4.1.tar.xz"; - sha256 = "19srb9dxl1693grjjbqbb4wl1bg7vp50dhsx82mgg09b4vs2szcp"; - name = "user-manager-5.4.1.tar.xz"; - }; - }; - powerdevil = { - version = "5.4.1"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.1/powerdevil-5.4.1.tar.xz"; - sha256 = "1l467ijhn7h6b0v5ms8vxpjprd4hjdnhplf0k5k0ynj5cgyk96vh"; - name = "powerdevil-5.4.1.tar.xz"; - }; - }; - libkscreen = { - version = "5.4.1"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.1/libkscreen-5.4.1.tar.xz"; - sha256 = "07m340kcajhf0dslcy68msh1zn6gnc58nsxyqasbkikwv9sx4v7r"; - name = "libkscreen-5.4.1.tar.xz"; - }; - }; - kwallet-pam = { - version = "5.4.1"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.1/kwallet-pam-5.4.1.tar.xz"; - sha256 = "0y9b2r4cpmj8gidqzc2j9ki09fb76gp1958v2kkbalma9g0689kc"; - name = "kwallet-pam-5.4.1.tar.xz"; - }; - }; - plasma-pa = { - version = "5.4.1"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.1/plasma-pa-5.4.1.tar.xz"; - sha256 = "0c0lzhv8fnkb1359n181ys5bwm9pzfw6g4f7pxrx9vlqqhjbr06p"; - name = "plasma-pa-5.4.1.tar.xz"; - }; - }; - ksysguard = { - version = "5.4.1"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.1/ksysguard-5.4.1.tar.xz"; - sha256 = "1n9sddx54i6xnr8xk65wbdyl6mpnfmdgzqllc534zj2nq9lgcpfj"; - name = "ksysguard-5.4.1.tar.xz"; - }; - }; bluedevil = { - version = "5.4.1"; + version = "5.4.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.4.1/bluedevil-5.4.1.tar.xz"; - sha256 = "1sy3v1fq2mw2mjy3xd183g8fpkjwlmz6sp384qzk55nav7clbjfq"; - name = "bluedevil-5.4.1.tar.xz"; - }; - }; - milou = { - version = "5.4.1"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.1/milou-5.4.1.tar.xz"; - sha256 = "0n2c94d8kza8m0gl93waa66r52ncn6b0yjbks7lszl0zwzi3wqyx"; - name = "milou-5.4.1.tar.xz"; - }; - }; - plasma-workspace-wallpapers = { - version = "5.4.1"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.1/plasma-workspace-wallpapers-5.4.1.tar.xz"; - sha256 = "0p92p3d4m6d8jnbwgfrk8hqij67aa9pvqhzlccn29gr88f1j7wii"; - name = "plasma-workspace-wallpapers-5.4.1.tar.xz"; - }; - }; - kde-cli-tools = { - version = "5.4.1"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.1/kde-cli-tools-5.4.1.tar.xz"; - sha256 = "02b6w8hxz05s10ajb4vnasy1ayh8a9skw26asy20zvkm3xn32pc1"; - name = "kde-cli-tools-5.4.1.tar.xz"; - }; - }; - kwin = { - version = "5.4.1"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.1/kwin-5.4.1.tar.xz"; - sha256 = "0mx95pwlvx7kfzmp6jcihaw3dmgjjrsizmv5baq8mgravp9zzglw"; - name = "kwin-5.4.1.tar.xz"; - }; - }; - muon = { - version = "5.4.1"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.1/muon-5.4.1.tar.xz"; - sha256 = "0g229c2h4k3qdhzhc4sq0vlnwvbmb6qp3d4lix4q65mgnamz4lwc"; - name = "muon-5.4.1.tar.xz"; - }; - }; - oxygen = { - version = "5.4.1"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.1/oxygen-5.4.1.tar.xz"; - sha256 = "0a880jm8islbcqp08vwd9srn2kqgrn27lsz7wr0mq2b622hsyk1p"; - name = "oxygen-5.4.1.tar.xz"; - }; - }; - plasma-mediacenter = { - version = "5.4.1"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.1/plasma-mediacenter-5.4.1.tar.xz"; - sha256 = "1rnmjhyn83ic77sxybz042ghlzrrfh8ig3ivh9nnshzv8gf58bpx"; - name = "plasma-mediacenter-5.4.1.tar.xz"; - }; - }; - kwrited = { - version = "5.4.1"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.1/kwrited-5.4.1.tar.xz"; - sha256 = "0y1ag8syf1g3mmzyr0hci4xcpxs85qh54jzwkj98xghb316akdrs"; - name = "kwrited-5.4.1.tar.xz"; - }; - }; - plasma-sdk = { - version = "5.4.1"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.1/plasma-sdk-5.4.1.tar.xz"; - sha256 = "03qazkqi3x5r8bsf7v73qsqnfgv60q12bv2hmg7rf637rbk1ys7s"; - name = "plasma-sdk-5.4.1.tar.xz"; - }; - }; - ksshaskpass = { - version = "5.4.1"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.1/ksshaskpass-5.4.1.tar.xz"; - sha256 = "1yjp78p4r5a9ldba5nda8ly8r71zm8niyd0vz262cr14n36l0j52"; - name = "ksshaskpass-5.4.1.tar.xz"; - }; - }; - plasma-desktop = { - version = "5.4.1"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.1/plasma-desktop-5.4.1.tar.xz"; - sha256 = "1a3jllmyk12smpf9fczwkkvfp6ljcsy4m271d9wfahl4adwiycjq"; - name = "plasma-desktop-5.4.1.tar.xz"; - }; - }; - sddm-kcm = { - version = "5.4.1"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.1/sddm-kcm-5.4.1.tar.xz"; - sha256 = "1vpwn7ybcz5qpx3v2yvhpdcwlicw34gmfy8yi6j199i4kba2c38l"; - name = "sddm-kcm-5.4.1.tar.xz"; - }; - }; - systemsettings = { - version = "5.4.1"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.1/systemsettings-5.4.1.tar.xz"; - sha256 = "0nadq4gsv3caz8x237hvphc05zl15fpaanr1m0s2svg84k251k5l"; - name = "systemsettings-5.4.1.tar.xz"; - }; - }; - kwayland-integration = { - version = "5.4.1"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.1/kwayland-integration-5.4.1.tar.xz"; - sha256 = "1hcvnbfzzc7rrbi48ar6hjlvj7mhii23lzlbvaizaqv3x8bgpvd7"; - name = "kwayland-integration-5.4.1.tar.xz"; - }; - }; - polkit-kde-agent = { - version = "1-5.4.1"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.1/polkit-kde-agent-1-5.4.1.tar.xz"; - sha256 = "1g11kdv9wkqcn4gaijw7j71hkbfg5vi7vci8n880w536l173aa2i"; - name = "polkit-kde-agent-1-5.4.1.tar.xz"; - }; - }; - libksysguard = { - version = "5.4.1"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.1/libksysguard-5.4.1.tar.xz"; - sha256 = "03vffsn2bnx26svmm7rpl4rlvnb8kmrqmivqdi55q69fsxdrz1wp"; - name = "libksysguard-5.4.1.tar.xz"; - }; - }; - plasma-workspace = { - version = "5.4.1"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.1/plasma-workspace-5.4.1.tar.xz"; - sha256 = "158p70m0dda84c2mskw5xczqr5p8773nb3fibl8h2lw1bn4db130"; - name = "plasma-workspace-5.4.1.tar.xz"; - }; - }; - kgamma5 = { - version = "5.4.1"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.1/kgamma5-5.4.1.tar.xz"; - sha256 = "1402cvwl9xjlzqi2z6hx59w388xqhh88igaxz0mwmfnlk6fdvrkv"; - name = "kgamma5-5.4.1.tar.xz"; - }; - }; - kde-gtk-config = { - version = "5.4.1"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.1/kde-gtk-config-5.4.1.tar.xz"; - sha256 = "0g86ij6pqlmcjvaw7gc1n7mqf6v6nywsq874nkvja18k9yvr2cc3"; - name = "kde-gtk-config-5.4.1.tar.xz"; - }; - }; - kscreen = { - version = "5.4.1"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.1/kscreen-5.4.1.tar.xz"; - sha256 = "00kb1jrdq2hklkq5svjfpmfd4jj8c9mzi5r3kx96hlnwz9abfjcv"; - name = "kscreen-5.4.1.tar.xz"; - }; - }; - kdeplasma-addons = { - version = "5.4.1"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.1/kdeplasma-addons-5.4.1.tar.xz"; - sha256 = "0fn5z1p5hs9l0ggi62b0wyqpc4wyaaf49921zjn11nb8qs4y0vg1"; - name = "kdeplasma-addons-5.4.1.tar.xz"; - }; - }; - khotkeys = { - version = "5.4.1"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.1/khotkeys-5.4.1.tar.xz"; - sha256 = "07wsf7257b48adn22x7dkws3ifdp9flw51spxk5nqyscs15dljm2"; - name = "khotkeys-5.4.1.tar.xz"; - }; - }; - oxygen-fonts = { - version = "5.4.1"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.1/oxygen-fonts-5.4.1.tar.xz"; - sha256 = "0qybgwqz7v37mlqs2gprmxaz5k2dlya3fvcq4kz96zmgrskwlv6v"; - name = "oxygen-fonts-5.4.1.tar.xz"; + url = "${mirror}/stable/plasma/5.4.2/bluedevil-5.4.2.tar.xz"; + sha256 = "1axx5bf7sdi81jccfa8r5pqz2figr0zkww4inpr9zsgs9xpv9dd0"; + name = "bluedevil-5.4.2.tar.xz"; }; }; breeze = { - version = "5.4.1"; + version = "5.4.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.4.1/breeze-5.4.1.tar.xz"; - sha256 = "0dram0iy3ym4rhxbmv1ssv52avmmqk694b7ja7b9zr7krm1n8gyh"; - name = "breeze-5.4.1.tar.xz"; + url = "${mirror}/stable/plasma/5.4.2/breeze-5.4.2.tar.xz"; + sha256 = "17l55qv1lc2xas7qj4m9kgvwvy506awwji0ngsn0cc0kgy362a4x"; + name = "breeze-5.4.2.tar.xz"; }; }; - kinfocenter = { - version = "5.4.1"; + kde-cli-tools = { + version = "5.4.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.4.1/kinfocenter-5.4.1.tar.xz"; - sha256 = "17j7akqi3av4b790c40cva2b9vissyzv8kf1mj5b4mxwhrjlhbrj"; - name = "kinfocenter-5.4.1.tar.xz"; + url = "${mirror}/stable/plasma/5.4.2/kde-cli-tools-5.4.2.tar.xz"; + sha256 = "0hcc1cjshwvqxqpac7ybc58s96ar9h6d9ga4vrxrly0ci6wp8r32"; + name = "kde-cli-tools-5.4.2.tar.xz"; + }; + }; + kdecoration = { + version = "5.4.2"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.4.2/kdecoration-5.4.2.tar.xz"; + sha256 = "0l500c0xzlszgn70fxa3qix40v18dcqw3989xjviqxq9wzjaww3x"; + name = "kdecoration-5.4.2.tar.xz"; + }; + }; + kde-gtk-config = { + version = "5.4.2"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.4.2/kde-gtk-config-5.4.2.tar.xz"; + sha256 = "0h23nnyhgvrvhs30g0cysf0z7mfgcz1d1gqzbmhzqa5an2k7h70x"; + name = "kde-gtk-config-5.4.2.tar.xz"; + }; + }; + kdeplasma-addons = { + version = "5.4.2"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.4.2/kdeplasma-addons-5.4.2.tar.xz"; + sha256 = "0i634ch5xy3b12lr850v8q0ip6648i6jz6zskrr55pndgfazrkfk"; + name = "kdeplasma-addons-5.4.2.tar.xz"; + }; + }; + kgamma5 = { + version = "5.4.2"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.4.2/kgamma5-5.4.2.tar.xz"; + sha256 = "02z6llrxrh8z92z4xq1p94sxg0slmy24x7c6m9g110grgq724x3y"; + name = "kgamma5-5.4.2.tar.xz"; }; }; khelpcenter = { - version = "5.4.1"; + version = "5.4.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.4.1/khelpcenter-5.4.1.tar.xz"; - sha256 = "11aszn2ha1wjpdyfr25by963krsmgflqj30fmkns2la1axqq19x9"; - name = "khelpcenter-5.4.1.tar.xz"; + url = "${mirror}/stable/plasma/5.4.2/khelpcenter-5.4.2.tar.xz"; + sha256 = "0v25297ahnxa443jf182pfyp0wcjybdn820sagrs3w8238i3y5v6"; + name = "khelpcenter-5.4.2.tar.xz"; + }; + }; + khotkeys = { + version = "5.4.2"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.4.2/khotkeys-5.4.2.tar.xz"; + sha256 = "1hs4r94fz3zj2p76f46cyi8bqwznpcz0k7cjhbrkr8a94ld31v33"; + name = "khotkeys-5.4.2.tar.xz"; + }; + }; + kinfocenter = { + version = "5.4.2"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.4.2/kinfocenter-5.4.2.tar.xz"; + sha256 = "1p9bvsshz1z1w016inxk8f0da7p336192gjv5lw4x9kksh6bazhq"; + name = "kinfocenter-5.4.2.tar.xz"; + }; + }; + kmenuedit = { + version = "5.4.2"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.4.2/kmenuedit-5.4.2.tar.xz"; + sha256 = "0jv2yf2i17h1q2dhd88wj1ywr7hfnzpfpjhmab15wq1aan7rw9v5"; + name = "kmenuedit-5.4.2.tar.xz"; + }; + }; + kscreen = { + version = "5.4.2"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.4.2/kscreen-5.4.2.tar.xz"; + sha256 = "0liiiaqpnbi49viqxf0ds5j187f3r11aw1kf4y961y9nkzqidwlp"; + name = "kscreen-5.4.2.tar.xz"; + }; + }; + ksshaskpass = { + version = "5.4.2"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.4.2/ksshaskpass-5.4.2.tar.xz"; + sha256 = "13ma9dx5l7bzv9yq6bcq7x17pizrgyc6sh1bki56dj8g3xfsvmrb"; + name = "ksshaskpass-5.4.2.tar.xz"; + }; + }; + ksysguard = { + version = "5.4.2"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.4.2/ksysguard-5.4.2.tar.xz"; + sha256 = "1cy7z5723w0757184lq8bjv7i5l54ykmq12r6ydlh104fmpzq3fm"; + name = "ksysguard-5.4.2.tar.xz"; + }; + }; + kwallet-pam = { + version = "5.4.2"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.4.2/kwallet-pam-5.4.2.tar.xz"; + sha256 = "0sc9ld5n2j1icfzjni9xcn9v8ix8iszkg3qf1mp6lqw4rnx3z00l"; + name = "kwallet-pam-5.4.2.tar.xz"; }; }; kwayland = { - version = "5.4.1"; + version = "5.4.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.4.1/kwayland-5.4.1.tar.xz"; - sha256 = "0irw68c9vn4c2jaqll442wr3f6wzj9q2z2qfl5qpq3vb9lpzfafg"; - name = "kwayland-5.4.1.tar.xz"; + url = "${mirror}/stable/plasma/5.4.2/kwayland-5.4.2.tar.xz"; + sha256 = "1h8jy7zdx0hxfjzxgw0ahfr80375wjlqiyiglx2zc8r9q34axswp"; + name = "kwayland-5.4.2.tar.xz"; + }; + }; + kwayland-integration = { + version = "5.4.2"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.4.2/kwayland-integration-5.4.2.tar.xz"; + sha256 = "088hvd665rnf0xlav202jjyqmnipfgan6pbi1mkfpdawwm47vif9"; + name = "kwayland-integration-5.4.2.tar.xz"; + }; + }; + kwin = { + version = "5.4.2"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.4.2/kwin-5.4.2.tar.xz"; + sha256 = "14a11l63mz0n2sgnjpbphbaqszafsk37ydm0dz36184m194jcj90"; + name = "kwin-5.4.2.tar.xz"; + }; + }; + kwrited = { + version = "5.4.2"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.4.2/kwrited-5.4.2.tar.xz"; + sha256 = "0hl8v28wh223w2disbc9qhfpqb85wq2mzv49yi6fimlwkx1318s7"; + name = "kwrited-5.4.2.tar.xz"; + }; + }; + libkscreen = { + version = "5.4.2"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.4.2/libkscreen-5.4.2.tar.xz"; + sha256 = "0p2z22j7xflzk4v6ilyz3970pn6p9q4bcwjkakv29b2arpli28ys"; + name = "libkscreen-5.4.2.tar.xz"; + }; + }; + libksysguard = { + version = "5.4.2"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.4.2/libksysguard-5.4.2.tar.xz"; + sha256 = "02m99j8ziskrdf1l323wzkn99bi6vg5yz9bpgcih9jz7d70pc8vi"; + name = "libksysguard-5.4.2.tar.xz"; + }; + }; + milou = { + version = "5.4.2"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.4.2/milou-5.4.2.tar.xz"; + sha256 = "05jk76pbgfvgj1jdq6afg0a6b1axp1h3minrxkgly0qc42rwlc9z"; + name = "milou-5.4.2.tar.xz"; + }; + }; + muon = { + version = "5.4.2"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.4.2/muon-5.4.2.tar.xz"; + sha256 = "0cnkp9bifiga0h2z01fkiivf137b2sq8wjfv8jh00avfqhr9p6z4"; + name = "muon-5.4.2.tar.xz"; + }; + }; + oxygen = { + version = "5.4.2"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.4.2/oxygen-5.4.2.tar.xz"; + sha256 = "0fi2wh6vngsh66j7sk43bvrci06ddj88f1plsh9by96617s1sr36"; + name = "oxygen-5.4.2.tar.xz"; + }; + }; + oxygen-fonts = { + version = "5.4.2"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.4.2/oxygen-fonts-5.4.2.tar.xz"; + sha256 = "1dvxlgsznxfa1wk4qcanfi9s58c85i1ja651lh1pjp423d1j1kkl"; + name = "oxygen-fonts-5.4.2.tar.xz"; + }; + }; + plasma-desktop = { + version = "5.4.2"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.4.2/plasma-desktop-5.4.2.tar.xz"; + sha256 = "19ys6ymk82ash13cyq89y8yqx5lylvw9l84d3qpj4z0pmjmzp0qg"; + name = "plasma-desktop-5.4.2.tar.xz"; + }; + }; + plasma-mediacenter = { + version = "5.4.2"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.4.2/plasma-mediacenter-5.4.2.tar.xz"; + sha256 = "0ni3a0f9f7df9nhqz035j5vj3bzhsq9zxb19p281pww4slh7y0if"; + name = "plasma-mediacenter-5.4.2.tar.xz"; + }; + }; + plasma-nm = { + version = "5.4.2"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.4.2/plasma-nm-5.4.2.tar.xz"; + sha256 = "1lny7sjxr7mi77gb3dy6afmbvfdgfq4rlffaxzffx5bq62gaws68"; + name = "plasma-nm-5.4.2.tar.xz"; + }; + }; + plasma-pa = { + version = "5.4.2"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.4.2/plasma-pa-5.4.2.tar.xz"; + sha256 = "09irn20ikgi58hq5bwg6kmaqqy7h9hkbkadnyv478qxff81wis4i"; + name = "plasma-pa-5.4.2.tar.xz"; + }; + }; + plasma-sdk = { + version = "5.4.2"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.4.2/plasma-sdk-5.4.2.tar.xz"; + sha256 = "1q4kjml04mdkzcdqi8mbr3c7037339v0knzc38km8szpf995w750"; + name = "plasma-sdk-5.4.2.tar.xz"; + }; + }; + plasma-workspace = { + version = "5.4.2"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.4.2/plasma-workspace-5.4.2.tar.xz"; + sha256 = "0byj4fljiyag781jz3zs5chz48h22gqqc4hb8ha9nfsk615v1irn"; + name = "plasma-workspace-5.4.2.tar.xz"; + }; + }; + plasma-workspace-wallpapers = { + version = "5.4.2"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.4.2/plasma-workspace-wallpapers-5.4.2.tar.xz"; + sha256 = "18ggsdjmdcgbpamjynv068rzx5cqpm00b3a2a1ygkc04d5y430js"; + name = "plasma-workspace-wallpapers-5.4.2.tar.xz"; + }; + }; + polkit-kde-agent = { + version = "1-5.4.2"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.4.2/polkit-kde-agent-1-5.4.2.tar.xz"; + sha256 = "0s0z0xkfps0vk6rr013n2vww7s1a77z5jzqk500xl692g8dc2cdh"; + name = "polkit-kde-agent-1-5.4.2.tar.xz"; + }; + }; + powerdevil = { + version = "5.4.2"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.4.2/powerdevil-5.4.2.tar.xz"; + sha256 = "01qsm0byvjy6slbhz6k6bikbzn35jhchcaxcis1x3c1gczhvzajw"; + name = "powerdevil-5.4.2.tar.xz"; + }; + }; + sddm-kcm = { + version = "5.4.2"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.4.2/sddm-kcm-5.4.2.tar.xz"; + sha256 = "0x662plyyf3krfpp4ifsd9ddwwvrfds63v6cclzir5cs9db0rs0j"; + name = "sddm-kcm-5.4.2.tar.xz"; + }; + }; + systemsettings = { + version = "5.4.2"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.4.2/systemsettings-5.4.2.tar.xz"; + sha256 = "0cq7b3kas7qky199x54770dh4yd2xkbvs9j0cja90vgy4f2vacbs"; + name = "systemsettings-5.4.2.tar.xz"; + }; + }; + user-manager = { + version = "5.4.2"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.4.2/user-manager-5.4.2.tar.xz"; + sha256 = "1ikx55yflf8j4f88mdybzk9yfhk24j48h3f6brx6ic2f2dcl7lzm"; + name = "user-manager-5.4.2.tar.xz"; }; }; } diff --git a/pkgs/development/compilers/cmucl/binary.nix b/pkgs/development/compilers/cmucl/binary.nix index 027857ccda0..1276b1500a1 100644 --- a/pkgs/development/compilers/cmucl/binary.nix +++ b/pkgs/development/compilers/cmucl/binary.nix @@ -2,7 +2,7 @@ let inherit (stdenv) system; - version = "20b"; + version = "21a"; downloadUrl = arch: "http://common-lisp.net/project/cmucl/downloads/release/" + "${version}/cmucl-${version}-${arch}.tar.bz2"; @@ -13,7 +13,7 @@ let dist = if system == "i686-linux" then fetchDist { arch = "x86-linux"; - sha256 = "1s00r1kszk5zhmv7m8z5q2wcqjn2gn7fbqwji3hgnsdvbb1f3jdn"; + sha256 = "0w8dcaiasfd4fbj340zaf6wcjfgc4wzkvr24gbxa5rr3aw10rl02"; } else throw "Unsupported platform for cmucl."; in diff --git a/pkgs/development/compilers/ghcjs/default.nix b/pkgs/development/compilers/ghcjs/default.nix index 0c270bfc099..ab1a0f521c6 100644 --- a/pkgs/development/compilers/ghcjs/default.nix +++ b/pkgs/development/compilers/ghcjs/default.nix @@ -41,26 +41,24 @@ let version = "0.1.0"; ghcjsBoot = fetchgit { url = "git://github.com/ghcjs/ghcjs-boot.git"; - rev = "ec9f795b42b40fd24933d1672db153df5a29cc00"; # master branch - sha256 = "0bkvqlsgb9n0faayi4k1dlkn9cbm99a66m9nnx1kykb44qcl40yg"; + rev = "39cd58e12f02fa99f493387ba4c3708819a72294"; + sha256 = "0s7hvg60piklrg9ypa7r44l4qzvpinrgsaffak6fr7gd3k08wn9d"; fetchSubmodules = true; }; shims = fetchFromGitHub { owner = "ghcjs"; repo = "shims"; - rev = "01e01dee31a4786b3d01092e72350b0859a9f8c9"; # master branch - sha256 = "01m1yhq6l71azx0zqbpzmqc6rxxf654hgjibc0lz2cg5942wh1hf"; + rev = "f17d10cf47450fe4e00433e988db0bddddb35cc0"; + sha256 = "1kgnkkz1khzkmb0dm0ssp8l17iy9d9n9phszcj6vg9vi7v9y7l05"; }; in mkDerivation (rec { pname = "ghcjs"; inherit version; - # `src` is ghcjs's a3157072c2593debf2e45e751e9a8aa90b860b4d plus this - # additional dependency bump: https://github.com/ghcjs/ghcjs/pull/408 src = fetchFromGitHub { - owner = "k0001"; + owner = "ghcjs"; repo = "ghcjs"; - rev = "1b767e0b3dabdd1561bd17314d472651bfd9b97c"; - sha256 = "0j4vj47qljbcbrp3md3jwxwl2kz9k85visq6yi1x8wdch4wb2kgy"; + rev = "2ae1276a97c9f32c4b02080d1bb363cf0c2c553c"; + sha256 = "18m1737w4bfn84cnwcf021gsy69c84dlkwxnyf4r5h97gly6jx7q"; }; isLibrary = true; isExecutable = true; diff --git a/pkgs/development/compilers/julia/0.2.nix b/pkgs/development/compilers/julia/0.2.nix deleted file mode 100644 index 9d585e07fe1..00000000000 --- a/pkgs/development/compilers/julia/0.2.nix +++ /dev/null @@ -1,143 +0,0 @@ -{ stdenv, fetchgit, gfortran, perl, m4, llvm, gmp, pcre, zlib - , readline, fftwSinglePrec, fftw, libunwind, suitesparse, glpk, fetchurl - , ncurses, libunistring, lighttpd, patchelf, openblas - , tcl, tk, xproto, libX11, git, mpfr - } : -let - realGcc = stdenv.cc.cc; -in -stdenv.mkDerivation rec { - pname = "julia"; - version = "0.2.1"; - name = "${pname}-${version}"; - - grisu_ver = "1.1.1"; - dsfmt_ver = "2.2"; - openblas_ver = "v0.2.2"; - lapack_ver = "3.4.1"; - arpack_ver = "3.1.3"; - clp_ver = "1.14.5"; - lighttpd_ver = "1.4.29"; - patchelf_ver = "0.6"; - pcre_ver = "8.31"; - - grisu_src = fetchurl { - url = "http://double-conversion.googlecode.com/files/double-conversion-${grisu_ver}.tar.gz"; - sha256 = "e1cabb73fd69e74f145aea91100cde483aef8b79dc730fcda0a34466730d4d1d"; - }; - dsfmt_src = fetchurl { - url = "http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/SFMT/dSFMT-src-${dsfmt_ver}.tar.gz"; - name = "dsfmt-${dsfmt_ver}.tar.gz"; - sha256 = "bc3947a9b2253a869fcbab8ff395416cb12958be9dba10793db2cd7e37b26899"; - }; - openblas_src = fetchurl { - url = "https://github.com/xianyi/OpenBLAS/tarball/${openblas_ver}"; - name = "openblas-${openblas_ver}.tar.gz"; - sha256 = "19ffec70f9678f5c159feadc036ca47720681b782910fbaa95aa3867e7e86d8e"; - }; - arpack_src = fetchurl { - url = "http://forge.scilab.org/index.php/p/arpack-ng/downloads/607/get/"; - name = "arpack-ng-${arpack_ver}.tar.gz"; - sha256 = "039w7j3dr1xy35a3hp92zg2g92gmjq6xsv0g4awlb4cffy09nr2d"; - }; - lapack_src = fetchurl { - url = "http://www.netlib.org/lapack/lapack-${lapack_ver}.tgz"; - name = "lapack-${lapack_ver}.tgz"; - sha256 = "93b910f94f6091a2e71b59809c4db4a14655db527cfc5821ade2e8c8ab75380f"; - }; - clp_src = fetchurl { - url = "http://www.coin-or.org/download/source/Clp/Clp-${clp_ver}.tgz"; - name = "clp-${clp_ver}.tar.gz"; - sha256 = "e6cabe8b4319c17a9bbe6fe172194ab6cd1fe6e376f5e9969d3040636ea3a817"; - }; - lighttpd_src = fetchurl { - url = "http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-${lighttpd_ver}.tar.gz"; - sha256 = "ff9f4de3901d03bb285634c5b149191223d17f1c269a16c863bac44238119c85"; - }; - patchelf_src = fetchurl { - url = "http://hydra.nixos.org/build/1524660/download/2/patchelf-${patchelf_ver}.tar.bz2"; - sha256 = "00bw29vdsscsili65wcb5ay0gvg1w0ljd00sb5xc6br8bylpyzpw"; - }; - pcre_src = fetchurl { - url = "ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-${pcre_ver}.tar.bz2"; - sha256 = "0g4c0z4h30v8g8qg02zcbv7n67j5kz0ri9cfhgkpwg276ljs0y2p"; - }; - - src = fetchgit { - url = "git://github.com/JuliaLang/julia.git"; - rev = "refs/tags/v${version}"; - sha256 = "7ee0f267bc1ae286764ced3c0c695c335a6f8d67bd7b3ca7e4de259333c9426a"; - }; - - buildInputs = [ gfortran perl m4 gmp pcre llvm readline zlib - fftw fftwSinglePrec libunwind suitesparse glpk ncurses libunistring patchelf - openblas tcl tk xproto libX11 git mpfr - ]; - - configurePhase = '' - for i in GMP LLVM PCRE LAPACK OPENBLAS BLAS READLINE FFTW LIBUNWIND SUITESPARSE GLPK LIGHTTPD ZLIB MPFR; - do - makeFlags="$makeFlags USE_SYSTEM_$i=1 " - done - makeFlags="$makeFlags JULIA_CPU_TARGET=core2"; - - copy_kill_hash(){ - cp "$1" "$2/$(basename "$1" | sed -e 's/^[a-z0-9]*-//')" - } - - for i in "${grisu_src}" "${dsfmt_src}" "${arpack_src}" "${clp_src}" "${patchelf_src}" "${pcre_src}" ; do - copy_kill_hash "$i" deps - done - copy_kill_hash "${dsfmt_src}" deps/random - - ${if realGcc ==null then "" else - ''export NIX_LDFLAGS="$NIX_LDFLAGS -L${realGcc}/lib -L${realGcc}/lib64 -lpcre -lopenblas -lm -lfftw3f -lfftw3 -lglpk -lunistring -lz -lgmp -lmpfr"''} - export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -fPIC " - - export LDFLAGS="-L${suitesparse}/lib -L$out/lib/julia -Wl,-rpath,$out/lib/julia" - - export GLPK_PREFIX="${glpk}/include" - - sed -e "s@/usr/local/lib@$out/lib@g" -i deps/Makefile - sed -e "s@/usr/lib@$out/lib@g" -i deps/Makefile - - export makeFlags="$makeFlags PREFIX=$out SHELL=${stdenv.shell}" - - export dontPatchELF=1 - - export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$PWD/usr/lib:$PWD/usr/lib/julia" - ''; - - preBuild = '' - mkdir -p usr/lib - - mkdir -p "$out/lib" - ln -s "${openblas}/lib/libopenblas.so" "$out/lib/libblas.so" - ln -s "${openblas}/lib/libopenblas.so" "$out/lib/liblapack.so" - - echo "$out" - ( - cd "$(mktemp -d)" - for i in "${suitesparse}"/lib/lib*.a; do - ar -x $i - done - gcc *.o --shared -o "$out/lib/libsuitesparse.so" - ) - cp "$out/lib/libsuitesparse.so" usr/lib - for i in umfpack cholmod amd camd colamd spqr; do - ln -s libsuitesparse.so "$out"/lib/lib$i.so; - ln -s libsuitesparse.so "usr"/lib/lib$i.so; - done - ''; - - preInstall = '' - ''; - - meta = { - description = "High-level performance-oriented dynamical language for technical computing"; - homepage = "http://julialang.org/"; - license = stdenv.lib.licenses.mit; - maintainers = [ stdenv.lib.maintainers.raskin ]; - platforms = with stdenv.lib.platforms; linux; - }; -} diff --git a/pkgs/development/compilers/julia/0.3.nix b/pkgs/development/compilers/julia/0.3.nix deleted file mode 100644 index 710ddec9c10..00000000000 --- a/pkgs/development/compilers/julia/0.3.nix +++ /dev/null @@ -1,154 +0,0 @@ -{ stdenv, fetchgit, fetchurl -# build tools -, gfortran, git, m4, patchelf, perl, which, python2 -# libjulia dependencies -, libunwind, llvm, readline, utf8proc, zlib -# standard library dependencies -, double_conversion, fftwSinglePrec, fftw, glpk, gmp, mpfr, pcre -# linear algebra -, openblas, arpack, suitesparse -}: - -with stdenv.lib; - -# All dependencies should use the same OpenBLAS. -let - arpack_ = arpack; - suitesparse_ = suitesparse; -in -let - arpack = arpack_.override { inherit openblas; }; - suitesparse = suitesparse_.override { inherit openblas; }; -in - -stdenv.mkDerivation rec { - pname = "julia"; - version = "0.3.11"; - name = "${pname}-${version}"; - - src = fetchgit { - url = "git://github.com/JuliaLang/julia.git"; - rev = "refs/tags/v${version}"; - sha256 = "06xmv2l8hskdh1s5y2dh28vpb5pc0gzmfl5a03yp0qjjsl5cb284"; - name = "julia-git-v${version}"; - }; - - patches = [ ./0001-work-around-buggy-wcwidth.patch ]; - - extraSrcs = - let - dsfmt_ver = "2.2"; - - dsfmt_src = fetchurl { - url = "http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/SFMT/dSFMT-src-${dsfmt_ver}.tar.gz"; - name = "dsfmt-${dsfmt_ver}.tar.gz"; - md5 = "cb61be3be7254eae39684612c524740d"; - }; - - in [ dsfmt_src ]; - - prePatch = '' - copy_kill_hash(){ - cp "$1" "$2/$(basename "$1" | sed -e 's/^[a-z0-9]*-//')" - } - - for i in $extraSrcs; do - copy_kill_hash "$i" deps - done - ''; - - postPatch = '' - sed -i deps/Makefile \ - -e "s@/usr/local/lib@$out/lib@g" \ - -e "s@/usr/lib@$out/lib@g" \ - -e "s@/usr/include/double-conversion@${double_conversion}/include/double-conversion@g" - - patchShebangs . contrib - - # ldconfig doesn't seem to ever work on NixOS; system-wide ldconfig cache - # is probably not what we want anyway on non-NixOS - sed -e "s@/sbin/ldconfig@true@" -i src/ccall.* - ''; - - buildInputs = [ - arpack double_conversion fftw fftwSinglePrec glpk gmp libunwind - llvm mpfr pcre openblas readline suitesparse utf8proc zlib - ]; - - nativeBuildInputs = [ gfortran git m4 patchelf perl python2 which ]; - - makeFlags = - let - arch = head (splitString "-" stdenv.system); - march = { "x86_64" = "x86-64"; "i686" = "i686"; }."${arch}" - or (throw "unsupported architecture: ${arch}"); - in [ - "ARCH=${arch}" - "MARCH=${march}" - "JULIA_CPU_TARGET=${march}" - "PREFIX=$(out)" - "prefix=$(out)" - "SHELL=${stdenv.shell}" - - "USE_SYSTEM_BLAS=1" - "LIBBLAS=-lopenblas" - "LIBBLASNAME=libopenblas" - - "USE_SYSTEM_LAPACK=1" - "LIBLAPACK=-lopenblas" - "LIBLAPACKNAME=libopenblas" - - "USE_SYSTEM_ARPACK=1" - "USE_SYSTEM_FFTW=1" - "USE_SYSTEM_GLPK=1" - "USE_SYSTEM_GMP=1" - "USE_SYSTEM_GRISU=1" - "USE_SYSTEM_LIBUNWIND=1" - "USE_SYSTEM_LLVM=1" - "USE_SYSTEM_MPFR=1" - "USE_SYSTEM_PATCHELF=1" - "USE_SYSTEM_PCRE=1" - "USE_SYSTEM_READLINE=1" - "USE_SYSTEM_SUITESPARSE=1" - "USE_SYSTEM_UTF8PROC=1" - "USE_SYSTEM_ZLIB=1" - ]; - - GLPK_PREFIX = "${glpk}/include"; - - NIX_CFLAGS_COMPILE = [ "-fPIC" ]; - - # Julia tries to load these libraries dynamically at runtime, but they can't be found. - # Easier by far to link against them as usual. - # These go in LDFLAGS, where they affect only Julia itself, and not NIX_LDFLAGS, - # where they would also be used for all the private libraries Julia builds. - LDFLAGS = [ - "-larpack" - "-lfftw3_threads" - "-lfftw3f_threads" - "-lglpk" - "-lgmp" - "-lmpfr" - "-lopenblas" - "-lpcre" - "-lsuitesparse" - "-lz" - ]; - - dontStrip = true; - dontPatchELF = true; - - enableParallelBuilding = true; - - # Test fail on i686 (julia version 0.3.10) - doCheck = !stdenv.isi686; - checkTarget = "testall"; - - meta = { - description = "High-level performance-oriented dynamical language for technical computing"; - homepage = "http://julialang.org/"; - license = stdenv.lib.licenses.mit; - maintainers = with stdenv.lib.maintainers; [ raskin ttuegel ]; - platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ]; - }; -} diff --git a/pkgs/development/compilers/julia/0001-use-system-utf8proc.patch b/pkgs/development/compilers/julia/0001-use-system-utf8proc.patch new file mode 100644 index 00000000000..b93654a8896 --- /dev/null +++ b/pkgs/development/compilers/julia/0001-use-system-utf8proc.patch @@ -0,0 +1,29 @@ +From 54a66b5728ec98f44a1768f064509be4fd3f2ef6 Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Sat, 10 Oct 2015 13:09:48 -0500 +Subject: [PATCH 1/3] use system utf8proc + +--- + src/flisp/Makefile | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +diff --git a/src/flisp/Makefile b/src/flisp/Makefile +index bec8624..5437b5c 100644 +--- a/src/flisp/Makefile ++++ b/src/flisp/Makefile +@@ -24,9 +24,9 @@ DOBJS = $(SRCS:%.c=$(BUILDDIR)/%.dbg.obj) + LLTDIR = ../support + LLT_release = $(BUILDDIR)/$(LLTDIR)/libsupport.a + LLT_debug = $(BUILDDIR)/$(LLTDIR)/libsupport-debug.a +-LIBFILES_release = $(LLT_release) $(LIBUV) $(LIBUTF8PROC) +-LIBFILES_debug = $(LLT_debug) $(LIBUV) $(LIBUTF8PROC) +-LIBS = ++LIBFILES_release = $(LLT_release) $(LIBUV) ++LIBFILES_debug = $(LLT_debug) $(LIBUV) ++LIBS = $(LIBUTF8PROC) + ifneq ($(OS),WINNT) + LIBS += -lpthread + endif +-- +2.5.2 + diff --git a/pkgs/development/compilers/julia/0002-use-system-suitesparse.patch b/pkgs/development/compilers/julia/0002-use-system-suitesparse.patch new file mode 100644 index 00000000000..17f49ad5ca9 --- /dev/null +++ b/pkgs/development/compilers/julia/0002-use-system-suitesparse.patch @@ -0,0 +1,25 @@ +From e2b0ed6664fe4adfd0f9ce8fa14732d47b30ab5c Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Sat, 10 Oct 2015 16:18:53 -0500 +Subject: [PATCH 2/3] use system suitesparse + +--- + base/sparse/cholmod.jl | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/base/sparse/cholmod.jl b/base/sparse/cholmod.jl +index ec7e980..f834cc1 100644 +--- a/base/sparse/cholmod.jl ++++ b/base/sparse/cholmod.jl +@@ -151,7 +151,7 @@ function __init__() + + # Register gc tracked allocator if CHOLMOD is new enough + if current_version >= v"3.0.0" +- cnfg = cglobal((:SuiteSparse_config, :libsuitesparseconfig), Ptr{Void}) ++ cnfg = cglobal((:SuiteSparse_config, :libsuitesparse), Ptr{Void}) + unsafe_store!(cnfg, cglobal(:jl_malloc, Ptr{Void}), 1) + unsafe_store!(cnfg, cglobal(:jl_calloc, Ptr{Void}), 2) + unsafe_store!(cnfg, cglobal(:jl_realloc, Ptr{Void}), 3) +-- +2.5.2 + diff --git a/pkgs/development/compilers/julia/0003-no-ldconfig.patch b/pkgs/development/compilers/julia/0003-no-ldconfig.patch new file mode 100644 index 00000000000..d490b704927 --- /dev/null +++ b/pkgs/development/compilers/julia/0003-no-ldconfig.patch @@ -0,0 +1,29 @@ +From 8802fe583eda93a928739cb3bc3517e19d1a6fa1 Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Sun, 11 Oct 2015 07:19:42 -0500 +Subject: [PATCH 3/3] no ldconfig + +--- + src/ccall.cpp | 6 +----- + 1 file changed, 1 insertion(+), 5 deletions(-) + +diff --git a/src/ccall.cpp b/src/ccall.cpp +index 22015ff..2821192 100644 +--- a/src/ccall.cpp ++++ b/src/ccall.cpp +@@ -13,11 +13,7 @@ extern "C" DLLEXPORT void jl_read_sonames(void) + { + char *line=NULL; + size_t sz=0; +-#if defined(__linux__) +- FILE *ldc = popen("/sbin/ldconfig -p", "r"); +-#else +- FILE *ldc = popen("/sbin/ldconfig -r", "r"); +-#endif ++ FILE *ldc = popen("true", "r"); + + while (!feof(ldc)) { + ssize_t n = getline(&line, &sz, ldc); +-- +2.5.2 + diff --git a/pkgs/development/compilers/julia/default.nix b/pkgs/development/compilers/julia/default.nix new file mode 100644 index 00000000000..5df0a35aae8 --- /dev/null +++ b/pkgs/development/compilers/julia/default.nix @@ -0,0 +1,157 @@ +{ stdenv, fetchgit, fetchurl +# build tools +, gfortran, m4, makeWrapper, patchelf, perl, which, python2 +# libjulia dependencies +, libunwind, llvm, readline, utf8proc, zlib +# standard library dependencies +, curl, fftwSinglePrec, fftw, gmp, libgit2, mpfr, openlibm, openspecfun, pcre2 +# linear algebra +, openblas, arpack, suitesparse +}: + +with stdenv.lib; + +# All dependencies must use the same OpenBLAS. +let + arpack_ = arpack; + suitesparse_ = suitesparse; +in +let + arpack = arpack_.override { inherit openblas; }; + suitesparse = suitesparse_.override { inherit openblas; }; +in + +let + dsfmtVersion = "2.2.3"; + dsfmt = fetchurl { + url = "http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/SFMT/dSFMT-src-${dsfmtVersion}.tar.gz"; + sha256 = "03kaqbjbi6viz0n33dk5jlf6ayxqlsq4804n7kwkndiga9s4hd42"; + }; + + libuvVersion = "28f5f06b5ff6f010d666ec26552e0badaca5cdcd"; + libuv = fetchurl { + url = "https://api.github.com/repos/JuliaLang/libuv/tarball/${libuvVersion}"; + sha256 = "1ksns0aiayxmxffvq2kc96904mxlmbkfc30xxck69xnidr2jvr4a"; + }; + + rmathVersion = "0.1"; + rmath-julia = fetchurl { + url = "https://api.github.com/repos/JuliaLang/Rmath-julia/tarball/v${rmathVersion}"; + sha256 = "0ai5dhjc43zcvangz123ryxmlbm51s21rg13bllwyn98w67arhb4"; + }; +in + +stdenv.mkDerivation rec { + pname = "julia"; + version = "0.4.0"; + name = "${pname}-${version}"; + + src = fetchurl { + url = "https://github.com/JuliaLang/${pname}/releases/download/v${version}/${name}.tar.gz"; + sha256 = "00k53hzbawpqvmkkyzcvbmf1d0ycshzdqk19nwsifv1rmiwjj7ss"; + }; + + prePatch = '' + cp "${dsfmt}" "./deps/dsfmt-${dsfmtVersion}.tar.gz" + cp "${rmath-julia}" "./deps/Rmath-julia-${rmathVersion}.tar.gz" + cp "${libuv}" "./deps/libuv-${libuvVersion}.tar.gz" + ''; + + patches = [ + ./0001-use-system-utf8proc.patch + ./0002-use-system-suitesparse.patch + ./0003-no-ldconfig.patch + ]; + + postPatch = '' + patchShebangs . contrib + ''; + + buildInputs = [ + arpack fftw fftwSinglePrec gmp libgit2 libunwind llvm mpfr + pcre2 openblas openlibm openspecfun readline suitesparse utf8proc + zlib + ]; + + nativeBuildInputs = [ curl gfortran m4 makeWrapper patchelf perl python2 which ]; + + makeFlags = + let + arch = head (splitString "-" stdenv.system); + march = { "x86_64" = "x86-64"; "i686" = "i686"; }."${arch}" + or (throw "unsupported architecture: ${arch}"); + # Julia requires Pentium 4 (SSE2) or better + cpuTarget = { "x86_64" = "x86-64"; "i686" = "pentium4"; }."${arch}" + or (throw "unsupported architecture: ${arch}"); + in [ + "ARCH=${arch}" + "MARCH=${march}" + "JULIA_CPU_TARGET=${cpuTarget}" + "PREFIX=$(out)" + "prefix=$(out)" + "SHELL=${stdenv.shell}" + + "USE_SYSTEM_BLAS=1" + "USE_BLAS64=${if openblas.blas64 then "1" else "0"}" + "LIBBLAS=-lopenblas" + "LIBBLASNAME=libopenblas" + + "USE_SYSTEM_LAPACK=1" + "LIBLAPACK=-lopenblas" + "LIBLAPACKNAME=libopenblas" + + "USE_SYSTEM_SUITESPARSE=1" + "SUITESPARSE_LIB=-lsuitesparse" + "SUITESPARSE_INC=-I${suitesparse}/include" + + "USE_SYSTEM_ARPACK=1" + "USE_SYSTEM_FFTW=1" + "USE_SYSTEM_GMP=1" + "USE_SYSTEM_LIBGIT2=1" + "USE_SYSTEM_LIBUNWIND=1" + "USE_SYSTEM_LLVM=1" + "USE_SYSTEM_MPFR=1" + "USE_SYSTEM_OPENLIBM=1" + "USE_SYSTEM_OPENSPECFUN=1" + "USE_SYSTEM_PATCHELF=1" + "USE_SYSTEM_PCRE=1" + "USE_SYSTEM_READLINE=1" + "USE_SYSTEM_UTF8PROC=1" + "USE_SYSTEM_ZLIB=1" + ]; + + NIX_CFLAGS_COMPILE = [ "-fPIC" ]; + + LD_LIBRARY_PATH = makeSearchPath "lib" [ + arpack fftw fftwSinglePrec gmp libgit2 mpfr openblas openlibm + openspecfun pcre2 suitesparse + ]; + + dontStrip = true; + dontPatchELF = true; + + enableParallelBuilding = true; + + doCheck = true; + checkTarget = "testall"; + # Julia's tests require read/write access to $HOME + preCheck = '' + export HOME="$NIX_BUILD_TOP" + ''; + + postInstall = '' + for prog in "$out/bin/julia" "$out/bin/julia-debug"; do + wrapProgram "$prog" \ + --prefix LD_LIBRARY_PATH : "$LD_LIBRARY_PATH" \ + --prefix PATH : "${curl}/bin" + done + ''; + + meta = { + description = "High-level performance-oriented dynamical language for technical computing"; + homepage = "http://julialang.org/"; + license = stdenv.lib.licenses.mit; + maintainers = with stdenv.lib.maintainers; [ raskin ttuegel ]; + platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ]; + }; +} diff --git a/pkgs/development/compilers/llvm/3.3/llvm.nix b/pkgs/development/compilers/llvm/3.3/llvm.nix index 8dca8b43bc2..d4305ac1f6e 100644 --- a/pkgs/development/compilers/llvm/3.3/llvm.nix +++ b/pkgs/development/compilers/llvm/3.3/llvm.nix @@ -14,9 +14,17 @@ in stdenv.mkDerivation rec { ./no-rule-aarch64.patch # http://llvm.org/bugs/show_bug.cgi?id=16625 # Patch needed for Julia, backports fixes from LLVM 3.5 (fetchurl { - url = "https://raw.githubusercontent.com/JuliaLang/julia/3bdda3750efc4ebf8ce7eda8a0888ffef3851605/deps/llvm-3.3.patch"; + url = "https://raw.githubusercontent.com/JuliaLang/julia/release-0.4/deps/llvm-3.3.patch"; sha256 = "0j6chyx4k8zr1qha5dks8lqlcraqrj4q1hwnk2kj3qi6cajsd8k3"; }) + (fetchurl { + url = "https://raw.githubusercontent.com/JuliaLang/julia/release-0.4/deps/instcombine-llvm-3.3.patch"; + sha256 = "161frq3wxrkxah78krb24hp4zkcnphzcgnvkwfq1abq2vjx3f8sn"; + }) + (fetchurl { + url = "https://raw.githubusercontent.com/JuliaLang/julia/release-0.4/deps/int128-vector.llvm-3.3.patch"; + sha256 = "0lzkv6hvsdaalwsyf6sq0vdrf8x5nk58qg6nn5dlw7n3hxaxpm4m"; + }) ]; buildInputs = [ perl groff cmake python libffi ]; diff --git a/pkgs/development/compilers/mozart/binary.nix b/pkgs/development/compilers/mozart/binary.nix index a420ef9c292..ae040297313 100644 --- a/pkgs/development/compilers/mozart/binary.nix +++ b/pkgs/development/compilers/mozart/binary.nix @@ -1,11 +1,12 @@ -{ stdenv, fetchurl, bash, makeWrapper, coreutils, emacs, tcl, tk, boost, gmp, cacert }: - -assert stdenv.isLinux; +{ stdenv, fetchurl, boost, emacs, gmp, makeWrapper +, tcl-8_5, tk-8_5 +}: let + version = "2.0.0"; -in -stdenv.mkDerivation { + +in stdenv.mkDerivation { name = "mozart-binary-${version}"; src = fetchurl { @@ -14,7 +15,15 @@ stdenv.mkDerivation { }; libPath = stdenv.lib.makeLibraryPath - [stdenv.cc.cc emacs tk tcl boost gmp]; + [ stdenv.cc.cc + boost + emacs + gmp + tcl-8_5 + tk-8_5 + ]; + + TK_LIBRARY = "${tk-8_5}/lib/tk8.5"; builder = ./builder.sh; diff --git a/pkgs/development/compilers/mozart/builder.sh b/pkgs/development/compilers/mozart/builder.sh index 75914121611..b606d4c1bde 100644 --- a/pkgs/development/compilers/mozart/builder.sh +++ b/pkgs/development/compilers/mozart/builder.sh @@ -12,13 +12,15 @@ mv mozart*linux/share/* $out/share patchShebangs $out for f in $out/bin/*; do - b=$(basename $f) - if [ $b == "ozemulator" ] || [ $b == "ozwish" ]; then - patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - --set-rpath $libPath \ - $f - continue; - fi - wrapProgram $f \ - --set OZHOME $out + b=$(basename $f) + + if [ $b == "ozemulator" ] || [ $b == "ozwish" ]; then + patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ + --set-rpath $libPath \ + $f + continue; + fi + + wrapProgram $f --set OZHOME $out \ + --set TK_LIBRARY $TK_LIBRARY done diff --git a/pkgs/development/compilers/ocaml/4.02.1.nix b/pkgs/development/compilers/ocaml/4.02.nix similarity index 96% rename from pkgs/development/compilers/ocaml/4.02.1.nix rename to pkgs/development/compilers/ocaml/4.02.nix index d70fe3384e0..7338f8b3674 100644 --- a/pkgs/development/compilers/ocaml/4.02.1.nix +++ b/pkgs/development/compilers/ocaml/4.02.nix @@ -21,11 +21,11 @@ stdenv.mkDerivation rec { x11lib = x11env + "/lib"; x11inc = x11env + "/include"; - name = "ocaml-4.02.1"; + name = "ocaml-4.02.3"; src = fetchurl { url = "http://caml.inria.fr/pub/distrib/ocaml-4.02/${name}.tar.xz"; - sha256 = "1p7lqvh64xpykh99014mz21q8fs3qyjym2qazhhbq8scwldv1i38"; + sha256 = "1qwwvy8nzd87hk8rd9sm667nppakiapnx4ypdwcrlnav2dz6kil3"; }; patches = [ patchOcamlBuild ]; diff --git a/pkgs/development/compilers/sbcl/bootstrap.nix b/pkgs/development/compilers/sbcl/bootstrap.nix index ddbef4e8b99..f9b95b575b5 100644 --- a/pkgs/development/compilers/sbcl/bootstrap.nix +++ b/pkgs/development/compilers/sbcl/bootstrap.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation rec { --add-flags "--core $out/share/sbcl/sbcl.core" ''; - postFixup = stdenv.lib.optionalString (!stdenv.isArm) '' + postFixup = stdenv.lib.optionalString (!stdenv.isArm && stdenv.isLinux) '' patchelf --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) $out/share/sbcl/sbcl ''; diff --git a/pkgs/development/compilers/sbcl/default.nix b/pkgs/development/compilers/sbcl/default.nix index 661279db1a9..a865b7e1d4b 100644 --- a/pkgs/development/compilers/sbcl/default.nix +++ b/pkgs/development/compilers/sbcl/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "sbcl-${version}"; - version = "1.2.15"; + version = "1.2.16"; src = fetchurl { url = "mirror://sourceforge/project/sbcl/sbcl/${version}/${name}-source.tar.bz2"; - sha256 = "0l8nrf5qnr8c9hr6bn1kd86mnr2s37b493azh9rrk3v59f56wnnr"; + sha256 = "08bg99dhjpvfi3fg4ak6c8kcrfb2ssdsfwwj46nfwniq0jmavacf"; }; buildInputs = [ which ]; diff --git a/pkgs/development/compilers/uhc/default.nix b/pkgs/development/compilers/uhc/default.nix index 017dcfb3e12..b0bd70fab03 100644 --- a/pkgs/development/compilers/uhc/default.nix +++ b/pkgs/development/compilers/uhc/default.nix @@ -1,18 +1,18 @@ { stdenv, coreutils, fetchgit, m4, libtool, clang, ghcWithPackages }: -let wrappedGhc = ghcWithPackages (hpkgs: with hpkgs; [shuffle hashable mtl network uhc-util uulib] ); +let wrappedGhc = ghcWithPackages (hpkgs: with hpkgs; [fgl vector syb uulib network binary hashable uhc-util mtl transformers directory containers array process filepath shuffle uuagc] ); in stdenv.mkDerivation rec { # Important: # The commits "Fixate/tag v..." are the released versions. # Ignore the "bumped version to ...." commits, they do not # correspond to releases. - version = "1.1.9.1.20150611"; + version = "1.1.9.1"; name = "uhc-${version}"; src = fetchgit { url = "https://github.com/UU-ComputerScience/uhc.git"; - rev = "b80098e07d12900f098ea964b1d2b3f38e5c9900"; - sha256 = "14qg1fd9pgbczcmn5ggkd9674qadx1izmz8363ps7c207dg94f9x"; + rev = "ce93d01486972c994ea2bbbd3d43859911120c39"; + sha256 = "1y670sc6ky74l3msayzqjlkjv1kpv3g35pirsq3q79klzvnpyj2x"; }; postUnpack = "sourceRoot=\${sourceRoot}/EHC"; @@ -50,6 +50,5 @@ 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; # https://github.com/UU-ComputerScience/uhc/issues/60 }; } diff --git a/pkgs/development/coq-modules/coq-ext-lib/default.nix b/pkgs/development/coq-modules/coq-ext-lib/default.nix index b9939a2e7f4..8282f52c678 100644 --- a/pkgs/development/coq-modules/coq-ext-lib/default.nix +++ b/pkgs/development/coq-modules/coq-ext-lib/default.nix @@ -1,14 +1,21 @@ -{stdenv, fetchgit, coq}: +{ stdenv, fetchFromGitHub, coq }: + +let param = + if coq.coq-version == "8.4" + then { version = "0.9.0"; sha256 = "1n3bk003vvbghbrxkhal6drnc0l65jv9y77wd56is3jw9xgiif0w"; } + else { version = "1.0.0-beta2"; sha256 = "0rdh6jsag174576nvra6m2g44fvmlbz4am5wcashj45bq30021sa"; }; +in stdenv.mkDerivation rec { - name = "coq-ext-lib-${coq.coq-version}-${version}"; - version = "c2c71a2a"; + name = "coq${coq.coq-version}-coq-ext-lib-${version}"; + inherit (param) version; - src = fetchgit { - url = git://github.com/coq-ext-lib/coq-ext-lib.git; - rev = "c2c71a2a90ac87f2ceb311a6da53a6796b916816"; - sha256 = "01sihw3nmvvpc8viwyr01qnqifdcmlg016034xmrfmv863yp8c4g"; + src = fetchFromGitHub { + owner = "coq-ext-lib"; + repo = "coq-ext-lib"; + rev = "v${param.version}"; + inherit (param) sha256; }; buildInputs = [ coq.ocaml coq.camlp5 ]; diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 94e2907c802..ad26ad43bdf 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -18,6 +18,7 @@ self: super: { ghc-paths = appendPatch super.ghc-paths ./patches/ghc-paths-nix.patch; # Break infinite recursions. + clock = dontCheck super.clock; Dust-crypto = dontCheck super.Dust-crypto; hasql-postgres = dontCheck super.hasql-postgres; hspec_2_1_10 = super.hspec_2_1_10.override { stringbuilder = dontCheck super.stringbuilder; }; @@ -62,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_20150916 = (disableCabalFlag super.git-annex_5_20150916 "assistant").override { + git-annex_5_20150930 = (disableCabalFlag super.git-annex_5_20150930 "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; @@ -547,7 +548,8 @@ self: super: { asn1-encoding = dontCheck super.asn1-encoding; # wxc supports wxGTX >= 3.0, but our current default version points to 2.8. - wxc = super.wxc.override { wxGTK = pkgs.wxGTK30; }; + # http://hydra.cryp.to/build/1331287/log/raw + wxc = (addBuildDepend super.wxc self.split).override { wxGTK = pkgs.wxGTK30; }; wxcore = super.wxcore.override { wxGTK = pkgs.wxGTK30; }; # Depends on QuickCheck 1.x. @@ -633,8 +635,10 @@ self: super: { # Uses OpenGL in testing caramia = dontCheck super.caramia; + # Supports only 3.5 for now, https://github.com/bscarlet/llvm-general/issues/142 + llvm-general = super.llvm-general.override { llvm-config = pkgs.llvm_35; }; + # Needs help finding LLVM. - llvm-general = super.llvm-general.override { llvm-config = self.llvmPackages.llvm; }; spaceprobe = addBuildTool super.spaceprobe self.llvmPackages.llvm; # Tries to run GUI in tests @@ -838,9 +842,6 @@ self: super: { ]; }); - # Old versions don't detect this library reliably. - freenect = appendConfigureFlag super.freenect "--extra-include-dirs=${pkgs.freenect}/include/libfreenect --extra-lib-dirs=${pkgs.freenect}/lib"; - # https://github.com/ivanperez-keera/hcwiid/pull/4 hcwiid = overrideCabal super.hcwiid (drv: { configureFlags = (drv.configureFlags or []) ++ [ @@ -906,4 +907,12 @@ self: super: { # https://github.com/sol/hpack/issues/53 hpack = dontCheck super.hpack; + # https://github.com/deech/fltkhs/issues/16 + fltkhs = overrideCabal super.fltkhs (drv: { + libraryToolDepends = (drv.libraryToolDepends or []) ++ [pkgs.autoconf]; + librarySystemDepends = (drv.librarySystemDepends or []) ++ [pkgs.fltk13 pkgs.mesa_noglu pkgs.libjpeg]; + broken = true; # linking fails because the build doesn't pull in the mesa libraries + }); + fltkhs-fluid-examples = dontDistribute super.fltkhs-fluid-examples; + } diff --git a/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix b/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix index bfb9ecdb5ba..06fedc6a1c4 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix @@ -91,4 +91,7 @@ self: super: { # Needs hashable on pre 7.10.x compilers. nats = addBuildDepend super.nats self.hashable; + # Needs void on pre 7.10.x compilers. + conduit = addBuildDepend super.conduit self.void; + } diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix index 55432ccdac5..9ce0e920042 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix @@ -73,4 +73,7 @@ self: super: { # Newer versions require bytestring >=0.10. tar = super.tar_0_4_1_0; + # Needs void on pre 7.10.x compilers. + conduit = addBuildDepend super.conduit self.void; + } diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix index c848a50cd36..ae85c4a009c 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix @@ -73,4 +73,7 @@ self: super: { # Newer versions require bytestring >=0.10. tar = super.tar_0_4_1_0; + # Needs void on pre 7.10.x compilers. + conduit = addBuildDepend super.conduit self.void; + } diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix index 0046ad66c23..aa27b70a566 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix @@ -82,4 +82,7 @@ self: super: { # Newer versions require bytestring >=0.10. tar = super.tar_0_4_1_0; + # Needs void on pre 7.10.x compilers. + conduit = addBuildDepend super.conduit self.void; + } diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix index ccc4aa54c28..a1ce7cf68d6 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix @@ -79,10 +79,6 @@ self: super: { # Needs hashable on pre 7.10.x compilers. nats = addBuildDepend super.nats self.hashable; - # Newer versions always trigger the non-deterministic library ID bug - # and are virtually impossible to compile on Hydra. - conduit = super.conduit_1_2_4_1; - # https://github.com/magthe/sandi/issues/7 sandi = overrideCabal super.sandi (drv: { postPatch = "sed -i -e 's|base ==4.8.*,|base,|' sandi.cabal"; @@ -96,4 +92,7 @@ self: super: { convertible = markBroken super.convertible; ghc-mod = markBroken super.ghc-mod; + # Needs void on pre 7.10.x compilers. + conduit = addBuildDepend super.conduit self.void; + } diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix index e5f5d3c953a..4b1d9df24e4 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix @@ -138,4 +138,7 @@ self: super: { xss-sanitize_0_3_5_4 = addBuildDepend super.xss-sanitize_0_3_5_4 self.network; xss-sanitize_0_3_5_5 = addBuildDepend super.xss-sanitize_0_3_5_5 self.network; + # Needs void on pre 7.10.x compilers. + conduit = addBuildDepend super.conduit self.void; + } diff --git a/pkgs/development/haskell-modules/configuration-ghcjs.nix b/pkgs/development/haskell-modules/configuration-ghcjs.nix index 7e45edabc4a..381da0afa3f 100644 --- a/pkgs/development/haskell-modules/configuration-ghcjs.nix +++ b/pkgs/development/haskell-modules/configuration-ghcjs.nix @@ -79,12 +79,6 @@ self: super: { ghcjs-dom = overrideCabal super.ghcjs-dom (drv: { buildDepends = [ self.base self.mtl self.text self.ghcjs-base ]; libraryHaskellDepends = [ ]; - src = pkgs.fetchFromGitHub { - owner = "ghcjs"; - repo = "ghcjs-dom"; - rev = "8d77202b46cbf0aed77bb1f1e8d827f27dee90d7"; - sha256 = "01npi286mwg7yr3h9qhxnylnjzbjb4lg5235v5lqfwy76hmmb9lp"; - }; }); ghc-paths = overrideCabal super.ghc-paths (drv: { diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index f1cba307c19..51f40a5b504 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -637,6 +637,7 @@ dont-distribute-packages: compact-string: [ i686-linux, x86_64-linux, x86_64-darwin ] compilation: [ i686-linux, x86_64-linux, x86_64-darwin ] complexity: [ i686-linux, x86_64-linux, x86_64-darwin ] + compose-ltr: [ i686-linux, x86_64-linux, x86_64-darwin ] compose-trans: [ i686-linux, x86_64-linux, x86_64-darwin ] composition-tree: [ i686-linux, x86_64-linux, x86_64-darwin ] compression: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -701,6 +702,7 @@ dont-distribute-packages: couchdb-enumerator: [ i686-linux, x86_64-linux, x86_64-darwin ] CouchDB: [ i686-linux, x86_64-linux, x86_64-darwin ] couch-hs: [ i686-linux, x86_64-linux, x86_64-darwin ] + couch-simple: [ i686-linux, x86_64-linux, x86_64-darwin ] court: [ i686-linux, x86_64-linux, x86_64-darwin ] coverage: [ i686-linux, x86_64-linux, x86_64-darwin ] CPBrainfuck: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -987,6 +989,7 @@ dont-distribute-packages: epoll: [ i686-linux, x86_64-linux, x86_64-darwin ] epubname: [ i686-linux, x86_64-linux, x86_64-darwin ] Eq: [ i686-linux, x86_64-linux, x86_64-darwin ] + equational-reasoning: [ i686-linux, x86_64-linux, x86_64-darwin ] erlang: [ i686-linux, x86_64-linux, x86_64-darwin ] eros-client: [ i686-linux, x86_64-linux, x86_64-darwin ] error-message: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -1113,6 +1116,7 @@ dont-distribute-packages: fpco-api: [ i686-linux, x86_64-linux, x86_64-darwin ] fpnla-examples: [ i686-linux, x86_64-linux, x86_64-darwin ] FPretty: [ i686-linux, x86_64-linux, x86_64-darwin ] + Fractaler: [ i686-linux, x86_64-linux, x86_64-darwin ] frag: [ i686-linux, x86_64-linux, x86_64-darwin ] frame-markdown: [ i686-linux, x86_64-linux, x86_64-darwin ] franchise: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -1150,6 +1154,7 @@ dont-distribute-packages: funsat: [ i686-linux, x86_64-linux, x86_64-darwin ] future: [ i686-linux, x86_64-linux, x86_64-darwin ] fuzzytime: [ i686-linux, x86_64-linux, x86_64-darwin ] + fuzzy-timings: [ i686-linux, x86_64-linux, x86_64-darwin ] gact: [ i686-linux, x86_64-linux, x86_64-darwin ] gameclock: [ i686-linux, x86_64-linux, x86_64-darwin ] game-of-life: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -1161,6 +1166,7 @@ dont-distribute-packages: GeBoP: [ i686-linux, x86_64-linux, x86_64-darwin ] geek: [ i686-linux, x86_64-linux, x86_64-darwin ] geek-server: [ i686-linux, x86_64-linux, x86_64-darwin ] + gelatin: [ i686-linux, x86_64-linux, x86_64-darwin ] gemstone: [ i686-linux, x86_64-linux, x86_64-darwin ] gencheck: [ i686-linux, x86_64-linux, x86_64-darwin ] gender: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -1185,6 +1191,7 @@ dont-distribute-packages: GeoIp: [ i686-linux, x86_64-linux, x86_64-darwin ] geom2d: [ i686-linux ] GeomPredicates-SSE: [ i686-linux, x86_64-linux, x86_64-darwin ] + geo-resolver: [ i686-linux, x86_64-linux, x86_64-darwin ] getemx: [ i686-linux, x86_64-linux, x86_64-darwin ] getflag: [ i686-linux, x86_64-linux, x86_64-darwin ] ggtsTC: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -1721,6 +1728,7 @@ dont-distribute-packages: hOpenPGP: [ i686-linux, x86_64-linux, x86_64-darwin ] hopenpgp-tools: [ i686-linux, x86_64-linux, x86_64-darwin ] hopfield: [ i686-linux, x86_64-linux, x86_64-darwin ] + hops: [ i686-linux, x86_64-linux, x86_64-darwin ] hoq: [ i686-linux, x86_64-linux, x86_64-darwin ] hosts-server: [ i686-linux, x86_64-linux, x86_64-darwin ] hotswap: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -2123,6 +2131,7 @@ dont-distribute-packages: language-objc: [ i686-linux, x86_64-linux, x86_64-darwin ] language-puppet: [ i686-linux ] language-python-colour: [ i686-linux, x86_64-linux, x86_64-darwin ] + language-qux: [ i686-linux, x86_64-linux, x86_64-darwin ] language-sh: [ i686-linux, x86_64-linux, x86_64-darwin ] language-spelling: [ i686-linux, x86_64-linux, x86_64-darwin ] language-sqlite: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -2421,6 +2430,7 @@ dont-distribute-packages: music-util: [ i686-linux, x86_64-linux, x86_64-darwin ] musicxml: [ i686-linux, x86_64-linux, x86_64-darwin ] mustache2hs: [ i686-linux, x86_64-linux, x86_64-darwin ] + mustache: [ i686-linux, x86_64-linux, x86_64-darwin ] mutable-iter: [ i686-linux, x86_64-linux, x86_64-darwin ] mvclient: [ i686-linux, x86_64-linux, x86_64-darwin ] mvc-updates: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -2675,6 +2685,7 @@ dont-distribute-packages: pocket-dns: [ i686-linux, x86_64-linux, x86_64-darwin ] pointless-lenses: [ i686-linux, x86_64-linux, x86_64-darwin ] pointless-rewrite: [ i686-linux, x86_64-linux, x86_64-darwin ] + polar-configfile: [ i686-linux, x86_64-linux, x86_64-darwin ] polh-lexicon: [ i686-linux, x86_64-linux, x86_64-darwin ] polynomials-bernstein: [ i686-linux, x86_64-linux, x86_64-darwin ] polyseq: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -2789,6 +2800,7 @@ dont-distribute-packages: Quickson: [ i686-linux, x86_64-linux, x86_64-darwin ] quicktest: [ i686-linux, x86_64-linux, x86_64-darwin ] quoridor-hs: [ i686-linux, x86_64-linux, x86_64-darwin ] + qux: [ i686-linux, x86_64-linux, x86_64-darwin ] rabocsv2qif: [ i686-linux, x86_64-linux, x86_64-darwin ] rad: [ i686-linux, x86_64-linux, x86_64-darwin ] radium-formula-parser: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -2879,6 +2891,7 @@ dont-distribute-packages: resource-embed: [ i686-linux, x86_64-linux, x86_64-darwin ] resource-simple: [ i686-linux, x86_64-linux, x86_64-darwin ] respond: [ i686-linux, x86_64-linux, x86_64-darwin ] + rest-example: [ i686-linux, x86_64-linux, x86_64-darwin ] restful-snap: [ i686-linux, x86_64-linux, x86_64-darwin ] RESTng: [ i686-linux, x86_64-linux, x86_64-darwin ] restricted-workers: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -2989,8 +3002,7 @@ dont-distribute-packages: sdl2-image: [ i686-linux, x86_64-linux, x86_64-darwin ] sdl2-ttf: [ i686-linux, x86_64-linux, x86_64-darwin ] SDL-mixer: [ x86_64-darwin ] - sdr: [ i686-linux ] - sdr: [ x86_64-darwin ] + sdr: [ i686-linux, x86_64-darwin ] seacat: [ i686-linux, x86_64-linux, x86_64-darwin ] search: [ i686-linux, x86_64-linux, x86_64-darwin ] secdh: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -3244,6 +3256,7 @@ dont-distribute-packages: synthesizer-alsa: [ i686-linux, x86_64-linux, x86_64-darwin ] synthesizer-core: [ i686-linux, x86_64-linux, x86_64-darwin ] synthesizer-dimensional: [ i686-linux, x86_64-linux, x86_64-darwin ] + synthesizer-filter: [ i686-linux, x86_64-linux, x86_64-darwin ] synthesizer: [ i686-linux, x86_64-linux, x86_64-darwin ] synthesizer-llvm: [ i686-linux, x86_64-linux, x86_64-darwin ] synthesizer-midi: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -3307,6 +3320,7 @@ dont-distribute-packages: text-xml-generic: [ i686-linux, x86_64-linux, x86_64-darwin ] text-xml-qq: [ i686-linux, x86_64-linux, x86_64-darwin ] tfp-th: [ i686-linux, x86_64-linux, x86_64-darwin ] + th-context: [ i686-linux, x86_64-linux, x86_64-darwin ] Theora: [ i686-linux, x86_64-linux, x86_64-darwin ] theoremquest-client: [ i686-linux, x86_64-linux, x86_64-darwin ] thih: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -3592,6 +3606,7 @@ dont-distribute-packages: WordNet-ghc74: [ i686-linux, x86_64-linux, x86_64-darwin ] WordNet: [ i686-linux, x86_64-linux, x86_64-darwin ] wordsearch: [ i686-linux, x86_64-linux, x86_64-darwin ] + workflow-osx: [ i686-linux, x86_64-linux, x86_64-darwin ] wp-archivebot: [ i686-linux, x86_64-linux, x86_64-darwin ] wraxml: [ i686-linux, x86_64-linux, x86_64-darwin ] wright: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -3679,6 +3694,7 @@ dont-distribute-packages: yesod-angular-ui: [ i686-linux, x86_64-linux, x86_64-darwin ] yesod-auth-account-fork: [ i686-linux, x86_64-linux, x86_64-darwin ] yesod-auth-ldap: [ i686-linux, x86_64-linux, x86_64-darwin ] + yesod-auth-ldap-native: [ i686-linux, x86_64-linux, x86_64-darwin ] yesod-auth-pam: [ i686-linux, x86_64-linux, x86_64-darwin ] yesod-auth-smbclient: [ i686-linux, x86_64-linux, x86_64-darwin ] yesod-comments: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -3721,6 +3737,7 @@ dont-distribute-packages: yuiGrid: [ i686-linux, x86_64-linux, x86_64-darwin ] yuuko: [ i686-linux, x86_64-linux, x86_64-darwin ] yxdb-utils: [ i686-linux ] + yxdb-utils: [ i686-linux, x86_64-linux, x86_64-darwin ] zampolit: [ i686-linux, x86_64-linux, x86_64-darwin ] zasni-gerna: [ i686-linux, x86_64-linux, x86_64-darwin ] zendesk-api: [ 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 3d9330cd741..4e96633ffec 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.3"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -335,6 +335,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -616,6 +617,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -1235,15 +1237,20 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; + "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1261,6 +1268,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "amazonka-support" = dontDistribute super."amazonka-support"; "amazonka-swf" = dontDistribute super."amazonka-swf"; "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; "amazonka-workspaces" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_10_1"; @@ -1281,6 +1289,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -2108,6 +2117,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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" = doDistribute super."composition_1_0_1_0"; "composition-extra" = dontDistribute super."composition-extra"; @@ -2474,9 +2484,11 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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-generics" = doDistribute super."deepseq-generics_0_1_1_1"; @@ -2627,6 +2639,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; "diversity" = dontDistribute super."diversity"; + "dixi" = dontDistribute super."dixi"; "djinn" = dontDistribute super."djinn"; "djinn-ghc" = doDistribute super."djinn-ghc_0_0_2_2"; "djinn-th" = dontDistribute super."djinn-th"; @@ -2718,6 +2731,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -2790,6 +2804,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3021,6 +3036,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -3052,6 +3068,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3073,6 +3090,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3135,6 +3153,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3213,6 +3232,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3247,7 +3267,9 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3388,6 +3410,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3456,6 +3479,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "groundhog-sqlite" = doDistribute super."groundhog-sqlite_0_7_0"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = dontDistribute super."grouped-list"; "groupoid" = dontDistribute super."groupoid"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3712,6 +3736,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3796,6 +3821,8 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -4360,6 +4387,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_6"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5242,6 +5270,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5260,6 +5289,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -5297,6 +5327,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5319,6 +5350,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -5536,6 +5568,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "mvc" = dontDistribute super."mvc"; "mvc-updates" = dontDistribute super."mvc-updates"; "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = dontDistribute super."mwc-probability"; "mwc-random" = doDistribute super."mwc-random_0_13_2_2"; "mwc-random-monad" = dontDistribute super."mwc-random-monad"; "myTestlll" = dontDistribute super."myTestlll"; @@ -6061,6 +6094,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -6069,6 +6103,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -6107,6 +6142,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -6471,6 +6507,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6767,6 +6804,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; "sdl2" = dontDistribute super."sdl2"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; "sdl2-image" = dontDistribute super."sdl2-image"; "sdl2-ttf" = dontDistribute super."sdl2-ttf"; @@ -6779,6 +6817,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -7132,6 +7171,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "species" = dontDistribute super."species"; "speculation" = doDistribute super."speculation_1_5_0_1"; "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"; @@ -7196,6 +7236,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "stackage-types" = dontDistribute super."stackage-types"; "stackage-update" = dontDistribute super."stackage-update"; "stackage-upload" = dontDistribute super."stackage-upload"; + "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"; @@ -7374,6 +7415,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -7444,6 +7486,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7617,6 +7660,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7773,6 +7817,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -7890,6 +7935,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -8122,6 +8168,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -8176,6 +8223,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -8207,6 +8255,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; "wp-archivebot" = dontDistribute super."wp-archivebot"; "wrap" = dontDistribute super."wrap"; "wraparound" = dontDistribute super."wraparound"; @@ -8371,6 +8420,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; "yesod-auth-oauth2" = dontDistribute super."yesod-auth-oauth2"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; @@ -8478,6 +8528,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_2"; "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = dontDistribute super."zim-parser"; "zip-archive" = doDistribute super."zip-archive_0_2_3_5"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index 1f74dadedcb..a83b845553d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.3"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -335,6 +335,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -616,6 +617,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -1235,15 +1237,20 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; + "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1261,6 +1268,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "amazonka-support" = dontDistribute super."amazonka-support"; "amazonka-swf" = dontDistribute super."amazonka-swf"; "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; "amazonka-workspaces" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_10_1"; @@ -1281,6 +1289,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -2108,6 +2117,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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" = doDistribute super."composition_1_0_1_0"; "composition-extra" = dontDistribute super."composition-extra"; @@ -2473,9 +2483,11 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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-generics" = doDistribute super."deepseq-generics_0_1_1_1"; @@ -2626,6 +2638,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; "diversity" = dontDistribute super."diversity"; + "dixi" = dontDistribute super."dixi"; "djinn" = dontDistribute super."djinn"; "djinn-ghc" = doDistribute super."djinn-ghc_0_0_2_2"; "djinn-th" = dontDistribute super."djinn-th"; @@ -2717,6 +2730,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -2789,6 +2803,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3020,6 +3035,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -3051,6 +3067,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3072,6 +3089,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3134,6 +3152,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3212,6 +3231,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3246,7 +3266,9 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3387,6 +3409,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3455,6 +3478,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "groundhog-sqlite" = doDistribute super."groundhog-sqlite_0_7_0"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = dontDistribute super."grouped-list"; "groupoid" = dontDistribute super."groupoid"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3711,6 +3735,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3795,6 +3820,8 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -4359,6 +4386,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_6"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5241,6 +5269,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5259,6 +5288,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -5296,6 +5326,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5318,6 +5349,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -5535,6 +5567,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "mvc" = dontDistribute super."mvc"; "mvc-updates" = dontDistribute super."mvc-updates"; "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = dontDistribute super."mwc-probability"; "mwc-random" = doDistribute super."mwc-random_0_13_2_2"; "mwc-random-monad" = dontDistribute super."mwc-random-monad"; "myTestlll" = dontDistribute super."myTestlll"; @@ -6060,6 +6093,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -6068,6 +6102,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -6106,6 +6141,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -6470,6 +6506,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6766,6 +6803,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; "sdl2" = dontDistribute super."sdl2"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; "sdl2-image" = dontDistribute super."sdl2-image"; "sdl2-ttf" = dontDistribute super."sdl2-ttf"; @@ -6778,6 +6816,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -7131,6 +7170,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "species" = dontDistribute super."species"; "speculation" = doDistribute super."speculation_1_5_0_1"; "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"; @@ -7195,6 +7235,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "stackage-types" = dontDistribute super."stackage-types"; "stackage-update" = dontDistribute super."stackage-update"; "stackage-upload" = dontDistribute super."stackage-upload"; + "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"; @@ -7373,6 +7414,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -7443,6 +7485,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7616,6 +7659,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7772,6 +7816,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -7889,6 +7934,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -8121,6 +8167,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -8175,6 +8222,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -8206,6 +8254,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; "wp-archivebot" = dontDistribute super."wp-archivebot"; "wrap" = dontDistribute super."wrap"; "wraparound" = dontDistribute super."wraparound"; @@ -8370,6 +8419,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; "yesod-auth-oauth2" = dontDistribute super."yesod-auth-oauth2"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; @@ -8477,6 +8527,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_2"; "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = dontDistribute super."zim-parser"; "zip-archive" = doDistribute super."zip-archive_0_2_3_5"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index 6b003dcc802..2be11aabdd1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.3"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -335,6 +335,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -616,6 +617,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -1235,15 +1237,20 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; + "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1261,6 +1268,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "amazonka-support" = dontDistribute super."amazonka-support"; "amazonka-swf" = dontDistribute super."amazonka-swf"; "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; "amazonka-workspaces" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_10_1"; @@ -1281,6 +1289,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -2108,6 +2117,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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" = doDistribute super."composition_1_0_1_0"; "composition-extra" = dontDistribute super."composition-extra"; @@ -2473,9 +2483,11 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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-generics" = doDistribute super."deepseq-generics_0_1_1_1"; @@ -2626,6 +2638,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; "diversity" = dontDistribute super."diversity"; + "dixi" = dontDistribute super."dixi"; "djinn" = dontDistribute super."djinn"; "djinn-ghc" = doDistribute super."djinn-ghc_0_0_2_2"; "djinn-th" = dontDistribute super."djinn-th"; @@ -2717,6 +2730,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -2789,6 +2803,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3020,6 +3035,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -3051,6 +3067,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3072,6 +3089,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3134,6 +3152,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3212,6 +3231,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3246,7 +3266,9 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3387,6 +3409,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3455,6 +3478,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "groundhog-sqlite" = doDistribute super."groundhog-sqlite_0_7_0"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = dontDistribute super."grouped-list"; "groupoid" = dontDistribute super."groupoid"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3711,6 +3735,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3795,6 +3820,8 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -4359,6 +4386,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_6"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5241,6 +5269,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5259,6 +5288,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -5296,6 +5326,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5318,6 +5349,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -5535,6 +5567,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "mvc" = dontDistribute super."mvc"; "mvc-updates" = dontDistribute super."mvc-updates"; "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = dontDistribute super."mwc-probability"; "mwc-random" = doDistribute super."mwc-random_0_13_2_2"; "mwc-random-monad" = dontDistribute super."mwc-random-monad"; "myTestlll" = dontDistribute super."myTestlll"; @@ -6060,6 +6093,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -6068,6 +6102,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -6106,6 +6141,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -6470,6 +6506,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6766,6 +6803,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; "sdl2" = dontDistribute super."sdl2"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; "sdl2-image" = dontDistribute super."sdl2-image"; "sdl2-ttf" = dontDistribute super."sdl2-ttf"; @@ -6778,6 +6816,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -7131,6 +7170,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "species" = dontDistribute super."species"; "speculation" = doDistribute super."speculation_1_5_0_1"; "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"; @@ -7195,6 +7235,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "stackage-types" = dontDistribute super."stackage-types"; "stackage-update" = dontDistribute super."stackage-update"; "stackage-upload" = dontDistribute super."stackage-upload"; + "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"; @@ -7373,6 +7414,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -7443,6 +7485,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7616,6 +7659,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7772,6 +7816,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -7889,6 +7934,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -8121,6 +8167,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -8175,6 +8222,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -8206,6 +8254,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; "wp-archivebot" = dontDistribute super."wp-archivebot"; "wrap" = dontDistribute super."wrap"; "wraparound" = dontDistribute super."wraparound"; @@ -8370,6 +8419,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; "yesod-auth-oauth2" = dontDistribute super."yesod-auth-oauth2"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; @@ -8477,6 +8527,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_2"; "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = dontDistribute super."zim-parser"; "zip-archive" = doDistribute super."zip-archive_0_2_3_5"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index f95d820bab8..73960f178c4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.3"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -335,6 +335,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -616,6 +617,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -1235,15 +1237,20 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; + "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1261,6 +1268,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "amazonka-support" = dontDistribute super."amazonka-support"; "amazonka-swf" = dontDistribute super."amazonka-swf"; "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; "amazonka-workspaces" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_10_1"; @@ -1281,6 +1289,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -2108,6 +2117,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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" = doDistribute super."composition_1_0_1_0"; "composition-extra" = dontDistribute super."composition-extra"; @@ -2473,9 +2483,11 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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-generics" = doDistribute super."deepseq-generics_0_1_1_1"; @@ -2626,6 +2638,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; "diversity" = dontDistribute super."diversity"; + "dixi" = dontDistribute super."dixi"; "djinn" = dontDistribute super."djinn"; "djinn-ghc" = doDistribute super."djinn-ghc_0_0_2_2"; "djinn-th" = dontDistribute super."djinn-th"; @@ -2717,6 +2730,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -2789,6 +2803,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3020,6 +3035,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -3051,6 +3067,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3072,6 +3089,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3134,6 +3152,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3212,6 +3231,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3246,7 +3266,9 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3387,6 +3409,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3455,6 +3478,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "groundhog-sqlite" = doDistribute super."groundhog-sqlite_0_7_0"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = dontDistribute super."grouped-list"; "groupoid" = dontDistribute super."groupoid"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3711,6 +3735,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3795,6 +3820,8 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -4359,6 +4386,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_6_1"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5241,6 +5269,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5259,6 +5288,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -5296,6 +5326,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5318,6 +5349,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -5535,6 +5567,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "mvc" = dontDistribute super."mvc"; "mvc-updates" = dontDistribute super."mvc-updates"; "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = dontDistribute super."mwc-probability"; "mwc-random" = doDistribute super."mwc-random_0_13_2_2"; "mwc-random-monad" = dontDistribute super."mwc-random-monad"; "myTestlll" = dontDistribute super."myTestlll"; @@ -6060,6 +6093,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -6068,6 +6102,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -6106,6 +6141,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -6470,6 +6506,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6766,6 +6803,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; "sdl2" = dontDistribute super."sdl2"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; "sdl2-image" = dontDistribute super."sdl2-image"; "sdl2-ttf" = dontDistribute super."sdl2-ttf"; @@ -6778,6 +6816,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -7131,6 +7170,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "species" = dontDistribute super."species"; "speculation" = doDistribute super."speculation_1_5_0_1"; "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"; @@ -7195,6 +7235,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "stackage-types" = dontDistribute super."stackage-types"; "stackage-update" = dontDistribute super."stackage-update"; "stackage-upload" = dontDistribute super."stackage-upload"; + "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"; @@ -7373,6 +7414,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -7443,6 +7485,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7616,6 +7659,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7772,6 +7816,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -7889,6 +7934,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -8121,6 +8167,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -8175,6 +8222,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -8206,6 +8254,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; "wp-archivebot" = dontDistribute super."wp-archivebot"; "wrap" = dontDistribute super."wrap"; "wraparound" = dontDistribute super."wraparound"; @@ -8370,6 +8419,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; "yesod-auth-oauth2" = dontDistribute super."yesod-auth-oauth2"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; @@ -8477,6 +8527,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_2"; "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = dontDistribute super."zim-parser"; "zip-archive" = doDistribute super."zip-archive_0_2_3_5"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index 92e5596a705..ab5ed4f9716 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.3"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -335,6 +335,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -616,6 +617,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -1235,15 +1237,20 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; + "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1261,6 +1268,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "amazonka-support" = dontDistribute super."amazonka-support"; "amazonka-swf" = dontDistribute super."amazonka-swf"; "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; "amazonka-workspaces" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_10_1"; @@ -1281,6 +1289,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -2108,6 +2117,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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" = doDistribute super."composition_1_0_1_0"; "composition-extra" = dontDistribute super."composition-extra"; @@ -2473,9 +2483,11 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -2625,6 +2637,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; "diversity" = dontDistribute super."diversity"; + "dixi" = dontDistribute super."dixi"; "djinn" = dontDistribute super."djinn"; "djinn-ghc" = doDistribute super."djinn-ghc_0_0_2_2"; "djinn-th" = dontDistribute super."djinn-th"; @@ -2716,6 +2729,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -2788,6 +2802,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3019,6 +3034,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -3050,6 +3066,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3071,6 +3088,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3133,6 +3151,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3211,6 +3230,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3245,7 +3265,9 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3386,6 +3408,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3452,6 +3475,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = dontDistribute super."grouped-list"; "groupoid" = dontDistribute super."groupoid"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3708,6 +3732,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3792,6 +3817,8 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -4356,6 +4383,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_6_1"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5238,6 +5266,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5256,6 +5285,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -5293,6 +5323,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5315,6 +5346,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -5532,6 +5564,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "mvc" = dontDistribute super."mvc"; "mvc-updates" = dontDistribute super."mvc-updates"; "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = dontDistribute super."mwc-probability"; "mwc-random" = doDistribute super."mwc-random_0_13_2_2"; "mwc-random-monad" = dontDistribute super."mwc-random-monad"; "myTestlll" = dontDistribute super."myTestlll"; @@ -6057,6 +6090,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -6065,6 +6099,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -6103,6 +6138,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -6467,6 +6503,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6762,6 +6799,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; "sdl2" = dontDistribute super."sdl2"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; "sdl2-image" = dontDistribute super."sdl2-image"; "sdl2-ttf" = dontDistribute super."sdl2-ttf"; @@ -6774,6 +6812,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -7127,6 +7166,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "species" = dontDistribute super."species"; "speculation" = doDistribute super."speculation_1_5_0_1"; "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"; @@ -7191,6 +7231,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "stackage-types" = dontDistribute super."stackage-types"; "stackage-update" = dontDistribute super."stackage-update"; "stackage-upload" = dontDistribute super."stackage-upload"; + "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"; @@ -7368,6 +7409,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -7438,6 +7480,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7611,6 +7654,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7767,6 +7811,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -7884,6 +7929,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -8116,6 +8162,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -8170,6 +8217,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -8201,6 +8249,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; "wp-archivebot" = dontDistribute super."wp-archivebot"; "wrap" = dontDistribute super."wrap"; "wraparound" = dontDistribute super."wraparound"; @@ -8365,6 +8414,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; "yesod-auth-oauth2" = dontDistribute super."yesod-auth-oauth2"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; @@ -8472,6 +8522,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_2"; "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = dontDistribute super."zim-parser"; "zip-archive" = doDistribute super."zip-archive_0_2_3_5"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index eeadf8d700e..03a086680ff 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.3"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -335,6 +335,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -616,6 +617,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -1235,15 +1237,20 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; + "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1261,6 +1268,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "amazonka-support" = dontDistribute super."amazonka-support"; "amazonka-swf" = dontDistribute super."amazonka-swf"; "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; "amazonka-workspaces" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_10_1"; @@ -1281,6 +1289,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -2108,6 +2117,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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" = doDistribute super."composition_1_0_1_0"; "composition-extra" = dontDistribute super."composition-extra"; @@ -2473,9 +2483,11 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -2625,6 +2637,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; "diversity" = dontDistribute super."diversity"; + "dixi" = dontDistribute super."dixi"; "djinn" = dontDistribute super."djinn"; "djinn-ghc" = doDistribute super."djinn-ghc_0_0_2_2"; "djinn-th" = dontDistribute super."djinn-th"; @@ -2716,6 +2729,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -2788,6 +2802,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3019,6 +3034,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -3050,6 +3066,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3071,6 +3088,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3133,6 +3151,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3211,6 +3230,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3245,7 +3265,9 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3386,6 +3408,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3452,6 +3475,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = dontDistribute super."grouped-list"; "groupoid" = dontDistribute super."groupoid"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3708,6 +3732,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3792,6 +3817,8 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -4356,6 +4383,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_6_1"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5238,6 +5266,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5256,6 +5285,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -5293,6 +5323,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5315,6 +5346,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -5532,6 +5564,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "mvc" = dontDistribute super."mvc"; "mvc-updates" = dontDistribute super."mvc-updates"; "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = dontDistribute super."mwc-probability"; "mwc-random" = doDistribute super."mwc-random_0_13_2_2"; "mwc-random-monad" = dontDistribute super."mwc-random-monad"; "myTestlll" = dontDistribute super."myTestlll"; @@ -6057,6 +6090,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -6065,6 +6099,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -6103,6 +6138,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -6467,6 +6503,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6762,6 +6799,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; "sdl2" = dontDistribute super."sdl2"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; "sdl2-image" = dontDistribute super."sdl2-image"; "sdl2-ttf" = dontDistribute super."sdl2-ttf"; @@ -6774,6 +6812,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -7127,6 +7166,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "species" = dontDistribute super."species"; "speculation" = doDistribute super."speculation_1_5_0_1"; "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"; @@ -7191,6 +7231,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "stackage-types" = dontDistribute super."stackage-types"; "stackage-update" = dontDistribute super."stackage-update"; "stackage-upload" = dontDistribute super."stackage-upload"; + "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"; @@ -7368,6 +7409,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -7438,6 +7480,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7611,6 +7654,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7767,6 +7811,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -7884,6 +7929,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -8115,6 +8161,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -8169,6 +8216,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -8200,6 +8248,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; "wp-archivebot" = dontDistribute super."wp-archivebot"; "wrap" = dontDistribute super."wrap"; "wraparound" = dontDistribute super."wraparound"; @@ -8364,6 +8413,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; "yesod-auth-oauth2" = dontDistribute super."yesod-auth-oauth2"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; @@ -8471,6 +8521,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_2"; "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = dontDistribute super."zim-parser"; "zip-archive" = doDistribute super."zip-archive_0_2_3_5"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index c149525bfa5..6053fa578c2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.3"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -335,6 +335,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -616,6 +617,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -1234,15 +1236,20 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; + "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1260,6 +1267,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "amazonka-support" = dontDistribute super."amazonka-support"; "amazonka-swf" = dontDistribute super."amazonka-swf"; "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; "amazonka-workspaces" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_10_1"; @@ -1280,6 +1288,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -2105,6 +2114,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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" = doDistribute super."composition_1_0_1_0"; "composition-extra" = dontDistribute super."composition-extra"; @@ -2470,9 +2480,11 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -2622,6 +2634,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; "diversity" = dontDistribute super."diversity"; + "dixi" = dontDistribute super."dixi"; "djinn" = dontDistribute super."djinn"; "djinn-ghc" = doDistribute super."djinn-ghc_0_0_2_2"; "djinn-th" = dontDistribute super."djinn-th"; @@ -2713,6 +2726,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -2785,6 +2799,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3016,6 +3031,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -3047,6 +3063,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3068,6 +3085,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3130,6 +3148,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3208,6 +3227,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3242,7 +3262,9 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3383,6 +3405,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3449,6 +3472,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = dontDistribute super."grouped-list"; "groupoid" = dontDistribute super."groupoid"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3705,6 +3729,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3788,6 +3813,8 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -4352,6 +4379,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_6_1"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5234,6 +5262,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5252,6 +5281,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -5289,6 +5319,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5311,6 +5342,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -5528,6 +5560,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "mvc" = dontDistribute super."mvc"; "mvc-updates" = dontDistribute super."mvc-updates"; "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = dontDistribute super."mwc-probability"; "mwc-random" = doDistribute super."mwc-random_0_13_2_2"; "mwc-random-monad" = dontDistribute super."mwc-random-monad"; "myTestlll" = dontDistribute super."myTestlll"; @@ -6052,6 +6085,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -6060,6 +6094,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -6098,6 +6133,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -6462,6 +6498,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6756,6 +6793,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; "sdl2" = dontDistribute super."sdl2"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; "sdl2-image" = dontDistribute super."sdl2-image"; "sdl2-ttf" = dontDistribute super."sdl2-ttf"; @@ -6768,6 +6806,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -7121,6 +7160,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "species" = dontDistribute super."species"; "speculation" = doDistribute super."speculation_1_5_0_1"; "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"; @@ -7185,6 +7225,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "stackage-types" = dontDistribute super."stackage-types"; "stackage-update" = dontDistribute super."stackage-update"; "stackage-upload" = dontDistribute super."stackage-upload"; + "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"; @@ -7362,6 +7403,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -7432,6 +7474,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7605,6 +7648,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7761,6 +7805,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -7878,6 +7923,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -8108,6 +8154,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -8162,6 +8209,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -8193,6 +8241,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; "wp-archivebot" = dontDistribute super."wp-archivebot"; "wrap" = dontDistribute super."wrap"; "wraparound" = dontDistribute super."wraparound"; @@ -8356,6 +8405,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; "yesod-auth-oauth2" = dontDistribute super."yesod-auth-oauth2"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; @@ -8385,6 +8435,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8460,6 +8511,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_2"; "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = dontDistribute super."zim-parser"; "zip-archive" = doDistribute super."zip-archive_0_2_3_5"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index df2eee386b6..1b029b2e72e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.3"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -335,6 +335,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -616,6 +617,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -1234,15 +1236,20 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; + "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1260,6 +1267,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "amazonka-support" = dontDistribute super."amazonka-support"; "amazonka-swf" = dontDistribute super."amazonka-swf"; "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; "amazonka-workspaces" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_10_1"; @@ -1280,6 +1288,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -2105,6 +2114,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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" = doDistribute super."composition_1_0_1_0"; "composition-extra" = dontDistribute super."composition-extra"; @@ -2470,9 +2480,11 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -2622,6 +2634,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; "diversity" = dontDistribute super."diversity"; + "dixi" = dontDistribute super."dixi"; "djinn" = dontDistribute super."djinn"; "djinn-ghc" = doDistribute super."djinn-ghc_0_0_2_2"; "djinn-th" = dontDistribute super."djinn-th"; @@ -2713,6 +2726,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -2785,6 +2799,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3016,6 +3031,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -3047,6 +3063,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3068,6 +3085,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3130,6 +3148,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3208,6 +3227,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3242,7 +3262,9 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3383,6 +3405,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3449,6 +3472,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = dontDistribute super."grouped-list"; "groupoid" = dontDistribute super."groupoid"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3705,6 +3729,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -3788,6 +3813,8 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -4352,6 +4379,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_6_1"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5234,6 +5262,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5252,6 +5281,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -5289,6 +5319,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5311,6 +5342,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -5528,6 +5560,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "mvc" = dontDistribute super."mvc"; "mvc-updates" = dontDistribute super."mvc-updates"; "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = dontDistribute super."mwc-probability"; "mwc-random" = doDistribute super."mwc-random_0_13_2_2"; "mwc-random-monad" = dontDistribute super."mwc-random-monad"; "myTestlll" = dontDistribute super."myTestlll"; @@ -6052,6 +6085,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -6060,6 +6094,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -6098,6 +6133,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -6462,6 +6498,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6756,6 +6793,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; "sdl2" = dontDistribute super."sdl2"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; "sdl2-image" = dontDistribute super."sdl2-image"; "sdl2-ttf" = dontDistribute super."sdl2-ttf"; @@ -6768,6 +6806,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -7121,6 +7160,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "species" = dontDistribute super."species"; "speculation" = doDistribute super."speculation_1_5_0_1"; "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"; @@ -7185,6 +7225,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "stackage-types" = dontDistribute super."stackage-types"; "stackage-update" = dontDistribute super."stackage-update"; "stackage-upload" = dontDistribute super."stackage-upload"; + "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"; @@ -7362,6 +7403,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -7432,6 +7474,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7605,6 +7648,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7761,6 +7805,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -7878,6 +7923,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -8108,6 +8154,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -8162,6 +8209,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "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"; @@ -8193,6 +8241,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; "wp-archivebot" = dontDistribute super."wp-archivebot"; "wrap" = dontDistribute super."wrap"; "wraparound" = dontDistribute super."wraparound"; @@ -8356,6 +8405,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; "yesod-auth-oauth2" = dontDistribute super."yesod-auth-oauth2"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; @@ -8385,6 +8435,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8460,6 +8511,7 @@ self: super: assert super.ghc.name == "ghc-7.8.3"; { "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_2"; "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = dontDistribute super."zim-parser"; "zip-archive" = doDistribute super."zip-archive_0_2_3_5"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index 7e329288c55..cfda037af8b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.4"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -334,6 +334,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -613,6 +614,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -1230,15 +1232,20 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; + "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1256,6 +1263,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-support" = dontDistribute super."amazonka-support"; "amazonka-swf" = dontDistribute super."amazonka-swf"; "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; "amazonka-workspaces" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_10_1"; @@ -1276,6 +1284,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -2097,6 +2106,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = doDistribute super."composition_1_0_1_0"; "composition-extra" = dontDistribute super."composition-extra"; @@ -2461,9 +2471,11 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2613,6 +2625,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; "diversity" = dontDistribute super."diversity"; + "dixi" = dontDistribute super."dixi"; "djinn" = dontDistribute super."djinn"; "djinn-ghc" = doDistribute super."djinn-ghc_0_0_2_2"; "djinn-th" = dontDistribute super."djinn-th"; @@ -2704,6 +2717,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2774,6 +2788,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3006,6 +3021,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -3037,6 +3053,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3058,6 +3075,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3120,6 +3138,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3198,6 +3217,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3232,7 +3252,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3372,6 +3394,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3438,6 +3461,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = dontDistribute super."grouped-list"; "groupoid" = dontDistribute super."groupoid"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3695,6 +3719,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3778,6 +3803,8 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -4340,6 +4367,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_6_1"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5222,6 +5250,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5240,6 +5269,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5277,6 +5307,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5299,6 +5330,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5516,6 +5548,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "mvc" = dontDistribute super."mvc"; "mvc-updates" = dontDistribute super."mvc-updates"; "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = dontDistribute super."mwc-probability"; "mwc-random" = doDistribute super."mwc-random_0_13_2_2"; "mwc-random-monad" = dontDistribute super."mwc-random-monad"; "myTestlll" = dontDistribute super."myTestlll"; @@ -6039,6 +6072,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -6047,6 +6081,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6085,6 +6120,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6448,6 +6484,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6741,6 +6778,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; "sdl2" = dontDistribute super."sdl2"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; "sdl2-image" = dontDistribute super."sdl2-image"; "sdl2-ttf" = dontDistribute super."sdl2-ttf"; @@ -6753,6 +6791,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -7105,6 +7144,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "species" = dontDistribute super."species"; "speculation" = doDistribute super."speculation_1_5_0_1"; "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"; @@ -7169,6 +7209,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "stackage-types" = dontDistribute super."stackage-types"; "stackage-update" = dontDistribute super."stackage-update"; "stackage-upload" = dontDistribute super."stackage-upload"; + "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"; @@ -7346,6 +7387,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7416,6 +7458,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7589,6 +7632,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7745,6 +7789,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -7861,6 +7906,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8091,6 +8137,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8145,6 +8192,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8176,6 +8224,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; "wp-archivebot" = dontDistribute super."wp-archivebot"; "wrap" = dontDistribute super."wrap"; "wraparound" = dontDistribute super."wraparound"; @@ -8339,6 +8388,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_11"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; @@ -8368,6 +8418,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8443,6 +8494,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_2"; "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = dontDistribute super."zim-parser"; "zip-archive" = doDistribute super."zip-archive_0_2_3_5"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index ade57c125a5..88fe2a12f3b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.4"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -334,6 +334,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -613,6 +614,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -1229,15 +1231,20 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; + "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1255,6 +1262,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-support" = dontDistribute super."amazonka-support"; "amazonka-swf" = dontDistribute super."amazonka-swf"; "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; "amazonka-workspaces" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_10_1"; @@ -1275,6 +1283,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1568,6 +1577,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -2093,6 +2103,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = doDistribute super."composition_1_0_1_0"; "composition-extra" = dontDistribute super."composition-extra"; @@ -2455,9 +2466,11 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2607,6 +2620,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "dlist" = doDistribute super."dlist_0_7_1"; @@ -2697,6 +2711,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2767,6 +2782,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2999,6 +3015,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -3030,6 +3047,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3051,6 +3069,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3113,6 +3132,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3191,6 +3211,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3225,7 +3246,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3365,6 +3388,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3431,6 +3455,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = dontDistribute super."grouped-list"; "groupoid" = dontDistribute super."groupoid"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3686,6 +3711,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3769,6 +3795,8 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -4328,6 +4356,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_6_2"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5209,6 +5238,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5227,6 +5257,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5264,6 +5295,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5286,6 +5318,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5502,6 +5535,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "mvc" = dontDistribute super."mvc"; "mvc-updates" = dontDistribute super."mvc-updates"; "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = dontDistribute super."mwc-probability"; "mwc-random" = doDistribute super."mwc-random_0_13_3_0"; "mwc-random-monad" = dontDistribute super."mwc-random-monad"; "myTestlll" = dontDistribute super."myTestlll"; @@ -6025,6 +6059,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -6033,6 +6068,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6071,6 +6107,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6434,6 +6471,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6727,6 +6765,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; "sdl2" = dontDistribute super."sdl2"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; "sdl2-image" = dontDistribute super."sdl2-image"; "sdl2-ttf" = dontDistribute super."sdl2-ttf"; @@ -6739,6 +6778,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -7090,6 +7130,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "species" = dontDistribute super."species"; "speculation" = doDistribute super."speculation_1_5_0_1"; "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"; @@ -7154,6 +7195,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "stackage-types" = dontDistribute super."stackage-types"; "stackage-update" = dontDistribute super."stackage-update"; "stackage-upload" = dontDistribute super."stackage-upload"; + "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"; @@ -7330,6 +7372,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7400,6 +7443,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7570,6 +7614,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7726,6 +7771,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -7841,6 +7887,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8071,6 +8118,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8125,6 +8173,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8156,6 +8205,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; "wp-archivebot" = dontDistribute super."wp-archivebot"; "wrap" = dontDistribute super."wrap"; "wraparound" = dontDistribute super."wraparound"; @@ -8319,6 +8369,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; @@ -8348,6 +8399,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8423,6 +8475,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_2"; "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = dontDistribute super."zim-parser"; "zip-archive" = doDistribute super."zip-archive_0_2_3_5"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index 4509bb5f976..37ecceb293d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.4"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -334,6 +334,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -612,6 +613,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -1228,15 +1230,20 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; + "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1254,6 +1261,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-support" = dontDistribute super."amazonka-support"; "amazonka-swf" = dontDistribute super."amazonka-swf"; "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; "amazonka-workspaces" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_10_1"; @@ -1274,6 +1282,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1567,6 +1576,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1869,6 +1879,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2"; "cash" = dontDistribute super."cash"; @@ -2087,6 +2098,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = doDistribute super."composition_1_0_1_0"; "composition-extra" = dontDistribute super."composition-extra"; @@ -2448,9 +2460,11 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2600,6 +2614,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "dlist" = doDistribute super."dlist_0_7_1"; @@ -2690,6 +2705,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2760,6 +2776,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2989,6 +3006,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -3020,6 +3038,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3041,6 +3060,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3102,6 +3122,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3180,6 +3201,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3214,7 +3236,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3353,6 +3377,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3418,6 +3443,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = dontDistribute super."grouped-list"; "groupoid" = dontDistribute super."groupoid"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3673,6 +3699,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3755,6 +3782,8 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -4312,6 +4341,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_7_1"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5184,6 +5214,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5202,6 +5233,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5239,6 +5271,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5261,6 +5294,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5335,6 +5369,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -5475,6 +5510,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "mvc" = dontDistribute super."mvc"; "mvc-updates" = dontDistribute super."mvc-updates"; "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = dontDistribute super."mwc-probability"; "mwc-random" = doDistribute super."mwc-random_0_13_3_0"; "mwc-random-monad" = dontDistribute super."mwc-random-monad"; "myTestlll" = dontDistribute super."myTestlll"; @@ -5994,6 +6030,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -6002,6 +6039,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6040,6 +6078,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6401,6 +6440,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6694,6 +6734,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; "sdl2" = dontDistribute super."sdl2"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; "sdl2-image" = dontDistribute super."sdl2-image"; "sdl2-ttf" = dontDistribute super."sdl2-ttf"; @@ -6706,6 +6747,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -7055,6 +7097,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "species" = dontDistribute super."species"; "speculation" = doDistribute super."speculation_1_5_0_1"; "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"; @@ -7119,6 +7162,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "stackage-types" = dontDistribute super."stackage-types"; "stackage-update" = dontDistribute super."stackage-update"; "stackage-upload" = dontDistribute super."stackage-upload"; + "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"; @@ -7295,6 +7339,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7363,6 +7408,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7531,6 +7577,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7685,6 +7732,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -7795,10 +7843,12 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; "unsafe" = dontDistribute super."unsafe"; @@ -7924,6 +7974,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -8027,6 +8078,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8081,6 +8133,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8111,6 +8164,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; "wp-archivebot" = dontDistribute super."wp-archivebot"; "wrap" = dontDistribute super."wrap"; "wraparound" = dontDistribute super."wraparound"; @@ -8273,6 +8327,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; @@ -8302,6 +8357,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8376,6 +8432,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index eb96c98c809..0a719cd2991 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.4"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -334,6 +334,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -612,6 +613,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -1228,15 +1230,20 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; + "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1254,6 +1261,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-support" = dontDistribute super."amazonka-support"; "amazonka-swf" = dontDistribute super."amazonka-swf"; "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; "amazonka-workspaces" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_10_1"; @@ -1274,6 +1282,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1567,6 +1576,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1869,6 +1879,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2"; "cash" = dontDistribute super."cash"; @@ -2087,6 +2098,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = doDistribute super."composition_1_0_1_0"; "composition-extra" = dontDistribute super."composition-extra"; @@ -2448,9 +2460,11 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2600,6 +2614,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "dlist" = doDistribute super."dlist_0_7_1"; @@ -2690,6 +2705,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2760,6 +2776,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2989,6 +3006,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -3019,6 +3037,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3040,6 +3059,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3101,6 +3121,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3179,6 +3200,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3213,7 +3235,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3352,6 +3376,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3417,6 +3442,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = dontDistribute super."grouped-list"; "groupoid" = dontDistribute super."groupoid"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3672,6 +3698,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3754,6 +3781,8 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -4311,6 +4340,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_8"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5180,6 +5210,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5198,6 +5229,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5235,6 +5267,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5257,6 +5290,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5331,6 +5365,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -5471,6 +5506,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "mvc" = dontDistribute super."mvc"; "mvc-updates" = dontDistribute super."mvc-updates"; "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = dontDistribute super."mwc-probability"; "mwc-random" = doDistribute super."mwc-random_0_13_3_0"; "mwc-random-monad" = dontDistribute super."mwc-random-monad"; "myTestlll" = dontDistribute super."myTestlll"; @@ -5990,6 +6026,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -5998,6 +6035,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6036,6 +6074,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6396,6 +6435,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6689,6 +6729,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; "sdl2" = dontDistribute super."sdl2"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; "sdl2-image" = dontDistribute super."sdl2-image"; "sdl2-ttf" = dontDistribute super."sdl2-ttf"; @@ -6701,6 +6742,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -7049,6 +7091,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "species" = dontDistribute super."species"; "speculation" = doDistribute super."speculation_1_5_0_1"; "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"; @@ -7113,6 +7156,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "stackage-types" = dontDistribute super."stackage-types"; "stackage-update" = dontDistribute super."stackage-update"; "stackage-upload" = dontDistribute super."stackage-upload"; + "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"; @@ -7289,6 +7333,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7357,6 +7402,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7525,6 +7571,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7679,6 +7726,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -7789,10 +7837,12 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; "unsafe" = dontDistribute super."unsafe"; @@ -7918,6 +7968,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -8021,6 +8072,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8075,6 +8127,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8105,6 +8158,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; "wp-archivebot" = dontDistribute super."wp-archivebot"; "wrap" = dontDistribute super."wrap"; "wraparound" = dontDistribute super."wraparound"; @@ -8267,6 +8321,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; @@ -8296,6 +8351,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8370,6 +8426,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index f459acda4b0..807e25d18c6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.4"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -334,6 +334,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -612,6 +613,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -1228,15 +1230,20 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; + "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1254,6 +1261,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-support" = dontDistribute super."amazonka-support"; "amazonka-swf" = dontDistribute super."amazonka-swf"; "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; "amazonka-workspaces" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_10_1"; @@ -1274,6 +1282,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1567,6 +1576,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1869,6 +1879,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2"; "cash" = dontDistribute super."cash"; @@ -2087,6 +2098,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = doDistribute super."composition_1_0_1_0"; "composition-extra" = dontDistribute super."composition-extra"; @@ -2448,9 +2460,11 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2600,6 +2614,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "dlist" = doDistribute super."dlist_0_7_1"; @@ -2690,6 +2705,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2760,6 +2776,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2989,6 +3006,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -3019,6 +3037,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3040,6 +3059,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3101,6 +3121,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3179,6 +3200,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3213,7 +3235,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3352,6 +3376,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3417,6 +3442,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = dontDistribute super."grouped-list"; "groupoid" = dontDistribute super."groupoid"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3672,6 +3698,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3754,6 +3781,8 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -4310,6 +4339,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_8_1"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5179,6 +5209,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5197,6 +5228,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5234,6 +5266,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5256,6 +5289,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5330,6 +5364,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -5470,6 +5505,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "mvc" = dontDistribute super."mvc"; "mvc-updates" = dontDistribute super."mvc-updates"; "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = dontDistribute super."mwc-probability"; "mwc-random" = doDistribute super."mwc-random_0_13_3_0"; "mwc-random-monad" = dontDistribute super."mwc-random-monad"; "myTestlll" = dontDistribute super."myTestlll"; @@ -5989,6 +6025,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -5997,6 +6034,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6035,6 +6073,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6395,6 +6434,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6688,6 +6728,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; "sdl2" = dontDistribute super."sdl2"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; "sdl2-image" = dontDistribute super."sdl2-image"; "sdl2-ttf" = dontDistribute super."sdl2-ttf"; @@ -6700,6 +6741,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -7047,6 +7089,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7111,6 +7154,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "stackage-types" = dontDistribute super."stackage-types"; "stackage-update" = dontDistribute super."stackage-update"; "stackage-upload" = dontDistribute super."stackage-upload"; + "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"; @@ -7287,6 +7331,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7355,6 +7400,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7522,6 +7568,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7676,6 +7723,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -7786,10 +7834,12 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; "unsafe" = dontDistribute super."unsafe"; @@ -7915,6 +7965,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -8018,6 +8069,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8072,6 +8124,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8102,6 +8155,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; "wp-archivebot" = dontDistribute super."wp-archivebot"; "wrap" = dontDistribute super."wrap"; "wraparound" = dontDistribute super."wraparound"; @@ -8264,6 +8318,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; @@ -8292,6 +8347,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8366,6 +8422,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index 473a411341e..3d185d8b333 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.4"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -334,6 +334,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -612,6 +613,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -1228,15 +1230,20 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; + "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1254,6 +1261,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-support" = dontDistribute super."amazonka-support"; "amazonka-swf" = dontDistribute super."amazonka-swf"; "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; "amazonka-workspaces" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_10_1"; @@ -1274,6 +1282,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1567,6 +1576,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1869,6 +1879,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2"; "cash" = dontDistribute super."cash"; @@ -2087,6 +2098,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = doDistribute super."composition_1_0_1_0"; "composition-extra" = dontDistribute super."composition-extra"; @@ -2448,9 +2460,11 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2599,6 +2613,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "dlist" = doDistribute super."dlist_0_7_1"; @@ -2689,6 +2704,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2759,6 +2775,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2988,6 +3005,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -3018,6 +3036,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3039,6 +3058,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3100,6 +3120,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3178,6 +3199,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3212,7 +3234,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3351,6 +3375,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3415,6 +3440,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = dontDistribute super."grouped-list"; "groupoid" = dontDistribute super."groupoid"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3670,6 +3696,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3752,6 +3779,8 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -4307,6 +4336,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_9"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5176,6 +5206,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5194,6 +5225,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5231,6 +5263,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5253,6 +5286,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5327,6 +5361,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -5467,6 +5502,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "mvc" = dontDistribute super."mvc"; "mvc-updates" = dontDistribute super."mvc-updates"; "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = dontDistribute super."mwc-probability"; "mwc-random" = doDistribute super."mwc-random_0_13_3_0"; "mwc-random-monad" = dontDistribute super."mwc-random-monad"; "myTestlll" = dontDistribute super."myTestlll"; @@ -5986,6 +6022,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -5994,6 +6031,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6032,6 +6070,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6392,6 +6431,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6685,6 +6725,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; "sdl2" = dontDistribute super."sdl2"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; "sdl2-image" = dontDistribute super."sdl2-image"; "sdl2-ttf" = dontDistribute super."sdl2-ttf"; @@ -6697,6 +6738,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -7044,6 +7086,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7108,6 +7151,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "stackage-types" = dontDistribute super."stackage-types"; "stackage-update" = dontDistribute super."stackage-update"; "stackage-upload" = dontDistribute super."stackage-upload"; + "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"; @@ -7284,6 +7328,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7351,6 +7396,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7518,6 +7564,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7672,6 +7719,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -7782,10 +7830,12 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; "unsafe" = dontDistribute super."unsafe"; @@ -7911,6 +7961,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -8014,6 +8065,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8068,6 +8120,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8098,6 +8151,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; "wp-archivebot" = dontDistribute super."wp-archivebot"; "wrap" = dontDistribute super."wrap"; "wraparound" = dontDistribute super."wraparound"; @@ -8260,6 +8314,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; @@ -8288,6 +8343,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8362,6 +8418,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index 86c4599aa48..03b0d820f99 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.4"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -333,6 +333,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -611,6 +612,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -1227,15 +1229,20 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; + "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1253,6 +1260,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-support" = dontDistribute super."amazonka-support"; "amazonka-swf" = dontDistribute super."amazonka-swf"; "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; "amazonka-workspaces" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_10_1"; @@ -1273,6 +1281,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1565,6 +1574,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1867,6 +1877,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2"; "cash" = dontDistribute super."cash"; @@ -2085,6 +2096,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = doDistribute super."composition_1_0_1_0"; "composition-extra" = dontDistribute super."composition-extra"; @@ -2445,9 +2457,11 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2596,6 +2610,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "dlist" = doDistribute super."dlist_0_7_1_1"; @@ -2686,6 +2701,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2756,6 +2772,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2985,6 +3002,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -3015,6 +3033,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3036,6 +3055,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3097,6 +3117,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3175,6 +3196,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3209,7 +3231,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3348,6 +3372,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3412,6 +3437,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = dontDistribute super."grouped-list"; "groupoid" = dontDistribute super."groupoid"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3667,6 +3693,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3749,6 +3776,8 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -4303,6 +4332,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_9"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5171,6 +5201,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5189,6 +5220,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5226,6 +5258,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5248,6 +5281,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5321,6 +5355,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -5460,6 +5495,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "mvc" = dontDistribute super."mvc"; "mvc-updates" = dontDistribute super."mvc-updates"; "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = dontDistribute super."mwc-probability"; "mwc-random" = doDistribute super."mwc-random_0_13_3_0"; "mwc-random-monad" = dontDistribute super."mwc-random-monad"; "myTestlll" = dontDistribute super."myTestlll"; @@ -5979,6 +6015,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -5987,6 +6024,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6025,6 +6063,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6384,6 +6423,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6652,6 +6692,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_3_8"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6676,6 +6717,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; "sdl2" = dontDistribute super."sdl2"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; "sdl2-image" = dontDistribute super."sdl2-image"; "sdl2-ttf" = dontDistribute super."sdl2-ttf"; @@ -6688,6 +6730,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -7035,6 +7078,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7099,6 +7143,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "stackage-types" = dontDistribute super."stackage-types"; "stackage-update" = dontDistribute super."stackage-update"; "stackage-upload" = dontDistribute super."stackage-upload"; + "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"; @@ -7275,6 +7320,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7342,6 +7388,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7509,6 +7556,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7663,6 +7711,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -7773,10 +7822,12 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; "unsafe" = dontDistribute super."unsafe"; @@ -7902,6 +7953,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -8005,6 +8057,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8059,6 +8112,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8089,6 +8143,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; "wp-archivebot" = dontDistribute super."wp-archivebot"; "wrap" = dontDistribute super."wrap"; "wraparound" = dontDistribute super."wraparound"; @@ -8251,6 +8306,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; @@ -8279,6 +8335,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8353,6 +8410,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index bcd56e34e01..d9021160b64 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.4"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -333,6 +333,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -493,6 +494,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "HaMinitel" = dontDistribute super."HaMinitel"; "HaPy" = dontDistribute super."HaPy"; "HaRe" = dontDistribute super."HaRe"; + "HaTeX" = doDistribute super."HaTeX_3_16_1_1"; "HaTeX-meta" = dontDistribute super."HaTeX-meta"; "HaTeX-qq" = dontDistribute super."HaTeX-qq"; "HaVSA" = dontDistribute super."HaVSA"; @@ -610,6 +612,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -1225,15 +1228,20 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; + "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1251,6 +1259,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-support" = dontDistribute super."amazonka-support"; "amazonka-swf" = dontDistribute super."amazonka-swf"; "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; "amazonka-workspaces" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_10_1"; @@ -1271,6 +1280,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_2"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1563,6 +1573,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1865,6 +1876,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2"; "cash" = dontDistribute super."cash"; @@ -2082,6 +2094,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = doDistribute super."composition_1_0_1_0"; "composition-extra" = dontDistribute super."composition-extra"; @@ -2440,9 +2453,11 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2591,6 +2606,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "dlist" = doDistribute super."dlist_0_7_1_1"; @@ -2681,6 +2697,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2751,6 +2768,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2979,6 +2997,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -3009,6 +3028,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3030,6 +3050,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3091,6 +3112,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3169,6 +3191,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3202,7 +3225,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3341,6 +3366,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3405,6 +3431,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = dontDistribute super."grouped-list"; "groupoid" = dontDistribute super."groupoid"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3660,6 +3687,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3742,6 +3770,8 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -4296,6 +4326,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_9"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5164,6 +5195,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5182,6 +5214,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5219,6 +5252,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5241,6 +5275,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5314,6 +5349,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -5453,6 +5489,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "mvc" = dontDistribute super."mvc"; "mvc-updates" = dontDistribute super."mvc-updates"; "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = dontDistribute super."mwc-probability"; "mwc-random" = doDistribute super."mwc-random_0_13_3_0"; "mwc-random-monad" = dontDistribute super."mwc-random-monad"; "myTestlll" = dontDistribute super."myTestlll"; @@ -5970,6 +6007,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -5978,6 +6016,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6016,6 +6055,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6373,6 +6413,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6641,6 +6682,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_3_8"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6665,6 +6707,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; "sdl2" = dontDistribute super."sdl2"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; "sdl2-image" = dontDistribute super."sdl2-image"; "sdl2-ttf" = dontDistribute super."sdl2-ttf"; @@ -6677,6 +6720,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -7024,6 +7068,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7088,6 +7133,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "stackage-types" = dontDistribute super."stackage-types"; "stackage-update" = dontDistribute super."stackage-update"; "stackage-upload" = dontDistribute super."stackage-upload"; + "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"; @@ -7262,6 +7308,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7329,6 +7376,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7496,6 +7544,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7650,6 +7699,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -7760,10 +7810,12 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; "unsafe" = dontDistribute super."unsafe"; @@ -7888,6 +7940,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -7991,6 +8044,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8045,6 +8099,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8074,6 +8129,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; "wp-archivebot" = dontDistribute super."wp-archivebot"; "wrap" = dontDistribute super."wrap"; "wraparound" = dontDistribute super."wraparound"; @@ -8236,6 +8292,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; @@ -8264,6 +8321,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8338,6 +8396,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index 29468b882df..72bc49e3c83 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.4"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -334,6 +334,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -613,6 +614,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -1229,15 +1231,20 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; + "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1255,6 +1262,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-support" = dontDistribute super."amazonka-support"; "amazonka-swf" = dontDistribute super."amazonka-swf"; "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; "amazonka-workspaces" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_10_1"; @@ -1275,6 +1283,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1568,6 +1577,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -2092,6 +2102,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = doDistribute super."composition_1_0_1_0"; "composition-extra" = dontDistribute super."composition-extra"; @@ -2453,9 +2464,11 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2605,6 +2618,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "dlist" = doDistribute super."dlist_0_7_1"; @@ -2695,6 +2709,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2765,6 +2780,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2997,6 +3013,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -3028,6 +3045,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3049,6 +3067,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3111,6 +3130,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3189,6 +3209,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3223,7 +3244,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3362,6 +3385,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3428,6 +3452,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = dontDistribute super."grouped-list"; "groupoid" = dontDistribute super."groupoid"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3683,6 +3708,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3766,6 +3792,8 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -4325,6 +4353,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_6_2"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5206,6 +5235,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5224,6 +5254,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5261,6 +5292,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5283,6 +5315,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5499,6 +5532,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "mvc" = dontDistribute super."mvc"; "mvc-updates" = dontDistribute super."mvc-updates"; "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = dontDistribute super."mwc-probability"; "mwc-random" = doDistribute super."mwc-random_0_13_3_0"; "mwc-random-monad" = dontDistribute super."mwc-random-monad"; "myTestlll" = dontDistribute super."myTestlll"; @@ -6021,6 +6055,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -6029,6 +6064,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6067,6 +6103,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6429,6 +6466,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6722,6 +6760,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; "sdl2" = dontDistribute super."sdl2"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; "sdl2-image" = dontDistribute super."sdl2-image"; "sdl2-ttf" = dontDistribute super."sdl2-ttf"; @@ -6734,6 +6773,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -7084,6 +7124,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "species" = dontDistribute super."species"; "speculation" = doDistribute super."speculation_1_5_0_1"; "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"; @@ -7148,6 +7189,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "stackage-types" = dontDistribute super."stackage-types"; "stackage-update" = dontDistribute super."stackage-update"; "stackage-upload" = dontDistribute super."stackage-upload"; + "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"; @@ -7324,6 +7366,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7394,6 +7437,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7564,6 +7608,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7720,6 +7765,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -7835,6 +7881,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7961,6 +8008,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -8064,6 +8112,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8118,6 +8167,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8149,6 +8199,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; "wp-archivebot" = dontDistribute super."wp-archivebot"; "wrap" = dontDistribute super."wrap"; "wraparound" = dontDistribute super."wraparound"; @@ -8312,6 +8363,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; @@ -8341,6 +8393,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8416,6 +8469,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_2"; "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = dontDistribute super."zim-parser"; "zip-archive" = doDistribute super."zip-archive_0_2_3_5"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index bd4ea0dd052..4e3b1824c72 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.4"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -334,6 +334,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -612,6 +613,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -1228,15 +1230,20 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; + "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1254,6 +1261,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-support" = dontDistribute super."amazonka-support"; "amazonka-swf" = dontDistribute super."amazonka-swf"; "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; "amazonka-workspaces" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_10_1"; @@ -1274,6 +1282,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1567,6 +1576,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -2091,6 +2101,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = doDistribute super."composition_1_0_1_0"; "composition-extra" = dontDistribute super."composition-extra"; @@ -2452,9 +2463,11 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2604,6 +2617,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "dlist" = doDistribute super."dlist_0_7_1"; @@ -2694,6 +2708,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2764,6 +2779,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2995,6 +3011,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -3026,6 +3043,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3047,6 +3065,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3109,6 +3128,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3187,6 +3207,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3221,7 +3242,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3360,6 +3383,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3426,6 +3450,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = dontDistribute super."grouped-list"; "groupoid" = dontDistribute super."groupoid"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3681,6 +3706,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3763,6 +3789,8 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -4321,6 +4349,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_7"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5202,6 +5231,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5220,6 +5250,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5257,6 +5288,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5279,6 +5311,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5494,6 +5527,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "mvc" = dontDistribute super."mvc"; "mvc-updates" = dontDistribute super."mvc-updates"; "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = dontDistribute super."mwc-probability"; "mwc-random" = doDistribute super."mwc-random_0_13_3_0"; "mwc-random-monad" = dontDistribute super."mwc-random-monad"; "myTestlll" = dontDistribute super."myTestlll"; @@ -6015,6 +6049,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -6023,6 +6058,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6061,6 +6097,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6423,6 +6460,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6716,6 +6754,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; "sdl2" = dontDistribute super."sdl2"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; "sdl2-image" = dontDistribute super."sdl2-image"; "sdl2-ttf" = dontDistribute super."sdl2-ttf"; @@ -6728,6 +6767,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -7078,6 +7118,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "species" = dontDistribute super."species"; "speculation" = doDistribute super."speculation_1_5_0_1"; "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"; @@ -7142,6 +7183,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "stackage-types" = dontDistribute super."stackage-types"; "stackage-update" = dontDistribute super."stackage-update"; "stackage-upload" = dontDistribute super."stackage-upload"; + "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"; @@ -7318,6 +7360,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7387,6 +7430,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7557,6 +7601,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7713,6 +7758,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -7828,6 +7874,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7954,6 +8001,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -8057,6 +8105,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8111,6 +8160,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8142,6 +8192,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; "wp-archivebot" = dontDistribute super."wp-archivebot"; "wrap" = dontDistribute super."wrap"; "wraparound" = dontDistribute super."wraparound"; @@ -8305,6 +8356,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; @@ -8334,6 +8386,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8409,6 +8462,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_2"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index 973c44f885e..3bde16664d9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.4"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -334,6 +334,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -612,6 +613,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -1228,15 +1230,20 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; + "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1254,6 +1261,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-support" = dontDistribute super."amazonka-support"; "amazonka-swf" = dontDistribute super."amazonka-swf"; "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; "amazonka-workspaces" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_10_1"; @@ -1274,6 +1282,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1567,6 +1576,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -2090,6 +2100,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = doDistribute super."composition_1_0_1_0"; "composition-extra" = dontDistribute super."composition-extra"; @@ -2451,9 +2462,11 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2603,6 +2616,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "dlist" = doDistribute super."dlist_0_7_1"; @@ -2693,6 +2707,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2763,6 +2778,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2994,6 +3010,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -3025,6 +3042,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3046,6 +3064,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3108,6 +3127,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3186,6 +3206,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3220,7 +3241,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3359,6 +3382,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3425,6 +3449,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = dontDistribute super."grouped-list"; "groupoid" = dontDistribute super."groupoid"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3680,6 +3705,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3762,6 +3788,8 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -4320,6 +4348,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_7"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5200,6 +5229,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5218,6 +5248,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5255,6 +5286,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5277,6 +5309,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5492,6 +5525,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "mvc" = dontDistribute super."mvc"; "mvc-updates" = dontDistribute super."mvc-updates"; "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = dontDistribute super."mwc-probability"; "mwc-random" = doDistribute super."mwc-random_0_13_3_0"; "mwc-random-monad" = dontDistribute super."mwc-random-monad"; "myTestlll" = dontDistribute super."myTestlll"; @@ -6013,6 +6047,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -6021,6 +6056,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6059,6 +6095,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6421,6 +6458,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6714,6 +6752,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; "sdl2" = dontDistribute super."sdl2"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; "sdl2-image" = dontDistribute super."sdl2-image"; "sdl2-ttf" = dontDistribute super."sdl2-ttf"; @@ -6726,6 +6765,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -7076,6 +7116,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "species" = dontDistribute super."species"; "speculation" = doDistribute super."speculation_1_5_0_1"; "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"; @@ -7140,6 +7181,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "stackage-types" = dontDistribute super."stackage-types"; "stackage-update" = dontDistribute super."stackage-update"; "stackage-upload" = dontDistribute super."stackage-upload"; + "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"; @@ -7316,6 +7358,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7385,6 +7428,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7555,6 +7599,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7710,6 +7755,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -7825,6 +7871,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7950,6 +7997,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -8053,6 +8101,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8107,6 +8156,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8138,6 +8188,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; "wp-archivebot" = dontDistribute super."wp-archivebot"; "wrap" = dontDistribute super."wrap"; "wraparound" = dontDistribute super."wraparound"; @@ -8301,6 +8352,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; @@ -8330,6 +8382,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8405,6 +8458,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_2"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index 112dc617c66..a4735937363 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.4"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -334,6 +334,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -612,6 +613,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -1228,15 +1230,20 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; + "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1254,6 +1261,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-support" = dontDistribute super."amazonka-support"; "amazonka-swf" = dontDistribute super."amazonka-swf"; "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; "amazonka-workspaces" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_10_1"; @@ -1274,6 +1282,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1567,6 +1576,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1871,6 +1881,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2"; "cash" = dontDistribute super."cash"; @@ -2089,6 +2100,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = doDistribute super."composition_1_0_1_0"; "composition-extra" = dontDistribute super."composition-extra"; @@ -2450,9 +2462,11 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2602,6 +2616,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "dlist" = doDistribute super."dlist_0_7_1"; @@ -2692,6 +2707,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2762,6 +2778,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2993,6 +3010,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -3024,6 +3042,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3045,6 +3064,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3107,6 +3127,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3185,6 +3206,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3219,7 +3241,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3358,6 +3382,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3424,6 +3449,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "groundhog-postgresql" = doDistribute super."groundhog-postgresql_0_7_0_1"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = dontDistribute super."grouped-list"; "groupoid" = dontDistribute super."groupoid"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3679,6 +3705,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3761,6 +3788,8 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -4319,6 +4348,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_7_1"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5193,6 +5223,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5211,6 +5242,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5248,6 +5280,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5270,6 +5303,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5485,6 +5519,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "mvc" = dontDistribute super."mvc"; "mvc-updates" = dontDistribute super."mvc-updates"; "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = dontDistribute super."mwc-probability"; "mwc-random" = doDistribute super."mwc-random_0_13_3_0"; "mwc-random-monad" = dontDistribute super."mwc-random-monad"; "myTestlll" = dontDistribute super."myTestlll"; @@ -6006,6 +6041,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -6014,6 +6050,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6052,6 +6089,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6414,6 +6452,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6707,6 +6746,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; "sdl2" = dontDistribute super."sdl2"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; "sdl2-image" = dontDistribute super."sdl2-image"; "sdl2-ttf" = dontDistribute super."sdl2-ttf"; @@ -6719,6 +6759,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -7069,6 +7110,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "species" = dontDistribute super."species"; "speculation" = doDistribute super."speculation_1_5_0_1"; "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"; @@ -7133,6 +7175,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "stackage-types" = dontDistribute super."stackage-types"; "stackage-update" = dontDistribute super."stackage-update"; "stackage-upload" = dontDistribute super."stackage-upload"; + "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"; @@ -7309,6 +7352,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7378,6 +7422,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7548,6 +7593,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7703,6 +7749,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -7818,6 +7865,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7943,6 +7991,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -8046,6 +8095,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8100,6 +8150,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8131,6 +8182,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; "wp-archivebot" = dontDistribute super."wp-archivebot"; "wrap" = dontDistribute super."wrap"; "wraparound" = dontDistribute super."wraparound"; @@ -8294,6 +8346,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; @@ -8323,6 +8376,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8398,6 +8452,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "zeromq4-haskell" = doDistribute super."zeromq4-haskell_0_6_2"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index 40ee620c36f..f8436e1c0b1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.4"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -334,6 +334,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -612,6 +613,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -1228,15 +1230,20 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; + "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1254,6 +1261,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-support" = dontDistribute super."amazonka-support"; "amazonka-swf" = dontDistribute super."amazonka-swf"; "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; "amazonka-workspaces" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_10_1"; @@ -1274,6 +1282,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1567,6 +1576,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1871,6 +1881,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2"; "cash" = dontDistribute super."cash"; @@ -2089,6 +2100,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = doDistribute super."composition_1_0_1_0"; "composition-extra" = dontDistribute super."composition-extra"; @@ -2450,9 +2462,11 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2602,6 +2616,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "dlist" = doDistribute super."dlist_0_7_1"; @@ -2692,6 +2707,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2762,6 +2778,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2991,6 +3008,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -3022,6 +3040,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3043,6 +3062,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3105,6 +3125,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3183,6 +3204,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3217,7 +3239,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3356,6 +3380,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3421,6 +3446,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = dontDistribute super."grouped-list"; "groupoid" = dontDistribute super."groupoid"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3676,6 +3702,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3758,6 +3785,8 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -4315,6 +4344,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_7_1"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5188,6 +5218,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5206,6 +5237,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5243,6 +5275,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5265,6 +5298,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5480,6 +5514,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "mvc" = dontDistribute super."mvc"; "mvc-updates" = dontDistribute super."mvc-updates"; "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = dontDistribute super."mwc-probability"; "mwc-random" = doDistribute super."mwc-random_0_13_3_0"; "mwc-random-monad" = dontDistribute super."mwc-random-monad"; "myTestlll" = dontDistribute super."myTestlll"; @@ -6001,6 +6036,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -6009,6 +6045,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6047,6 +6084,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6409,6 +6447,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6702,6 +6741,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; "sdl2" = dontDistribute super."sdl2"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; "sdl2-image" = dontDistribute super."sdl2-image"; "sdl2-ttf" = dontDistribute super."sdl2-ttf"; @@ -6714,6 +6754,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -7064,6 +7105,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "species" = dontDistribute super."species"; "speculation" = doDistribute super."speculation_1_5_0_1"; "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"; @@ -7128,6 +7170,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "stackage-types" = dontDistribute super."stackage-types"; "stackage-update" = dontDistribute super."stackage-update"; "stackage-upload" = dontDistribute super."stackage-upload"; + "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"; @@ -7304,6 +7347,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7373,6 +7417,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7543,6 +7588,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7697,6 +7743,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -7812,6 +7859,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7937,6 +7985,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -8040,6 +8089,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8094,6 +8144,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8125,6 +8176,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; "wp-archivebot" = dontDistribute super."wp-archivebot"; "wrap" = dontDistribute super."wrap"; "wraparound" = dontDistribute super."wraparound"; @@ -8288,6 +8340,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; @@ -8317,6 +8370,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8391,6 +8445,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index 45909e59683..a9e76b26d8a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.4"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -334,6 +334,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -612,6 +613,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -1228,15 +1230,20 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = dontDistribute super."amazonka-elasticache"; "amazonka-elasticbeanstalk" = dontDistribute super."amazonka-elasticbeanstalk"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; "amazonka-elastictranscoder" = dontDistribute super."amazonka-elastictranscoder"; "amazonka-elb" = dontDistribute super."amazonka-elb"; "amazonka-emr" = dontDistribute super."amazonka-emr"; "amazonka-glacier" = dontDistribute super."amazonka-glacier"; "amazonka-iam" = dontDistribute super."amazonka-iam"; "amazonka-importexport" = dontDistribute super."amazonka-importexport"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; + "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; "amazonka-lambda" = dontDistribute super."amazonka-lambda"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = dontDistribute super."amazonka-opsworks"; "amazonka-rds" = dontDistribute super."amazonka-rds"; @@ -1254,6 +1261,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-support" = dontDistribute super."amazonka-support"; "amazonka-swf" = dontDistribute super."amazonka-swf"; "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; "amazonka-workspaces" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_10_1"; @@ -1274,6 +1282,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_1"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1567,6 +1576,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1871,6 +1881,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2"; "cash" = dontDistribute super."cash"; @@ -2089,6 +2100,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = doDistribute super."composition_1_0_1_0"; "composition-extra" = dontDistribute super."composition-extra"; @@ -2450,9 +2462,11 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2602,6 +2616,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "dlist" = doDistribute super."dlist_0_7_1"; @@ -2692,6 +2707,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2762,6 +2778,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2991,6 +3008,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -3022,6 +3040,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3043,6 +3062,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3104,6 +3124,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3182,6 +3203,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3216,7 +3238,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3355,6 +3379,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3420,6 +3445,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = dontDistribute super."grouped-list"; "groupoid" = dontDistribute super."groupoid"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3675,6 +3701,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3757,6 +3784,8 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -4314,6 +4343,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_7_1"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5186,6 +5216,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5204,6 +5235,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5241,6 +5273,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5263,6 +5296,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5337,6 +5371,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -5477,6 +5512,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "mvc" = dontDistribute super."mvc"; "mvc-updates" = dontDistribute super."mvc-updates"; "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = dontDistribute super."mwc-probability"; "mwc-random" = doDistribute super."mwc-random_0_13_3_0"; "mwc-random-monad" = dontDistribute super."mwc-random-monad"; "myTestlll" = dontDistribute super."myTestlll"; @@ -5997,6 +6033,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -6005,6 +6042,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6043,6 +6081,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6405,6 +6444,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6698,6 +6738,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; "sdl2" = dontDistribute super."sdl2"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; "sdl2-image" = dontDistribute super."sdl2-image"; "sdl2-ttf" = dontDistribute super."sdl2-ttf"; @@ -6710,6 +6751,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -7060,6 +7102,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "species" = dontDistribute super."species"; "speculation" = doDistribute super."speculation_1_5_0_1"; "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"; @@ -7124,6 +7167,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "stackage-types" = dontDistribute super."stackage-types"; "stackage-update" = dontDistribute super."stackage-update"; "stackage-upload" = dontDistribute super."stackage-upload"; + "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"; @@ -7300,6 +7344,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7369,6 +7414,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7539,6 +7585,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7693,6 +7740,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -7808,6 +7856,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7933,6 +7982,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -8036,6 +8086,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8090,6 +8141,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8121,6 +8173,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; "wp-archivebot" = dontDistribute super."wp-archivebot"; "wrap" = dontDistribute super."wrap"; "wraparound" = dontDistribute super."wraparound"; @@ -8284,6 +8337,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; @@ -8313,6 +8367,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8387,6 +8442,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index b11efbecd5d..f029092a405 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.4"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -331,6 +331,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -489,6 +490,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "HaMinitel" = dontDistribute super."HaMinitel"; "HaPy" = dontDistribute super."HaPy"; "HaRe" = dontDistribute super."HaRe"; + "HaTeX" = doDistribute super."HaTeX_3_16_1_1"; "HaTeX-meta" = dontDistribute super."HaTeX-meta"; "HaTeX-qq" = dontDistribute super."HaTeX-qq"; "HaVSA" = dontDistribute super."HaVSA"; @@ -605,6 +607,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -615,6 +618,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "Limit" = dontDistribute super."Limit"; "LinearSplit" = dontDistribute super."LinearSplit"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; @@ -1215,15 +1219,20 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_3"; "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_0_3_3"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_3"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_3"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_3"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_3"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_3"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_3"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; "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"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_3"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_3"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_3"; @@ -1241,6 +1250,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-support" = doDistribute super."amazonka-support_0_3_3"; "amazonka-swf" = doDistribute super."amazonka-swf_0_3_3"; "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; "amazonka-workspaces" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_12_2"; @@ -1261,6 +1271,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_2"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1550,6 +1561,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1849,6 +1861,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2"; "cash" = dontDistribute super."cash"; @@ -2065,6 +2078,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = doDistribute super."composition_1_0_1_0"; "composition-extra" = dontDistribute super."composition-extra"; @@ -2419,9 +2433,11 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2570,6 +2586,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "dlist" = doDistribute super."dlist_0_7_1_1"; @@ -2660,6 +2677,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2730,6 +2748,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2957,6 +2976,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -2987,6 +3007,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3007,6 +3028,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3066,6 +3088,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3144,6 +3167,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3177,7 +3201,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3315,6 +3341,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3376,6 +3403,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = dontDistribute super."grouped-list"; "groupoid" = dontDistribute super."groupoid"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3630,6 +3658,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3712,6 +3741,8 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -4262,6 +4293,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_9"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5113,6 +5145,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5130,6 +5163,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5167,6 +5201,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5189,6 +5224,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5258,6 +5294,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -5394,6 +5431,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5903,6 +5941,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -5911,6 +5950,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5947,6 +5987,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6303,6 +6344,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6570,6 +6612,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_3_8"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6594,6 +6637,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; "sdl2" = doDistribute super."sdl2_1_3_0"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; "sdl2-image" = dontDistribute super."sdl2-image"; "sdl2-ttf" = dontDistribute super."sdl2-ttf"; @@ -6606,6 +6650,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -6948,6 +6993,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7012,6 +7058,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "stackage-types" = doDistribute super."stackage-types_1_0_0"; "stackage-update" = dontDistribute super."stackage-update"; "stackage-upload" = dontDistribute super."stackage-upload"; + "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"; @@ -7184,6 +7231,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7242,6 +7290,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; + "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7249,6 +7298,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7416,6 +7466,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7570,6 +7621,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7679,10 +7731,12 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; "unsafe" = dontDistribute super."unsafe"; @@ -7806,6 +7860,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vector-space-points" = doDistribute super."vector-space-points_0_2_1"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -7908,6 +7963,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7962,6 +8018,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7991,6 +8048,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8149,6 +8207,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; "yesod-auth-oauth" = doDistribute super."yesod-auth-oauth_1_4_0_1"; "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; @@ -8177,6 +8236,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8251,6 +8311,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index bdabcf66741..ec9899ec447 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.4"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -331,6 +331,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -489,6 +490,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "HaMinitel" = dontDistribute super."HaMinitel"; "HaPy" = dontDistribute super."HaPy"; "HaRe" = dontDistribute super."HaRe"; + "HaTeX" = doDistribute super."HaTeX_3_16_1_1"; "HaTeX-meta" = dontDistribute super."HaTeX-meta"; "HaTeX-qq" = dontDistribute super."HaTeX-qq"; "HaVSA" = dontDistribute super."HaVSA"; @@ -605,6 +607,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -615,6 +618,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "Limit" = dontDistribute super."Limit"; "LinearSplit" = dontDistribute super."LinearSplit"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; @@ -1215,15 +1219,20 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_3"; "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_0_3_3"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_3"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_3"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_3"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_3"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_3"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_3"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; "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"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_3"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_3"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_3"; @@ -1241,6 +1250,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-support" = doDistribute super."amazonka-support_0_3_3"; "amazonka-swf" = doDistribute super."amazonka-swf_0_3_3"; "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; "amazonka-workspaces" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_12_2"; @@ -1261,6 +1271,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_2"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1550,6 +1561,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1848,6 +1860,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2"; "cash" = dontDistribute super."cash"; @@ -2064,6 +2077,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = doDistribute super."composition_1_0_1_0"; "composition-extra" = dontDistribute super."composition-extra"; @@ -2418,9 +2432,11 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2569,6 +2585,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "dlist" = doDistribute super."dlist_0_7_1_1"; @@ -2659,6 +2676,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2729,6 +2747,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2956,6 +2975,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -2986,6 +3006,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3006,6 +3027,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3065,6 +3087,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3143,6 +3166,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3176,7 +3200,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3314,6 +3340,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3375,6 +3402,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = dontDistribute super."grouped-list"; "groupoid" = dontDistribute super."groupoid"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3629,6 +3657,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3711,6 +3740,8 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -4260,6 +4291,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_9"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5111,6 +5143,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5128,6 +5161,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5165,6 +5199,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5187,6 +5222,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5256,6 +5292,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -5392,6 +5429,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5901,6 +5939,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -5909,6 +5948,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5945,6 +5985,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6301,6 +6342,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6568,6 +6610,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_3_8"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6592,6 +6635,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; "sdl2" = doDistribute super."sdl2_1_3_0"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; "sdl2-image" = dontDistribute super."sdl2-image"; "sdl2-ttf" = dontDistribute super."sdl2-ttf"; @@ -6604,6 +6648,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -6946,6 +6991,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7010,6 +7056,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "stackage-types" = doDistribute super."stackage-types_1_0_0"; "stackage-update" = dontDistribute super."stackage-update"; "stackage-upload" = dontDistribute super."stackage-upload"; + "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"; @@ -7182,6 +7229,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7240,6 +7288,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; + "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7247,6 +7296,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7414,6 +7464,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7568,6 +7619,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7677,10 +7729,12 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; "unsafe" = dontDistribute super."unsafe"; @@ -7803,6 +7857,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -7905,6 +7960,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7959,6 +8015,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7988,6 +8045,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8146,6 +8204,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; "yesod-auth-oauth" = doDistribute super."yesod-auth-oauth_1_4_0_1"; "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; @@ -8174,6 +8233,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8248,6 +8308,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index 3c1e30aae4d..fa6fe9727c1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.4"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -330,6 +330,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -346,6 +347,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -487,6 +489,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "HaMinitel" = dontDistribute super."HaMinitel"; "HaPy" = dontDistribute super."HaPy"; "HaRe" = dontDistribute super."HaRe"; + "HaTeX" = doDistribute super."HaTeX_3_16_1_1"; "HaTeX-meta" = dontDistribute super."HaTeX-meta"; "HaTeX-qq" = dontDistribute super."HaTeX-qq"; "HaVSA" = dontDistribute super."HaVSA"; @@ -603,6 +606,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -613,6 +617,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "Limit" = dontDistribute super."Limit"; "LinearSplit" = dontDistribute super."LinearSplit"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; @@ -1209,15 +1214,20 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_4"; "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_0_3_4"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_4"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_4"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_4"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_4"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_4"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_4"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; "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"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_4"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_4"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_4"; @@ -1235,6 +1245,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-support" = doDistribute super."amazonka-support_0_3_4"; "amazonka-swf" = doDistribute super."amazonka-swf_0_3_4"; "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; "amazonka-workspaces" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_12_2"; @@ -1255,6 +1266,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_2"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1540,6 +1552,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1836,6 +1849,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; @@ -2049,7 +2063,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = doDistribute super."composition_1_0_1_1"; "composition-extra" = dontDistribute super."composition-extra"; "composition-tree" = dontDistribute super."composition-tree"; "compression" = dontDistribute super."compression"; @@ -2400,9 +2416,11 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2550,6 +2568,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "dlist" = doDistribute super."dlist_0_7_1_1"; @@ -2640,6 +2659,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2655,6 +2675,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ed25519" = dontDistribute super."ed25519"; "ed25519-donna" = dontDistribute super."ed25519-donna"; "eddie" = dontDistribute super."eddie"; + "ede" = doDistribute super."ede_0_2_8_2"; "edenmodules" = dontDistribute super."edenmodules"; "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; @@ -2708,6 +2729,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2933,6 +2955,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -2962,6 +2985,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2982,6 +3006,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3041,6 +3066,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3119,6 +3145,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3152,7 +3179,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3288,6 +3317,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3348,6 +3378,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3601,6 +3632,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3653,6 +3685,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_5_0_3"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-crypto" = dontDistribute super."haskoin-crypto"; @@ -3682,6 +3715,8 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3966,6 +4001,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "hoodle-publish" = dontDistribute super."hoodle-publish"; "hoodle-render" = dontDistribute super."hoodle-render"; "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle" = doDistribute super."hoogle_4_2_41"; "hoogle-index" = dontDistribute super."hoogle-index"; "hooks-dir" = dontDistribute super."hooks-dir"; "hoovie" = dontDistribute super."hoovie"; @@ -4228,6 +4264,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_11_2"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5064,6 +5101,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5080,6 +5118,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5117,6 +5156,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5139,6 +5179,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5208,6 +5249,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -5345,6 +5387,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5847,6 +5890,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -5855,6 +5899,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5890,6 +5935,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6244,6 +6290,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6344,8 +6391,11 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "rest-core" = doDistribute super."rest-core_0_35_1"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_17_0_4"; + "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; + "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; "rest-stringmap" = doDistribute super."rest-stringmap_0_2_0_4"; "rest-types" = doDistribute super."rest-types_1_13_1"; + "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"; @@ -6504,6 +6554,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_3_8"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6528,6 +6579,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6540,6 +6592,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -6880,6 +6933,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6939,6 +6993,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "stackage-sandbox" = dontDistribute super."stackage-sandbox"; "stackage-setup" = dontDistribute super."stackage-setup"; "stackage-types" = doDistribute super."stackage-types_1_0_1_1"; + "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"; @@ -7110,6 +7165,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7163,8 +7219,10 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; + "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7172,6 +7230,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7339,6 +7398,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7491,6 +7551,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7600,10 +7661,12 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; "unsafe" = dontDistribute super."unsafe"; @@ -7726,6 +7789,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -7828,6 +7892,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7882,6 +7947,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7910,6 +7976,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8067,6 +8134,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; @@ -8094,6 +8162,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8168,6 +8237,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index 6d93ac1ef89..9aa629669e0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.4"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -330,6 +330,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -346,6 +347,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -487,6 +489,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "HaMinitel" = dontDistribute super."HaMinitel"; "HaPy" = dontDistribute super."HaPy"; "HaRe" = dontDistribute super."HaRe"; + "HaTeX" = doDistribute super."HaTeX_3_16_1_1"; "HaTeX-meta" = dontDistribute super."HaTeX-meta"; "HaTeX-qq" = dontDistribute super."HaTeX-qq"; "HaVSA" = dontDistribute super."HaVSA"; @@ -603,6 +606,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -613,6 +617,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "Limit" = dontDistribute super."Limit"; "LinearSplit" = dontDistribute super."LinearSplit"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; @@ -1208,15 +1213,20 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_4"; "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_0_3_4"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_4"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_4"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_4"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_4"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_4"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_4"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; "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"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_4"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_4"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_4"; @@ -1234,6 +1244,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-support" = doDistribute super."amazonka-support_0_3_4"; "amazonka-swf" = doDistribute super."amazonka-swf_0_3_4"; "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; "amazonka-workspaces" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_12_2"; @@ -1254,6 +1265,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_2"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1539,6 +1551,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1835,6 +1848,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; @@ -2048,7 +2062,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = doDistribute super."composition_1_0_1_1"; "composition-extra" = dontDistribute super."composition-extra"; "composition-tree" = dontDistribute super."composition-tree"; "compression" = dontDistribute super."compression"; @@ -2399,9 +2415,11 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2549,6 +2567,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "dlist" = doDistribute super."dlist_0_7_1_1"; @@ -2639,6 +2658,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2654,6 +2674,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ed25519" = dontDistribute super."ed25519"; "ed25519-donna" = dontDistribute super."ed25519-donna"; "eddie" = dontDistribute super."eddie"; + "ede" = doDistribute super."ede_0_2_8_2"; "edenmodules" = dontDistribute super."edenmodules"; "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; @@ -2707,6 +2728,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2932,6 +2954,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -2961,6 +2984,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2981,6 +3005,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3040,6 +3065,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3118,6 +3144,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3151,7 +3178,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3286,6 +3315,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3346,6 +3376,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3599,6 +3630,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3651,6 +3683,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_5_0_3"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-crypto" = dontDistribute super."haskoin-crypto"; @@ -3680,6 +3713,8 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3961,6 +3996,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "hoodle-publish" = dontDistribute super."hoodle-publish"; "hoodle-render" = dontDistribute super."hoodle-render"; "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle" = doDistribute super."hoogle_4_2_41"; "hoogle-index" = dontDistribute super."hoogle-index"; "hooks-dir" = dontDistribute super."hooks-dir"; "hoovie" = dontDistribute super."hoovie"; @@ -4222,6 +4258,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_11_2"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5057,6 +5094,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5073,6 +5111,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5110,6 +5149,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5132,6 +5172,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5200,6 +5241,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -5337,6 +5379,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5838,6 +5881,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -5846,6 +5890,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5881,6 +5926,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6235,6 +6281,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6335,7 +6382,10 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "rest-core" = doDistribute super."rest-core_0_35_1"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_17_0_5"; + "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; + "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; "rest-types" = doDistribute super."rest-types_1_13_1"; + "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"; @@ -6494,6 +6544,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_3_8"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6518,6 +6569,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6530,6 +6582,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -6870,6 +6923,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6929,6 +6983,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "stackage-sandbox" = dontDistribute super."stackage-sandbox"; "stackage-setup" = dontDistribute super."stackage-setup"; "stackage-types" = doDistribute super."stackage-types_1_0_1_1"; + "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"; @@ -7098,6 +7153,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7151,8 +7207,10 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; + "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7160,6 +7218,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7326,6 +7385,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7478,6 +7538,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7587,10 +7648,12 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; "unsafe" = dontDistribute super."unsafe"; @@ -7713,6 +7776,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -7815,6 +7879,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7869,6 +7934,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7897,6 +7963,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8054,6 +8121,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; @@ -8081,6 +8149,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8155,6 +8224,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index 7b28cf25943..5c43ee1b2de 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.4"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -330,6 +330,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -346,6 +347,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -487,6 +489,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "HaMinitel" = dontDistribute super."HaMinitel"; "HaPy" = dontDistribute super."HaPy"; "HaRe" = dontDistribute super."HaRe"; + "HaTeX" = doDistribute super."HaTeX_3_16_1_1"; "HaTeX-meta" = dontDistribute super."HaTeX-meta"; "HaTeX-qq" = dontDistribute super."HaTeX-qq"; "HaVSA" = dontDistribute super."HaVSA"; @@ -603,6 +606,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -613,6 +617,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "Limit" = dontDistribute super."Limit"; "LinearSplit" = dontDistribute super."LinearSplit"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; @@ -1208,15 +1213,20 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_4"; "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_0_3_4"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_4"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_4"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_4"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_4"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_4"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_4"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; "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"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_4"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_4"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_4"; @@ -1234,6 +1244,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-support" = doDistribute super."amazonka-support_0_3_4"; "amazonka-swf" = doDistribute super."amazonka-swf_0_3_4"; "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; "amazonka-workspaces" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_12_2"; @@ -1254,6 +1265,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_2"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1539,6 +1551,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1835,6 +1848,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; @@ -2048,7 +2062,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = doDistribute super."composition_1_0_1_1"; "composition-extra" = dontDistribute super."composition-extra"; "composition-tree" = dontDistribute super."composition-tree"; "compression" = dontDistribute super."compression"; @@ -2399,9 +2415,11 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2549,6 +2567,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "dlist" = doDistribute super."dlist_0_7_1_1"; @@ -2639,6 +2658,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2654,6 +2674,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ed25519" = dontDistribute super."ed25519"; "ed25519-donna" = dontDistribute super."ed25519-donna"; "eddie" = dontDistribute super."eddie"; + "ede" = doDistribute super."ede_0_2_8_2"; "edenmodules" = dontDistribute super."edenmodules"; "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; @@ -2707,6 +2728,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2932,6 +2954,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -2961,6 +2984,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2981,6 +3005,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3040,6 +3065,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3118,6 +3144,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3151,7 +3178,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3286,6 +3315,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3346,6 +3376,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3599,6 +3630,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3651,6 +3683,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_5_0_3"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-crypto" = dontDistribute super."haskoin-crypto"; @@ -3680,6 +3713,8 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3961,6 +3996,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "hoodle-publish" = dontDistribute super."hoodle-publish"; "hoodle-render" = dontDistribute super."hoodle-render"; "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle" = doDistribute super."hoogle_4_2_41"; "hoogle-index" = dontDistribute super."hoogle-index"; "hooks-dir" = dontDistribute super."hooks-dir"; "hoovie" = dontDistribute super."hoovie"; @@ -4222,6 +4258,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_11_2"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5057,6 +5094,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5073,6 +5111,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5110,6 +5149,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5132,6 +5172,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5200,6 +5241,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -5337,6 +5379,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5838,6 +5881,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -5846,6 +5890,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5881,6 +5926,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6235,6 +6281,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6335,7 +6382,10 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "rest-core" = doDistribute super."rest-core_0_35_1"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_17_0_5"; + "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; + "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; "rest-types" = doDistribute super."rest-types_1_13_1"; + "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"; @@ -6494,6 +6544,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_3_8"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6518,6 +6569,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6530,6 +6582,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -6869,6 +6922,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6928,6 +6982,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "stackage-sandbox" = dontDistribute super."stackage-sandbox"; "stackage-setup" = dontDistribute super."stackage-setup"; "stackage-types" = doDistribute super."stackage-types_1_0_1_1"; + "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"; @@ -7097,6 +7152,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7150,8 +7206,10 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; + "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7159,6 +7217,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7325,6 +7384,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7477,6 +7537,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7586,10 +7647,12 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; "unsafe" = dontDistribute super."unsafe"; @@ -7712,6 +7775,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -7814,6 +7878,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7868,6 +7933,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7896,6 +7962,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8053,6 +8120,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; @@ -8080,6 +8148,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8154,6 +8223,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index f1f4aa3acf6..11fda4472e3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.4"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -330,6 +330,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -346,6 +347,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -487,6 +489,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "HaMinitel" = dontDistribute super."HaMinitel"; "HaPy" = dontDistribute super."HaPy"; "HaRe" = dontDistribute super."HaRe"; + "HaTeX" = doDistribute super."HaTeX_3_16_1_1"; "HaTeX-meta" = dontDistribute super."HaTeX-meta"; "HaTeX-qq" = dontDistribute super."HaTeX-qq"; "HaVSA" = dontDistribute super."HaVSA"; @@ -603,6 +606,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -613,6 +617,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "Limit" = dontDistribute super."Limit"; "LinearSplit" = dontDistribute super."LinearSplit"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; @@ -1208,15 +1213,20 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-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" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1234,6 +1244,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_12_2"; @@ -1254,6 +1265,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_2"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1539,6 +1551,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1835,6 +1848,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; @@ -2048,7 +2062,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = doDistribute super."composition_1_0_1_1"; "composition-extra" = dontDistribute super."composition-extra"; "composition-tree" = dontDistribute super."composition-tree"; "compression" = dontDistribute super."compression"; @@ -2399,9 +2415,11 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2549,6 +2567,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "dlist" = doDistribute super."dlist_0_7_1_1"; @@ -2639,6 +2658,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2654,6 +2674,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ed25519" = dontDistribute super."ed25519"; "ed25519-donna" = dontDistribute super."ed25519-donna"; "eddie" = dontDistribute super."eddie"; + "ede" = doDistribute super."ede_0_2_8_2"; "edenmodules" = dontDistribute super."edenmodules"; "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; @@ -2707,6 +2728,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2932,6 +2954,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -2961,6 +2984,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2981,6 +3005,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3040,6 +3065,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3118,6 +3144,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3151,7 +3178,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3286,6 +3315,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3346,6 +3376,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3598,6 +3629,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3650,6 +3682,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_5_0_3"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-crypto" = dontDistribute super."haskoin-crypto"; @@ -3679,6 +3712,8 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3960,6 +3995,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "hoodle-publish" = dontDistribute super."hoodle-publish"; "hoodle-render" = dontDistribute super."hoodle-render"; "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle" = doDistribute super."hoogle_4_2_41"; "hoogle-index" = dontDistribute super."hoogle-index"; "hooks-dir" = dontDistribute super."hooks-dir"; "hoovie" = dontDistribute super."hoovie"; @@ -4221,6 +4257,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_11_3"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5055,6 +5092,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5071,6 +5109,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5108,6 +5147,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5130,6 +5170,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5198,6 +5239,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -5335,6 +5377,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5835,6 +5878,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -5843,6 +5887,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5878,6 +5923,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6232,6 +6278,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6332,7 +6379,10 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "rest-core" = doDistribute super."rest-core_0_35_1"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_17_0_5"; + "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; + "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; "rest-types" = doDistribute super."rest-types_1_13_1"; + "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"; @@ -6491,6 +6541,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_3_8"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6515,6 +6566,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6527,6 +6579,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -6865,6 +6918,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6924,6 +6978,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "stackage-sandbox" = dontDistribute super."stackage-sandbox"; "stackage-setup" = dontDistribute super."stackage-setup"; "stackage-types" = doDistribute super."stackage-types_1_0_1_1"; + "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"; @@ -7093,6 +7148,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7146,8 +7202,10 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; + "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7155,6 +7213,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7321,6 +7380,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7473,6 +7533,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7582,10 +7643,12 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; "unsafe" = dontDistribute super."unsafe"; @@ -7708,6 +7771,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -7810,6 +7874,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7864,6 +7929,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7892,6 +7958,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8049,6 +8116,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; @@ -8076,6 +8144,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8150,6 +8219,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index 5bc3d463b2b..289ca8719fe 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.4"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -330,6 +330,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -346,6 +347,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -487,6 +489,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "HaMinitel" = dontDistribute super."HaMinitel"; "HaPy" = dontDistribute super."HaPy"; "HaRe" = dontDistribute super."HaRe"; + "HaTeX" = doDistribute super."HaTeX_3_16_1_1"; "HaTeX-meta" = dontDistribute super."HaTeX-meta"; "HaTeX-qq" = dontDistribute super."HaTeX-qq"; "HaVSA" = dontDistribute super."HaVSA"; @@ -603,6 +606,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -613,6 +617,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "Limit" = dontDistribute super."Limit"; "LinearSplit" = dontDistribute super."LinearSplit"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; @@ -1207,15 +1212,20 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-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" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1233,6 +1243,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_12_2"; @@ -1253,6 +1264,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_2"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1538,6 +1550,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1834,6 +1847,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; @@ -2047,7 +2061,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = doDistribute super."composition_1_0_1_1"; "composition-extra" = dontDistribute super."composition-extra"; "composition-tree" = dontDistribute super."composition-tree"; "compression" = dontDistribute super."compression"; @@ -2398,9 +2414,11 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2548,6 +2566,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "dlist" = doDistribute super."dlist_0_7_1_1"; @@ -2638,6 +2657,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2653,6 +2673,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ed25519" = dontDistribute super."ed25519"; "ed25519-donna" = dontDistribute super."ed25519-donna"; "eddie" = dontDistribute super."eddie"; + "ede" = doDistribute super."ede_0_2_8_2"; "edenmodules" = dontDistribute super."edenmodules"; "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; @@ -2706,6 +2727,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2930,6 +2952,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -2959,6 +2982,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2979,6 +3003,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3038,6 +3063,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3116,6 +3142,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3149,7 +3176,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3284,6 +3313,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3344,6 +3374,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3596,6 +3627,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3648,6 +3680,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_5_0_3"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-crypto" = dontDistribute super."haskoin-crypto"; @@ -3677,6 +3710,8 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3958,6 +3993,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "hoodle-publish" = dontDistribute super."hoodle-publish"; "hoodle-render" = dontDistribute super."hoodle-render"; "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle" = doDistribute super."hoogle_4_2_41"; "hoogle-index" = dontDistribute super."hoogle-index"; "hooks-dir" = dontDistribute super."hooks-dir"; "hoovie" = dontDistribute super."hoovie"; @@ -4218,6 +4254,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_11_3"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5052,6 +5089,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5068,6 +5106,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5105,6 +5144,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5127,6 +5167,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5195,6 +5236,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -5332,6 +5374,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5832,6 +5875,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -5840,6 +5884,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5875,6 +5920,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6228,6 +6274,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6328,7 +6375,10 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "rest-core" = doDistribute super."rest-core_0_35_1"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_17_0_5"; + "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; + "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; "rest-types" = doDistribute super."rest-types_1_13_1"; + "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"; @@ -6487,6 +6537,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_3_8"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6511,6 +6562,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6523,6 +6575,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -6860,6 +6913,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6919,6 +6973,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "stackage-sandbox" = dontDistribute super."stackage-sandbox"; "stackage-setup" = dontDistribute super."stackage-setup"; "stackage-types" = doDistribute super."stackage-types_1_0_1_1"; + "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"; @@ -7088,6 +7143,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7141,8 +7197,10 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; + "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7150,6 +7208,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7316,6 +7375,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7468,6 +7528,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7577,10 +7638,12 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; "unsafe" = dontDistribute super."unsafe"; @@ -7703,6 +7766,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -7804,6 +7868,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7858,6 +7923,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7885,6 +7951,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8041,6 +8108,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; @@ -8068,6 +8136,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8142,6 +8211,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index 95d58823ab7..9d1bf3da059 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.4"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -330,6 +330,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -346,6 +347,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -487,6 +489,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "HaMinitel" = dontDistribute super."HaMinitel"; "HaPy" = dontDistribute super."HaPy"; "HaRe" = dontDistribute super."HaRe"; + "HaTeX" = doDistribute super."HaTeX_3_16_1_1"; "HaTeX-meta" = dontDistribute super."HaTeX-meta"; "HaTeX-qq" = dontDistribute super."HaTeX-qq"; "HaVSA" = dontDistribute super."HaVSA"; @@ -603,6 +606,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -613,6 +617,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "Limit" = dontDistribute super."Limit"; "LinearSplit" = dontDistribute super."LinearSplit"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; @@ -1207,15 +1212,20 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-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" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1233,6 +1243,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_12_2"; @@ -1253,6 +1264,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_2"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1538,6 +1550,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1834,6 +1847,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; @@ -2047,7 +2061,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = doDistribute super."composition_1_0_1_1"; "composition-extra" = dontDistribute super."composition-extra"; "composition-tree" = dontDistribute super."composition-tree"; "compression" = dontDistribute super."compression"; @@ -2398,9 +2414,11 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2547,6 +2565,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "dlist" = doDistribute super."dlist_0_7_1_1"; @@ -2637,6 +2656,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2652,6 +2672,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ed25519" = dontDistribute super."ed25519"; "ed25519-donna" = dontDistribute super."ed25519-donna"; "eddie" = dontDistribute super."eddie"; + "ede" = doDistribute super."ede_0_2_8_2"; "edenmodules" = dontDistribute super."edenmodules"; "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; @@ -2705,6 +2726,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2928,6 +2950,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -2957,6 +2980,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2977,6 +3001,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3036,6 +3061,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3114,6 +3140,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3147,7 +3174,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3282,6 +3311,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3342,6 +3372,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3594,6 +3625,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3646,6 +3678,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_5_0_3"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-crypto" = dontDistribute super."haskoin-crypto"; @@ -3675,6 +3708,8 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3956,6 +3991,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "hoodle-publish" = dontDistribute super."hoodle-publish"; "hoodle-render" = dontDistribute super."hoodle-render"; "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle" = doDistribute super."hoogle_4_2_41"; "hoogle-index" = dontDistribute super."hoogle-index"; "hooks-dir" = dontDistribute super."hooks-dir"; "hoovie" = dontDistribute super."hoovie"; @@ -4216,6 +4252,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_12"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5050,6 +5087,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5066,6 +5104,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5103,6 +5142,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5125,6 +5165,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5192,6 +5233,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -5329,6 +5371,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5827,6 +5870,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -5835,6 +5879,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5870,6 +5915,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6223,6 +6269,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6323,7 +6370,10 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "rest-core" = doDistribute super."rest-core_0_35_1"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_17_0_6"; + "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; + "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; "rest-types" = doDistribute super."rest-types_1_13_1"; + "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"; @@ -6482,6 +6532,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_3_8"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6506,6 +6557,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6518,6 +6570,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -6855,6 +6908,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6913,6 +6967,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "stackage-sandbox" = dontDistribute super."stackage-sandbox"; "stackage-setup" = dontDistribute super."stackage-setup"; "stackage-types" = doDistribute super."stackage-types_1_0_1_1"; + "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"; @@ -7082,6 +7137,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7135,8 +7191,10 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; + "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7144,6 +7202,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7310,6 +7369,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7462,6 +7522,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7571,10 +7632,12 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; "unsafe" = dontDistribute super."unsafe"; @@ -7697,6 +7760,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -7798,6 +7862,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7852,6 +7917,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7879,6 +7945,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8035,6 +8102,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; @@ -8062,6 +8130,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8135,6 +8204,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index 050bd7602d3..9d052f9785f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.4"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -329,6 +329,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -345,6 +346,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -485,6 +487,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "HaMinitel" = dontDistribute super."HaMinitel"; "HaPy" = dontDistribute super."HaPy"; "HaRe" = dontDistribute super."HaRe"; + "HaTeX" = doDistribute super."HaTeX_3_16_1_1"; "HaTeX-meta" = dontDistribute super."HaTeX-meta"; "HaTeX-qq" = dontDistribute super."HaTeX-qq"; "HaVSA" = dontDistribute super."HaVSA"; @@ -601,6 +604,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -611,6 +615,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "Limit" = dontDistribute super."Limit"; "LinearSplit" = dontDistribute super."LinearSplit"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; @@ -1205,15 +1210,20 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-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" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1231,6 +1241,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_12_3"; @@ -1251,6 +1262,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_2"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1536,6 +1548,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1832,6 +1845,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; @@ -2044,7 +2058,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = doDistribute super."composition_1_0_1_1"; "composition-extra" = dontDistribute super."composition-extra"; "composition-tree" = dontDistribute super."composition-tree"; "compression" = dontDistribute super."compression"; @@ -2394,9 +2410,11 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2542,6 +2560,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "dlist" = doDistribute super."dlist_0_7_1_1"; @@ -2632,6 +2651,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2647,6 +2667,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ed25519" = dontDistribute super."ed25519"; "ed25519-donna" = dontDistribute super."ed25519-donna"; "eddie" = dontDistribute super."eddie"; + "ede" = doDistribute super."ede_0_2_8_2"; "edenmodules" = dontDistribute super."edenmodules"; "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; @@ -2700,6 +2721,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2921,6 +2943,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -2950,6 +2973,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2970,6 +2994,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3029,6 +3054,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3107,6 +3133,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3140,7 +3167,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3275,6 +3304,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3335,6 +3365,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3585,6 +3616,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3600,6 +3632,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_10"; "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"; @@ -3636,6 +3669,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_5_0_3"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-crypto" = dontDistribute super."haskoin-crypto"; @@ -3665,6 +3699,8 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3946,6 +3982,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "hoodle-publish" = dontDistribute super."hoodle-publish"; "hoodle-render" = dontDistribute super."hoodle-render"; "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle" = doDistribute super."hoogle_4_2_41"; "hoogle-index" = dontDistribute super."hoogle-index"; "hooks-dir" = dontDistribute super."hooks-dir"; "hoovie" = dontDistribute super."hoovie"; @@ -4206,6 +4243,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_13"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5039,6 +5077,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5055,6 +5094,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5092,6 +5132,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5114,6 +5155,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5181,6 +5223,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -5318,6 +5361,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5815,6 +5859,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -5823,6 +5868,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5858,6 +5904,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6211,6 +6258,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6311,7 +6359,10 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "rest-core" = doDistribute super."rest-core_0_35_1"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_17_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; + "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; "rest-types" = doDistribute super."rest-types_1_13_1"; + "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"; @@ -6470,6 +6521,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_3_8"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6494,6 +6546,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6506,6 +6559,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -6842,6 +6896,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6900,6 +6955,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "stackage-sandbox" = dontDistribute super."stackage-sandbox"; "stackage-setup" = dontDistribute super."stackage-setup"; "stackage-types" = doDistribute super."stackage-types_1_0_1_1"; + "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"; @@ -7069,6 +7125,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7122,8 +7179,10 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; + "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7131,6 +7190,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7297,6 +7357,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7449,6 +7510,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7558,10 +7620,12 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; "unsafe" = dontDistribute super."unsafe"; @@ -7684,6 +7748,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -7785,6 +7850,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7839,6 +7905,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7866,6 +7933,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8022,6 +8090,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; @@ -8049,6 +8118,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8121,6 +8191,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index 6186cef1f0c..b0675f292f8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.4"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -329,6 +329,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -345,6 +346,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -485,6 +487,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "HaMinitel" = dontDistribute super."HaMinitel"; "HaPy" = dontDistribute super."HaPy"; "HaRe" = dontDistribute super."HaRe"; + "HaTeX" = doDistribute super."HaTeX_3_16_1_1"; "HaTeX-meta" = dontDistribute super."HaTeX-meta"; "HaTeX-qq" = dontDistribute super."HaTeX-qq"; "HaVSA" = dontDistribute super."HaVSA"; @@ -601,6 +604,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -611,6 +615,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "Limit" = dontDistribute super."Limit"; "LinearSplit" = dontDistribute super."LinearSplit"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; @@ -1205,15 +1210,20 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-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" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1231,6 +1241,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_12_3"; @@ -1251,6 +1262,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_2"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1534,6 +1546,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1829,6 +1842,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; @@ -2041,7 +2055,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = doDistribute super."composition_1_0_1_1"; "composition-extra" = dontDistribute super."composition-extra"; "composition-tree" = dontDistribute super."composition-tree"; "compression" = dontDistribute super."compression"; @@ -2391,9 +2407,11 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2539,6 +2557,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "dlist" = doDistribute super."dlist_0_7_1_1"; @@ -2629,6 +2648,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2644,6 +2664,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ed25519" = dontDistribute super."ed25519"; "ed25519-donna" = dontDistribute super."ed25519-donna"; "eddie" = dontDistribute super."eddie"; + "ede" = doDistribute super."ede_0_2_8_2"; "edenmodules" = dontDistribute super."edenmodules"; "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; @@ -2697,6 +2718,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2916,6 +2938,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -2945,6 +2968,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2965,6 +2989,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3024,6 +3049,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3102,6 +3128,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3133,7 +3160,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3268,6 +3297,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3328,6 +3358,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3578,6 +3609,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3592,6 +3624,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_10"; "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"; @@ -3628,6 +3661,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_5_0_3"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-crypto" = dontDistribute super."haskoin-crypto"; @@ -3657,6 +3691,8 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3938,6 +3974,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "hoodle-publish" = dontDistribute super."hoodle-publish"; "hoodle-render" = dontDistribute super."hoodle-render"; "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle" = doDistribute super."hoogle_4_2_41"; "hoogle-index" = dontDistribute super."hoogle-index"; "hooks-dir" = dontDistribute super."hooks-dir"; "hoovie" = dontDistribute super."hoovie"; @@ -4198,6 +4235,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_15"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5031,6 +5069,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5047,6 +5086,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5084,6 +5124,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5106,6 +5147,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5173,6 +5215,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -5310,6 +5353,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5805,6 +5849,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -5813,6 +5858,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5848,6 +5894,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5966,6 +6013,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "procrastinating-variable" = dontDistribute super."procrastinating-variable"; "procstat" = dontDistribute super."procstat"; "proctest" = dontDistribute super."proctest"; + "product-profunctors" = doDistribute super."product-profunctors_0_6_3"; "prof2dot" = dontDistribute super."prof2dot"; "prof2pretty" = dontDistribute super."prof2pretty"; "profiteur" = dontDistribute super."profiteur"; @@ -6200,6 +6248,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6299,7 +6348,10 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "rest-core" = doDistribute super."rest-core_0_35_1"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_17_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; + "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; "rest-types" = doDistribute super."rest-types_1_13_1"; + "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"; @@ -6458,6 +6510,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_3_8"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6482,6 +6535,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6494,6 +6548,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -6830,6 +6885,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6888,6 +6944,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "stackage-sandbox" = dontDistribute super."stackage-sandbox"; "stackage-setup" = dontDistribute super."stackage-setup"; "stackage-types" = doDistribute super."stackage-types_1_0_1_1"; + "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"; @@ -7057,6 +7114,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7110,8 +7168,10 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; + "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7119,6 +7179,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7285,6 +7346,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7437,6 +7499,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7546,10 +7609,12 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; "unsafe" = dontDistribute super."unsafe"; @@ -7672,6 +7737,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -7705,6 +7771,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vty-ui" = dontDistribute super."vty-ui"; "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; + "wai" = doDistribute super."wai_3_0_3_0"; "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"; @@ -7771,6 +7838,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7825,6 +7893,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7852,6 +7921,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8008,6 +8078,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; @@ -8035,6 +8106,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8107,6 +8179,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index a3f1245e92d..f11cb01559d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.4"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -329,6 +329,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -345,6 +346,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -485,6 +487,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "HaMinitel" = dontDistribute super."HaMinitel"; "HaPy" = dontDistribute super."HaPy"; "HaRe" = dontDistribute super."HaRe"; + "HaTeX" = doDistribute super."HaTeX_3_16_1_1"; "HaTeX-meta" = dontDistribute super."HaTeX-meta"; "HaTeX-qq" = dontDistribute super."HaTeX-qq"; "HaVSA" = dontDistribute super."HaVSA"; @@ -600,6 +603,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -610,6 +614,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "Limit" = dontDistribute super."Limit"; "LinearSplit" = dontDistribute super."LinearSplit"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; @@ -1204,15 +1209,20 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-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" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1230,6 +1240,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_12_3"; @@ -1250,6 +1261,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_2"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1532,6 +1544,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1824,6 +1837,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; @@ -2036,7 +2050,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = doDistribute super."composition_1_0_1_1"; "composition-extra" = dontDistribute super."composition-extra"; "composition-tree" = dontDistribute super."composition-tree"; "compression" = dontDistribute super."compression"; @@ -2386,9 +2402,11 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2534,6 +2552,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "dlist" = doDistribute super."dlist_0_7_1_1"; @@ -2624,6 +2643,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2639,6 +2659,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ed25519" = dontDistribute super."ed25519"; "ed25519-donna" = dontDistribute super."ed25519-donna"; "eddie" = dontDistribute super."eddie"; + "ede" = doDistribute super."ede_0_2_8_2"; "edenmodules" = dontDistribute super."edenmodules"; "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; @@ -2691,6 +2712,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2910,6 +2932,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -2939,6 +2962,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2959,6 +2983,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3018,6 +3043,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3096,6 +3122,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3127,7 +3154,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3262,6 +3291,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3322,6 +3352,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3571,6 +3602,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3585,6 +3617,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_10"; "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"; @@ -3621,6 +3654,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_5_0_3"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-crypto" = dontDistribute super."haskoin-crypto"; @@ -3650,6 +3684,8 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3930,6 +3966,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "hoodle-publish" = dontDistribute super."hoodle-publish"; "hoodle-render" = dontDistribute super."hoodle-render"; "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle" = doDistribute super."hoogle_4_2_41"; "hoogle-index" = dontDistribute super."hoogle-index"; "hooks-dir" = dontDistribute super."hooks-dir"; "hoovie" = dontDistribute super."hoovie"; @@ -4190,6 +4227,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_16"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5023,6 +5061,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5039,6 +5078,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5076,6 +5116,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5098,6 +5139,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5158,12 +5200,14 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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_13_2"; "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" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -5301,6 +5345,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5794,6 +5839,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -5802,6 +5848,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5837,6 +5884,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5955,6 +6003,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "procrastinating-variable" = dontDistribute super."procrastinating-variable"; "procstat" = dontDistribute super."procstat"; "proctest" = dontDistribute super."proctest"; + "product-profunctors" = doDistribute super."product-profunctors_0_6_3"; "prof2dot" = dontDistribute super."prof2dot"; "prof2pretty" = dontDistribute super."prof2pretty"; "profiteur" = dontDistribute super."profiteur"; @@ -6189,6 +6238,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6288,7 +6338,10 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "rest-core" = doDistribute super."rest-core_0_35_1"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_17_1_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; + "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; "rest-types" = doDistribute super."rest-types_1_13_1"; + "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"; @@ -6447,6 +6500,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_3_8"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6471,6 +6525,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6483,6 +6538,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -6819,6 +6875,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6877,6 +6934,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "stackage-sandbox" = dontDistribute super."stackage-sandbox"; "stackage-setup" = dontDistribute super."stackage-setup"; "stackage-types" = doDistribute super."stackage-types_1_0_1_1"; + "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"; @@ -7045,6 +7103,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7098,8 +7157,10 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; + "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7107,6 +7168,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7273,6 +7335,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7425,6 +7488,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7534,10 +7598,12 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; "unsafe" = dontDistribute super."unsafe"; @@ -7660,6 +7726,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -7693,6 +7760,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vty-ui" = dontDistribute super."vty-ui"; "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; + "wai" = doDistribute super."wai_3_0_3_0"; "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"; @@ -7758,6 +7826,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7812,6 +7881,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7839,6 +7909,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7994,6 +8065,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; @@ -8021,6 +8093,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8093,6 +8166,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index b50dee90ae9..c6858c8f66b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.4"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -329,6 +329,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -345,6 +346,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -485,6 +487,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "HaMinitel" = dontDistribute super."HaMinitel"; "HaPy" = dontDistribute super."HaPy"; "HaRe" = dontDistribute super."HaRe"; + "HaTeX" = doDistribute super."HaTeX_3_16_1_1"; "HaTeX-meta" = dontDistribute super."HaTeX-meta"; "HaTeX-qq" = dontDistribute super."HaTeX-qq"; "HaVSA" = dontDistribute super."HaVSA"; @@ -600,6 +603,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -610,6 +614,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "Limit" = dontDistribute super."Limit"; "LinearSplit" = dontDistribute super."LinearSplit"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; @@ -1204,15 +1209,20 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-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" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1230,6 +1240,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_12_3"; @@ -1250,6 +1261,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_2"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1532,6 +1544,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1824,6 +1837,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; @@ -2036,7 +2050,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = doDistribute super."composition_1_0_1_1"; "composition-extra" = dontDistribute super."composition-extra"; "composition-tree" = dontDistribute super."composition-tree"; "compression" = dontDistribute super."compression"; @@ -2386,9 +2402,11 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2534,6 +2552,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "dlist" = doDistribute super."dlist_0_7_1_1"; @@ -2624,6 +2643,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2639,6 +2659,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ed25519" = dontDistribute super."ed25519"; "ed25519-donna" = dontDistribute super."ed25519-donna"; "eddie" = dontDistribute super."eddie"; + "ede" = doDistribute super."ede_0_2_8_2"; "edenmodules" = dontDistribute super."edenmodules"; "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; @@ -2691,6 +2712,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2910,6 +2932,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -2939,6 +2962,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2959,6 +2983,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3017,6 +3042,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3095,6 +3121,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3126,7 +3153,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3261,6 +3290,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3321,6 +3351,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3570,6 +3601,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3584,6 +3616,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_10"; "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"; @@ -3620,6 +3653,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_5_0_3"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-crypto" = dontDistribute super."haskoin-crypto"; @@ -3649,6 +3683,8 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3929,6 +3965,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "hoodle-publish" = dontDistribute super."hoodle-publish"; "hoodle-render" = dontDistribute super."hoodle-render"; "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle" = doDistribute super."hoogle_4_2_41"; "hoogle-index" = dontDistribute super."hoogle-index"; "hooks-dir" = dontDistribute super."hooks-dir"; "hoovie" = dontDistribute super."hoovie"; @@ -4189,6 +4226,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_16"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5022,6 +5060,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5037,6 +5076,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5074,6 +5114,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5096,6 +5137,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5156,12 +5198,14 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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_13_2"; "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" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -5298,6 +5342,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5791,6 +5836,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -5799,6 +5845,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5834,6 +5881,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5952,6 +6000,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "procrastinating-variable" = dontDistribute super."procrastinating-variable"; "procstat" = dontDistribute super."procstat"; "proctest" = dontDistribute super."proctest"; + "product-profunctors" = doDistribute super."product-profunctors_0_6_3"; "prof2dot" = dontDistribute super."prof2dot"; "prof2pretty" = dontDistribute super."prof2pretty"; "profiteur" = dontDistribute super."profiteur"; @@ -6186,6 +6235,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6285,7 +6335,10 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "rest-core" = doDistribute super."rest-core_0_35_1"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_17_1_2"; + "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; + "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; "rest-types" = doDistribute super."rest-types_1_13_1"; + "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"; @@ -6444,6 +6497,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_3_8"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6468,6 +6522,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6480,6 +6535,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -6814,6 +6870,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6872,6 +6929,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "stackage-sandbox" = dontDistribute super."stackage-sandbox"; "stackage-setup" = dontDistribute super."stackage-setup"; "stackage-types" = doDistribute super."stackage-types_1_0_1_1"; + "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"; @@ -7040,6 +7098,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7093,8 +7152,10 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; + "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7102,6 +7163,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7268,6 +7330,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7420,6 +7483,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7529,10 +7593,12 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; "unsafe" = dontDistribute super."unsafe"; @@ -7655,6 +7721,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -7688,6 +7755,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vty-ui" = dontDistribute super."vty-ui"; "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; + "wai" = doDistribute super."wai_3_0_3_0"; "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"; @@ -7753,6 +7821,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7807,6 +7876,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7833,6 +7903,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7988,6 +8059,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; @@ -8015,6 +8087,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8087,6 +8160,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index 133014f1037..eb52972daf7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.4"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -331,6 +331,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -489,6 +490,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "HaMinitel" = dontDistribute super."HaMinitel"; "HaPy" = dontDistribute super."HaPy"; "HaRe" = dontDistribute super."HaRe"; + "HaTeX" = doDistribute super."HaTeX_3_16_1_1"; "HaTeX-meta" = dontDistribute super."HaTeX-meta"; "HaTeX-qq" = dontDistribute super."HaTeX-qq"; "HaVSA" = dontDistribute super."HaVSA"; @@ -605,6 +607,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -615,6 +618,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "Limit" = dontDistribute super."Limit"; "LinearSplit" = dontDistribute super."LinearSplit"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; @@ -1214,15 +1218,20 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_3"; "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_0_3_3"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_3"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_3"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_3"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_3"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_3"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_3"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; "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"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_3"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_3"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_3"; @@ -1240,6 +1249,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-support" = doDistribute super."amazonka-support_0_3_3"; "amazonka-swf" = doDistribute super."amazonka-swf_0_3_3"; "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; "amazonka-workspaces" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_12_2"; @@ -1260,6 +1270,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_2"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1549,6 +1560,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1845,6 +1857,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2"; "cash" = dontDistribute super."cash"; @@ -2061,6 +2074,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = doDistribute super."composition_1_0_1_0"; "composition-extra" = dontDistribute super."composition-extra"; @@ -2415,9 +2429,11 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2566,6 +2582,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "dlist" = doDistribute super."dlist_0_7_1_1"; @@ -2656,6 +2673,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2726,6 +2744,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2953,6 +2972,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -2983,6 +3003,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3003,6 +3024,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3062,6 +3084,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3140,6 +3163,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3173,7 +3197,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3310,6 +3336,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3371,6 +3398,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = dontDistribute super."grouped-list"; "groupoid" = dontDistribute super."groupoid"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3625,6 +3653,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3707,6 +3736,8 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -4256,6 +4287,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_11"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5107,6 +5139,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5124,6 +5157,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5161,6 +5195,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5183,6 +5218,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5252,6 +5288,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -5388,6 +5425,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5896,6 +5934,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -5904,6 +5943,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5940,6 +5980,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6296,6 +6337,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6563,6 +6605,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_3_8"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6587,6 +6630,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; "sdl2" = doDistribute super."sdl2_1_3_0"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; "sdl2-image" = dontDistribute super."sdl2-image"; "sdl2-ttf" = dontDistribute super."sdl2-ttf"; @@ -6599,6 +6643,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -6941,6 +6986,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7005,6 +7051,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "stackage-types" = doDistribute super."stackage-types_1_0_0"; "stackage-update" = dontDistribute super."stackage-update"; "stackage-upload" = dontDistribute super."stackage-upload"; + "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"; @@ -7177,6 +7224,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7235,6 +7283,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; + "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7242,6 +7291,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7409,6 +7459,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7563,6 +7614,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7672,10 +7724,12 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; "unsafe" = dontDistribute super."unsafe"; @@ -7798,6 +7852,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -7900,6 +7955,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7954,6 +8010,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7982,6 +8039,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8140,6 +8198,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; "yesod-auth-oauth" = doDistribute super."yesod-auth-oauth_1_4_0_1"; "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; @@ -8168,6 +8227,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8242,6 +8302,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index 38f2428eb8b..a645487603d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.4"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -329,6 +329,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -345,6 +346,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -485,6 +487,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "HaMinitel" = dontDistribute super."HaMinitel"; "HaPy" = dontDistribute super."HaPy"; "HaRe" = dontDistribute super."HaRe"; + "HaTeX" = doDistribute super."HaTeX_3_16_1_1"; "HaTeX-meta" = dontDistribute super."HaTeX-meta"; "HaTeX-qq" = dontDistribute super."HaTeX-qq"; "HaVSA" = dontDistribute super."HaVSA"; @@ -600,6 +603,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -610,6 +614,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "Limit" = dontDistribute super."Limit"; "LinearSplit" = dontDistribute super."LinearSplit"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; @@ -1204,15 +1209,20 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-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" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1230,6 +1240,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_12_3"; @@ -1250,6 +1261,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_2"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1532,6 +1544,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1824,6 +1837,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; @@ -2035,7 +2049,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = doDistribute super."composition_1_0_1_1"; "composition-extra" = dontDistribute super."composition-extra"; "composition-tree" = dontDistribute super."composition-tree"; "compression" = dontDistribute super."compression"; @@ -2383,9 +2399,11 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2531,6 +2549,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "dlist" = doDistribute super."dlist_0_7_1_1"; @@ -2621,6 +2640,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2636,6 +2656,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ed25519" = dontDistribute super."ed25519"; "ed25519-donna" = dontDistribute super."ed25519-donna"; "eddie" = dontDistribute super."eddie"; + "ede" = doDistribute super."ede_0_2_8_2"; "edenmodules" = dontDistribute super."edenmodules"; "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; @@ -2688,6 +2709,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2906,6 +2928,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -2935,6 +2958,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2955,6 +2979,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3013,6 +3038,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3091,6 +3117,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3122,7 +3149,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3257,6 +3286,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3317,6 +3347,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3565,6 +3596,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3579,6 +3611,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_10"; "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"; @@ -3615,6 +3648,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_5_0_3"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-crypto" = dontDistribute super."haskoin-crypto"; @@ -3644,6 +3678,8 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3924,6 +3960,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "hoodle-publish" = dontDistribute super."hoodle-publish"; "hoodle-render" = dontDistribute super."hoodle-render"; "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle" = doDistribute super."hoogle_4_2_41"; "hoogle-index" = dontDistribute super."hoogle-index"; "hooks-dir" = dontDistribute super."hooks-dir"; "hoovie" = dontDistribute super."hoovie"; @@ -4184,6 +4221,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_18_1"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5017,6 +5055,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5032,6 +5071,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5069,6 +5109,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5091,6 +5132,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5151,12 +5193,14 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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_13_2"; "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" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -5293,6 +5337,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5785,6 +5830,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -5793,6 +5839,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5828,6 +5875,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5946,6 +5994,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "procrastinating-variable" = dontDistribute super."procrastinating-variable"; "procstat" = dontDistribute super."procstat"; "proctest" = dontDistribute super."proctest"; + "product-profunctors" = doDistribute super."product-profunctors_0_6_3"; "prof2dot" = dontDistribute super."prof2dot"; "prof2pretty" = dontDistribute super."prof2pretty"; "profiteur" = dontDistribute super."profiteur"; @@ -6180,6 +6229,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6279,7 +6329,10 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "rest-core" = doDistribute super."rest-core_0_35_1"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_17_1_2"; + "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; + "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; "rest-types" = doDistribute super."rest-types_1_13_1"; + "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"; @@ -6438,6 +6491,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_3_8"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6462,6 +6516,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6474,6 +6529,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -6807,6 +6863,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6865,6 +6922,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "stackage-sandbox" = dontDistribute super."stackage-sandbox"; "stackage-setup" = dontDistribute super."stackage-setup"; "stackage-types" = doDistribute super."stackage-types_1_0_1_1"; + "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"; @@ -7033,6 +7091,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7086,8 +7145,10 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; + "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7095,6 +7156,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7261,6 +7323,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7413,6 +7476,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7522,10 +7586,12 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; "unsafe" = dontDistribute super."unsafe"; @@ -7648,6 +7714,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -7681,11 +7748,13 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vty-ui" = dontDistribute super."vty-ui"; "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; + "wai" = doDistribute super."wai_3_0_3_0"; "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-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-extra" = doDistribute super."wai-extra_3_0_10"; "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; @@ -7745,6 +7814,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7799,6 +7869,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7825,6 +7896,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7980,6 +8052,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; @@ -8007,6 +8080,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8078,6 +8152,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index 263bf61e649..fa1cd007556 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.4"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -329,6 +329,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -345,6 +346,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -485,6 +487,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "HaMinitel" = dontDistribute super."HaMinitel"; "HaPy" = dontDistribute super."HaPy"; "HaRe" = dontDistribute super."HaRe"; + "HaTeX" = doDistribute super."HaTeX_3_16_1_1"; "HaTeX-meta" = dontDistribute super."HaTeX-meta"; "HaTeX-qq" = dontDistribute super."HaTeX-qq"; "HaVSA" = dontDistribute super."HaVSA"; @@ -600,6 +603,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -610,6 +614,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "Limit" = dontDistribute super."Limit"; "LinearSplit" = dontDistribute super."LinearSplit"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; @@ -1204,15 +1209,20 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-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" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1230,6 +1240,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_12_3"; @@ -1250,6 +1261,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_2"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1532,6 +1544,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1824,6 +1837,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; @@ -2035,7 +2049,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = doDistribute super."composition_1_0_1_1"; "composition-extra" = dontDistribute super."composition-extra"; "composition-tree" = dontDistribute super."composition-tree"; "compression" = dontDistribute super."compression"; @@ -2383,9 +2399,11 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2531,6 +2549,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "dlist" = doDistribute super."dlist_0_7_1_1"; @@ -2621,6 +2640,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2636,6 +2656,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ed25519" = dontDistribute super."ed25519"; "ed25519-donna" = dontDistribute super."ed25519-donna"; "eddie" = dontDistribute super."eddie"; + "ede" = doDistribute super."ede_0_2_8_2"; "edenmodules" = dontDistribute super."edenmodules"; "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; @@ -2688,6 +2709,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2906,6 +2928,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -2935,6 +2958,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2955,6 +2979,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3013,6 +3038,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3091,6 +3117,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3122,7 +3149,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3256,6 +3285,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3316,6 +3346,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3564,6 +3595,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3578,6 +3610,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_10"; "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"; @@ -3614,6 +3647,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_5_0_3"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-crypto" = dontDistribute super."haskoin-crypto"; @@ -3643,6 +3677,8 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3923,6 +3959,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "hoodle-publish" = dontDistribute super."hoodle-publish"; "hoodle-render" = dontDistribute super."hoodle-render"; "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle" = doDistribute super."hoogle_4_2_41"; "hoogle-index" = dontDistribute super."hoogle-index"; "hooks-dir" = dontDistribute super."hooks-dir"; "hoovie" = dontDistribute super."hoovie"; @@ -4183,6 +4220,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_18_1"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5015,6 +5053,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5030,6 +5069,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5067,6 +5107,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5089,6 +5130,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5149,12 +5191,14 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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_13_2"; "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" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -5291,6 +5335,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5782,6 +5827,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -5790,6 +5836,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5824,6 +5871,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5941,6 +5989,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "procrastinating-variable" = dontDistribute super."procrastinating-variable"; "procstat" = dontDistribute super."procstat"; "proctest" = dontDistribute super."proctest"; + "product-profunctors" = doDistribute super."product-profunctors_0_6_3"; "prof2dot" = dontDistribute super."prof2dot"; "prof2pretty" = dontDistribute super."prof2pretty"; "profiteur" = dontDistribute super."profiteur"; @@ -6175,6 +6224,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6273,7 +6323,10 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "rest-core" = doDistribute super."rest-core_0_35_1"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_17_1_2"; + "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; + "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; "rest-types" = doDistribute super."rest-types_1_13_1"; + "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"; @@ -6432,6 +6485,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_3_8"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6456,6 +6510,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6468,6 +6523,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -6801,6 +6857,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6859,6 +6916,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "stackage-sandbox" = dontDistribute super."stackage-sandbox"; "stackage-setup" = dontDistribute super."stackage-setup"; "stackage-types" = doDistribute super."stackage-types_1_0_1_1"; + "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"; @@ -7027,6 +7085,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7080,8 +7139,10 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; + "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7089,6 +7150,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7255,6 +7317,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7407,6 +7470,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7516,10 +7580,12 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; "unsafe" = dontDistribute super."unsafe"; @@ -7640,6 +7706,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -7673,11 +7740,13 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vty-ui" = dontDistribute super."vty-ui"; "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; + "wai" = doDistribute super."wai_3_0_3_0"; "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-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-extra" = doDistribute super."wai-extra_3_0_10"; "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; @@ -7737,6 +7806,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7791,6 +7861,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7817,6 +7888,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7971,6 +8043,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; @@ -7998,6 +8071,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8069,6 +8143,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index ba875262515..13f101981d4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.4"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -329,6 +329,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -345,6 +346,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -485,6 +487,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "HaMinitel" = dontDistribute super."HaMinitel"; "HaPy" = dontDistribute super."HaPy"; "HaRe" = dontDistribute super."HaRe"; + "HaTeX" = doDistribute super."HaTeX_3_16_1_1"; "HaTeX-meta" = dontDistribute super."HaTeX-meta"; "HaTeX-qq" = dontDistribute super."HaTeX-qq"; "HaVSA" = dontDistribute super."HaVSA"; @@ -600,6 +603,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -610,6 +614,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "Limit" = dontDistribute super."Limit"; "LinearSplit" = dontDistribute super."LinearSplit"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; @@ -1203,15 +1208,20 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-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" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; @@ -1229,6 +1239,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_12_3"; @@ -1249,6 +1260,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_2"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1531,6 +1543,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1823,6 +1836,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; @@ -2034,7 +2048,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = doDistribute super."composition_1_0_1_1"; "composition-extra" = dontDistribute super."composition-extra"; "composition-tree" = dontDistribute super."composition-tree"; "compression" = dontDistribute super."compression"; @@ -2382,9 +2398,11 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2530,6 +2548,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "dlist" = doDistribute super."dlist_0_7_1_1"; @@ -2620,6 +2639,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2635,6 +2655,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ed25519" = dontDistribute super."ed25519"; "ed25519-donna" = dontDistribute super."ed25519-donna"; "eddie" = dontDistribute super."eddie"; + "ede" = doDistribute super."ede_0_2_8_2"; "edenmodules" = dontDistribute super."edenmodules"; "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; @@ -2687,6 +2708,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2905,6 +2927,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -2934,6 +2957,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2954,6 +2978,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3012,6 +3037,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3090,6 +3116,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3121,7 +3148,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3255,6 +3284,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3315,6 +3345,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3563,6 +3594,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3577,6 +3609,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_10"; "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"; @@ -3613,6 +3646,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_5_0_3"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-crypto" = dontDistribute super."haskoin-crypto"; @@ -3642,6 +3676,8 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3921,6 +3957,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "hoodle-publish" = dontDistribute super."hoodle-publish"; "hoodle-render" = dontDistribute super."hoodle-render"; "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle" = doDistribute super."hoogle_4_2_41"; "hoogle-index" = dontDistribute super."hoogle-index"; "hooks-dir" = dontDistribute super."hooks-dir"; "hoovie" = dontDistribute super."hoovie"; @@ -4181,6 +4218,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_18_1"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5012,6 +5050,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5027,6 +5066,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5064,6 +5104,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5086,6 +5127,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5145,12 +5187,14 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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_13_2"; "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" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -5287,6 +5331,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5778,6 +5823,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -5786,6 +5832,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5820,6 +5867,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5937,6 +5985,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "procrastinating-variable" = dontDistribute super."procrastinating-variable"; "procstat" = dontDistribute super."procstat"; "proctest" = dontDistribute super."proctest"; + "product-profunctors" = doDistribute super."product-profunctors_0_6_3"; "prof2dot" = dontDistribute super."prof2dot"; "prof2pretty" = dontDistribute super."prof2pretty"; "profiteur" = dontDistribute super."profiteur"; @@ -6171,6 +6220,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6269,7 +6319,10 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "rest-core" = doDistribute super."rest-core_0_35_1"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_17_1_2"; + "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; + "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; "rest-types" = doDistribute super."rest-types_1_13_1"; + "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"; @@ -6428,6 +6481,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_3_8"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6452,6 +6506,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6464,6 +6519,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -6797,6 +6853,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6855,6 +6912,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "stackage-sandbox" = dontDistribute super."stackage-sandbox"; "stackage-setup" = dontDistribute super."stackage-setup"; "stackage-types" = doDistribute super."stackage-types_1_0_1_1"; + "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"; @@ -7023,6 +7081,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7076,8 +7135,10 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; + "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7085,6 +7146,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7251,6 +7313,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7403,6 +7466,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7512,10 +7576,12 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; "unsafe" = dontDistribute super."unsafe"; @@ -7636,6 +7702,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -7669,11 +7736,13 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vty-ui" = dontDistribute super."vty-ui"; "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; + "wai" = doDistribute super."wai_3_0_3_0"; "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-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-extra" = doDistribute super."wai-extra_3_0_10"; "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; @@ -7733,6 +7802,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7787,6 +7857,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7813,6 +7884,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7967,6 +8039,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; @@ -7994,6 +8067,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8065,6 +8139,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index f5c0bb7f4d3..efc5e18e7f8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.4"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -331,6 +331,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -489,6 +490,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "HaMinitel" = dontDistribute super."HaMinitel"; "HaPy" = dontDistribute super."HaPy"; "HaRe" = dontDistribute super."HaRe"; + "HaTeX" = doDistribute super."HaTeX_3_16_1_1"; "HaTeX-meta" = dontDistribute super."HaTeX-meta"; "HaTeX-qq" = dontDistribute super."HaTeX-qq"; "HaVSA" = dontDistribute super."HaVSA"; @@ -605,6 +607,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -615,6 +618,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "Limit" = dontDistribute super."Limit"; "LinearSplit" = dontDistribute super."LinearSplit"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; @@ -1214,15 +1218,20 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_3"; "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_0_3_3"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_3"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_3"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_3"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_3"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_3"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_3"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; "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"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_3"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_3"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_3"; @@ -1240,6 +1249,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-support" = doDistribute super."amazonka-support_0_3_3"; "amazonka-swf" = doDistribute super."amazonka-swf_0_3_3"; "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; "amazonka-workspaces" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_12_2"; @@ -1260,6 +1270,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_2"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1549,6 +1560,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1845,6 +1857,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2"; "cash" = dontDistribute super."cash"; @@ -2061,6 +2074,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = doDistribute super."composition_1_0_1_0"; "composition-extra" = dontDistribute super."composition-extra"; @@ -2415,9 +2429,11 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2566,6 +2582,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "dlist" = doDistribute super."dlist_0_7_1_1"; @@ -2656,6 +2673,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2672,6 +2690,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ed25519" = dontDistribute super."ed25519"; "ed25519-donna" = dontDistribute super."ed25519-donna"; "eddie" = dontDistribute super."eddie"; + "ede" = doDistribute super."ede_0_2_8_2"; "edenmodules" = dontDistribute super."edenmodules"; "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; @@ -2725,6 +2744,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2951,6 +2971,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -2981,6 +3002,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3001,6 +3023,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3060,6 +3083,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3138,6 +3162,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3171,7 +3196,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3308,6 +3335,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3369,6 +3397,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = dontDistribute super."grouped-list"; "groupoid" = dontDistribute super."groupoid"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3623,6 +3652,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3705,6 +3735,8 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -4254,6 +4286,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_11_1"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5104,6 +5137,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5121,6 +5155,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5158,6 +5193,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5180,6 +5216,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5249,6 +5286,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -5385,6 +5423,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5893,6 +5932,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -5901,6 +5941,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5937,6 +5978,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6293,6 +6335,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6560,6 +6603,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_3_8"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6584,6 +6628,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; "sdl2" = doDistribute super."sdl2_1_3_0"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; "sdl2-image" = dontDistribute super."sdl2-image"; "sdl2-ttf" = dontDistribute super."sdl2-ttf"; @@ -6596,6 +6641,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -6937,6 +6983,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7001,6 +7048,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "stackage-types" = doDistribute super."stackage-types_1_0_0"; "stackage-update" = dontDistribute super."stackage-update"; "stackage-upload" = dontDistribute super."stackage-upload"; + "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"; @@ -7173,6 +7221,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7231,6 +7280,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; + "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7238,6 +7288,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7405,6 +7456,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7559,6 +7611,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7668,10 +7721,12 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; "unsafe" = dontDistribute super."unsafe"; @@ -7794,6 +7849,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -7896,6 +7952,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7950,6 +8007,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7978,6 +8036,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8136,6 +8195,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; "yesod-auth-oauth" = doDistribute super."yesod-auth-oauth_1_4_0_1"; "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; @@ -8164,6 +8224,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8238,6 +8299,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index b74571404f7..e385c5e8041 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.4"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -331,6 +331,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -489,6 +490,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "HaMinitel" = dontDistribute super."HaMinitel"; "HaPy" = dontDistribute super."HaPy"; "HaRe" = dontDistribute super."HaRe"; + "HaTeX" = doDistribute super."HaTeX_3_16_1_1"; "HaTeX-meta" = dontDistribute super."HaTeX-meta"; "HaTeX-qq" = dontDistribute super."HaTeX-qq"; "HaVSA" = dontDistribute super."HaVSA"; @@ -605,6 +607,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -615,6 +618,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "Limit" = dontDistribute super."Limit"; "LinearSplit" = dontDistribute super."LinearSplit"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; @@ -1214,15 +1218,20 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_4"; "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_0_3_4"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_4"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_4"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_4"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_4"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_4"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_4"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; "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"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_4"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_4"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_4"; @@ -1240,6 +1249,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-support" = doDistribute super."amazonka-support_0_3_4"; "amazonka-swf" = doDistribute super."amazonka-swf_0_3_4"; "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; "amazonka-workspaces" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_12_2"; @@ -1260,6 +1270,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_2"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1548,6 +1559,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1844,6 +1856,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2"; "cash" = dontDistribute super."cash"; @@ -2060,6 +2073,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = doDistribute super."composition_1_0_1_0"; "composition-extra" = dontDistribute super."composition-extra"; @@ -2414,9 +2428,11 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2565,6 +2581,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "dlist" = doDistribute super."dlist_0_7_1_1"; @@ -2655,6 +2672,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2671,6 +2689,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ed25519" = dontDistribute super."ed25519"; "ed25519-donna" = dontDistribute super."ed25519-donna"; "eddie" = dontDistribute super."eddie"; + "ede" = doDistribute super."ede_0_2_8_2"; "edenmodules" = dontDistribute super."edenmodules"; "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; @@ -2724,6 +2743,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2950,6 +2970,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -2980,6 +3001,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3000,6 +3022,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3059,6 +3082,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3137,6 +3161,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3170,7 +3195,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3307,6 +3334,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3368,6 +3396,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = dontDistribute super."grouped-list"; "groupoid" = dontDistribute super."groupoid"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3622,6 +3651,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3674,6 +3704,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_5_0_3"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-crypto" = dontDistribute super."haskoin-crypto"; @@ -3703,6 +3734,8 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -4252,6 +4285,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_11_1"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5102,6 +5136,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5118,6 +5153,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5155,6 +5191,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5177,6 +5214,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5246,6 +5284,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -5382,6 +5421,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5888,6 +5928,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -5896,6 +5937,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5932,6 +5974,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6288,6 +6331,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6553,6 +6597,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_3_8"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6577,6 +6622,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; "sdl2" = doDistribute super."sdl2_1_3_0"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; "sdl2-image" = dontDistribute super."sdl2-image"; "sdl2-ttf" = dontDistribute super."sdl2-ttf"; @@ -6589,6 +6635,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -6930,6 +6977,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6994,6 +7042,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "stackage-types" = doDistribute super."stackage-types_1_0_0"; "stackage-update" = dontDistribute super."stackage-update"; "stackage-upload" = dontDistribute super."stackage-upload"; + "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"; @@ -7166,6 +7215,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7224,6 +7274,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; + "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7231,6 +7282,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7398,6 +7450,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7552,6 +7605,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7661,10 +7715,12 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; "unsafe" = dontDistribute super."unsafe"; @@ -7787,6 +7843,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -7889,6 +7946,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7943,6 +8001,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7971,6 +8030,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8129,6 +8189,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; "yesod-auth-oauth" = doDistribute super."yesod-auth-oauth_1_4_0_1"; "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; @@ -8157,6 +8218,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8231,6 +8293,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index 0ffe715f910..4d8785f64de 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.4"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -331,6 +331,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -489,6 +490,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "HaMinitel" = dontDistribute super."HaMinitel"; "HaPy" = dontDistribute super."HaPy"; "HaRe" = dontDistribute super."HaRe"; + "HaTeX" = doDistribute super."HaTeX_3_16_1_1"; "HaTeX-meta" = dontDistribute super."HaTeX-meta"; "HaTeX-qq" = dontDistribute super."HaTeX-qq"; "HaVSA" = dontDistribute super."HaVSA"; @@ -605,6 +607,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -615,6 +618,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "Limit" = dontDistribute super."Limit"; "LinearSplit" = dontDistribute super."LinearSplit"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; @@ -1214,15 +1218,20 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_4"; "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_0_3_4"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_4"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_4"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_4"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_4"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_4"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_4"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; "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"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_4"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_4"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_4"; @@ -1240,6 +1249,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-support" = doDistribute super."amazonka-support_0_3_4"; "amazonka-swf" = doDistribute super."amazonka-swf_0_3_4"; "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; "amazonka-workspaces" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_12_2"; @@ -1260,6 +1270,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_2"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1548,6 +1559,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1844,6 +1856,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2"; "cash" = dontDistribute super."cash"; @@ -2060,6 +2073,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = doDistribute super."composition_1_0_1_0"; "composition-extra" = dontDistribute super."composition-extra"; @@ -2413,9 +2427,11 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2563,6 +2579,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "dlist" = doDistribute super."dlist_0_7_1_1"; @@ -2653,6 +2670,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2669,6 +2687,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ed25519" = dontDistribute super."ed25519"; "ed25519-donna" = dontDistribute super."ed25519-donna"; "eddie" = dontDistribute super."eddie"; + "ede" = doDistribute super."ede_0_2_8_2"; "edenmodules" = dontDistribute super."edenmodules"; "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; @@ -2722,6 +2741,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2948,6 +2968,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -2978,6 +2999,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2998,6 +3020,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3057,6 +3080,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3135,6 +3159,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3168,7 +3193,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3305,6 +3332,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3366,6 +3394,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "groundhog-th" = doDistribute super."groundhog-th_0_7_0"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = dontDistribute super."grouped-list"; "groupoid" = dontDistribute super."groupoid"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3620,6 +3649,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3672,6 +3702,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_5_0_3"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-crypto" = dontDistribute super."haskoin-crypto"; @@ -3701,6 +3732,8 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -4250,6 +4283,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_11_1"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5099,6 +5133,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5115,6 +5150,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5152,6 +5188,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5174,6 +5211,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5243,6 +5281,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -5379,6 +5418,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5885,6 +5925,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -5893,6 +5934,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5929,6 +5971,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6285,6 +6328,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6550,6 +6594,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_3_8"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6574,6 +6619,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; "sdl2" = doDistribute super."sdl2_1_3_0"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; "sdl2-image" = dontDistribute super."sdl2-image"; "sdl2-ttf" = dontDistribute super."sdl2-ttf"; @@ -6586,6 +6632,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -6927,6 +6974,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6991,6 +7039,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "stackage-types" = doDistribute super."stackage-types_1_0_0"; "stackage-update" = dontDistribute super."stackage-update"; "stackage-upload" = dontDistribute super."stackage-upload"; + "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"; @@ -7162,6 +7211,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7220,6 +7270,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty" = doDistribute super."tasty_0_10_1_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; + "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7227,6 +7278,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7394,6 +7446,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7548,6 +7601,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7657,10 +7711,12 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; "unsafe" = dontDistribute super."unsafe"; @@ -7783,6 +7839,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -7885,6 +7942,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7939,6 +7997,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7967,6 +8026,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8125,6 +8185,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; "yesod-auth-oauth" = doDistribute super."yesod-auth-oauth_1_4_0_1"; "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; @@ -8153,6 +8214,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8227,6 +8289,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index e43a0ede702..a508c266754 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.4"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -331,6 +331,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -489,6 +490,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "HaMinitel" = dontDistribute super."HaMinitel"; "HaPy" = dontDistribute super."HaPy"; "HaRe" = dontDistribute super."HaRe"; + "HaTeX" = doDistribute super."HaTeX_3_16_1_1"; "HaTeX-meta" = dontDistribute super."HaTeX-meta"; "HaTeX-qq" = dontDistribute super."HaTeX-qq"; "HaVSA" = dontDistribute super."HaVSA"; @@ -605,6 +607,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -615,6 +618,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "Limit" = dontDistribute super."Limit"; "LinearSplit" = dontDistribute super."LinearSplit"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; @@ -1212,15 +1216,20 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_4"; "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_0_3_4"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_4"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_4"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_4"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_4"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_4"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_4"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; "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"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_4"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_4"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_4"; @@ -1238,6 +1247,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-support" = doDistribute super."amazonka-support_0_3_4"; "amazonka-swf" = doDistribute super."amazonka-swf_0_3_4"; "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; "amazonka-workspaces" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_12_2"; @@ -1258,6 +1268,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_2"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1545,6 +1556,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1841,6 +1853,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2"; "cash" = dontDistribute super."cash"; @@ -2056,6 +2069,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = doDistribute super."composition_1_0_1_0"; "composition-extra" = dontDistribute super."composition-extra"; @@ -2409,9 +2423,11 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2559,6 +2575,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "dlist" = doDistribute super."dlist_0_7_1_1"; @@ -2649,6 +2666,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2665,6 +2683,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ed25519" = dontDistribute super."ed25519"; "ed25519-donna" = dontDistribute super."ed25519-donna"; "eddie" = dontDistribute super."eddie"; + "ede" = doDistribute super."ede_0_2_8_2"; "edenmodules" = dontDistribute super."edenmodules"; "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; @@ -2718,6 +2737,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2944,6 +2964,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -2974,6 +2995,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2994,6 +3016,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3053,6 +3076,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3131,6 +3155,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3164,7 +3189,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3301,6 +3328,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3361,6 +3389,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3614,6 +3643,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3666,6 +3696,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_5_0_3"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-crypto" = dontDistribute super."haskoin-crypto"; @@ -3695,6 +3726,8 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -4244,6 +4277,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_11_2"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5093,6 +5127,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5109,6 +5144,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5146,6 +5182,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5168,6 +5205,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5237,6 +5275,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -5373,6 +5412,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5878,6 +5918,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -5886,6 +5927,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5922,6 +5964,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6278,6 +6321,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6543,6 +6587,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_3_8"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6567,6 +6612,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; "sdl2" = doDistribute super."sdl2_1_3_0"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; "sdl2-image" = dontDistribute super."sdl2-image"; "sdl2-ttf" = dontDistribute super."sdl2-ttf"; @@ -6579,6 +6625,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -6920,6 +6967,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6984,6 +7032,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "stackage-types" = doDistribute super."stackage-types_1_0_0"; "stackage-update" = dontDistribute super."stackage-update"; "stackage-upload" = dontDistribute super."stackage-upload"; + "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"; @@ -7155,6 +7204,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7213,6 +7263,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty" = doDistribute super."tasty_0_10_1_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; + "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7220,6 +7271,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7387,6 +7439,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7539,6 +7592,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7648,10 +7702,12 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; "unsafe" = dontDistribute super."unsafe"; @@ -7774,6 +7830,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -7876,6 +7933,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7930,6 +7988,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7958,6 +8017,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8116,6 +8176,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; @@ -8143,6 +8204,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8217,6 +8279,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index 3215a2f23f2..6e9e7ff7f10 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.4"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -330,6 +330,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -346,6 +347,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -487,6 +489,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "HaMinitel" = dontDistribute super."HaMinitel"; "HaPy" = dontDistribute super."HaPy"; "HaRe" = dontDistribute super."HaRe"; + "HaTeX" = doDistribute super."HaTeX_3_16_1_1"; "HaTeX-meta" = dontDistribute super."HaTeX-meta"; "HaTeX-qq" = dontDistribute super."HaTeX-qq"; "HaVSA" = dontDistribute super."HaVSA"; @@ -603,6 +606,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -613,6 +617,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "Limit" = dontDistribute super."Limit"; "LinearSplit" = dontDistribute super."LinearSplit"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; @@ -1210,15 +1215,20 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_4"; "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_0_3_4"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_4"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_4"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_4"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_4"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_4"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_4"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; "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"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_4"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_4"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_4"; @@ -1236,6 +1246,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-support" = doDistribute super."amazonka-support_0_3_4"; "amazonka-swf" = doDistribute super."amazonka-swf_0_3_4"; "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; "amazonka-workspaces" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_12_2"; @@ -1256,6 +1267,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_2"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1543,6 +1555,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1839,6 +1852,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2"; "cash" = dontDistribute super."cash"; @@ -2054,6 +2068,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = doDistribute super."composition_1_0_1_0"; "composition-extra" = dontDistribute super."composition-extra"; @@ -2407,9 +2422,11 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2557,6 +2574,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "dlist" = doDistribute super."dlist_0_7_1_1"; @@ -2647,6 +2665,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2663,6 +2682,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ed25519" = dontDistribute super."ed25519"; "ed25519-donna" = dontDistribute super."ed25519-donna"; "eddie" = dontDistribute super."eddie"; + "ede" = doDistribute super."ede_0_2_8_2"; "edenmodules" = dontDistribute super."edenmodules"; "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; @@ -2716,6 +2736,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2942,6 +2963,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -2972,6 +2994,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2992,6 +3015,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3051,6 +3075,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3129,6 +3154,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3162,7 +3188,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3299,6 +3327,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3359,6 +3388,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3612,6 +3642,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3664,6 +3695,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_5_0_3"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-crypto" = dontDistribute super."haskoin-crypto"; @@ -3693,6 +3725,8 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -4242,6 +4276,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_11_2"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5091,6 +5126,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5107,6 +5143,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5144,6 +5181,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5166,6 +5204,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5235,6 +5274,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -5372,6 +5412,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5876,6 +5917,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -5884,6 +5926,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5920,6 +5963,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6276,6 +6320,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6541,6 +6586,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_3_8"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6565,6 +6611,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; "sdl2" = doDistribute super."sdl2_1_3_0"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; "sdl2-image" = dontDistribute super."sdl2-image"; "sdl2-ttf" = dontDistribute super."sdl2-ttf"; @@ -6577,6 +6624,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -6918,6 +6966,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6982,6 +7031,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "stackage-types" = doDistribute super."stackage-types_1_0_0"; "stackage-update" = dontDistribute super."stackage-update"; "stackage-upload" = dontDistribute super."stackage-upload"; + "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"; @@ -7153,6 +7203,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7211,6 +7262,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty" = doDistribute super."tasty_0_10_1_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; + "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7218,6 +7270,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7385,6 +7438,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7537,6 +7591,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7646,10 +7701,12 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; "unsafe" = dontDistribute super."unsafe"; @@ -7772,6 +7829,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -7874,6 +7932,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7928,6 +7987,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7956,6 +8016,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8114,6 +8175,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; @@ -8141,6 +8203,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8215,6 +8278,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index 914923cb6e9..e9b2c5052dc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.4"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -330,6 +330,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -346,6 +347,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -487,6 +489,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "HaMinitel" = dontDistribute super."HaMinitel"; "HaPy" = dontDistribute super."HaPy"; "HaRe" = dontDistribute super."HaRe"; + "HaTeX" = doDistribute super."HaTeX_3_16_1_1"; "HaTeX-meta" = dontDistribute super."HaTeX-meta"; "HaTeX-qq" = dontDistribute super."HaTeX-qq"; "HaVSA" = dontDistribute super."HaVSA"; @@ -603,6 +606,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -613,6 +617,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "Limit" = dontDistribute super."Limit"; "LinearSplit" = dontDistribute super."LinearSplit"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; @@ -1209,15 +1214,20 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_4"; "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_0_3_4"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_4"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_4"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_4"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_4"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_4"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_4"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; "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"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_4"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_4"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_4"; @@ -1235,6 +1245,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-support" = doDistribute super."amazonka-support_0_3_4"; "amazonka-swf" = doDistribute super."amazonka-swf_0_3_4"; "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; "amazonka-workspaces" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_12_2"; @@ -1255,6 +1266,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_2"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1542,6 +1554,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1838,6 +1851,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cases" = doDistribute super."cases_0_1_2"; "cash" = dontDistribute super."cash"; @@ -2053,7 +2067,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = doDistribute super."composition_1_0_1_1"; "composition-extra" = dontDistribute super."composition-extra"; "composition-tree" = dontDistribute super."composition-tree"; "compression" = dontDistribute super."compression"; @@ -2405,9 +2421,11 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2555,6 +2573,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "dlist" = doDistribute super."dlist_0_7_1_1"; @@ -2645,6 +2664,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2661,6 +2681,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ed25519" = dontDistribute super."ed25519"; "ed25519-donna" = dontDistribute super."ed25519-donna"; "eddie" = dontDistribute super."eddie"; + "ede" = doDistribute super."ede_0_2_8_2"; "edenmodules" = dontDistribute super."edenmodules"; "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; @@ -2714,6 +2735,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2940,6 +2962,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -2969,6 +2992,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2989,6 +3013,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3048,6 +3073,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3126,6 +3152,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3159,7 +3186,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3296,6 +3325,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3356,6 +3386,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3609,6 +3640,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3661,6 +3693,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_5_0_3"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-crypto" = dontDistribute super."haskoin-crypto"; @@ -3690,6 +3723,8 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -4239,6 +4274,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_11_2"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5086,6 +5122,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5102,6 +5139,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5139,6 +5177,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5161,6 +5200,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5230,6 +5270,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -5367,6 +5408,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5871,6 +5913,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -5879,6 +5922,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5915,6 +5959,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6271,6 +6316,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6535,6 +6581,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_3_8"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6559,6 +6606,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; "sdl2" = doDistribute super."sdl2_1_3_0"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; "sdl2-image" = dontDistribute super."sdl2-image"; "sdl2-ttf" = dontDistribute super."sdl2-ttf"; @@ -6571,6 +6619,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -6911,6 +6960,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6973,6 +7023,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "stackage-types" = doDistribute super."stackage-types_1_0_0"; "stackage-update" = doDistribute super."stackage-update_0_1_1_1"; "stackage-upload" = doDistribute super."stackage-upload_0_1_0_4"; + "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"; @@ -7144,6 +7195,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7199,8 +7251,10 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; + "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7208,6 +7262,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7375,6 +7430,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7527,6 +7583,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7636,10 +7693,12 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; "unsafe" = dontDistribute super."unsafe"; @@ -7762,6 +7821,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -7864,6 +7924,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7918,6 +7979,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7946,6 +8008,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8104,6 +8167,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; @@ -8131,6 +8195,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8205,6 +8270,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index 03c784ef742..3ad75c3f98e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.8.4"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -330,6 +330,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -346,6 +347,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "GLHUI" = dontDistribute super."GLHUI"; "GLM" = dontDistribute super."GLM"; "GLMatrix" = dontDistribute super."GLMatrix"; + "GLURaw" = doDistribute super."GLURaw_1_5_0_1"; "GLUT" = doDistribute super."GLUT_2_7_0_1"; "GLUtil" = dontDistribute super."GLUtil"; "GPX" = dontDistribute super."GPX"; @@ -487,6 +489,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "HaMinitel" = dontDistribute super."HaMinitel"; "HaPy" = dontDistribute super."HaPy"; "HaRe" = dontDistribute super."HaRe"; + "HaTeX" = doDistribute super."HaTeX_3_16_1_1"; "HaTeX-meta" = dontDistribute super."HaTeX-meta"; "HaTeX-qq" = dontDistribute super."HaTeX-qq"; "HaVSA" = dontDistribute super."HaVSA"; @@ -603,6 +606,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -613,6 +617,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "Limit" = dontDistribute super."Limit"; "LinearSplit" = dontDistribute super."LinearSplit"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; @@ -1209,15 +1214,20 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-efs" = dontDistribute super."amazonka-efs"; "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_4"; "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_0_3_4"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_4"; "amazonka-elb" = doDistribute super."amazonka-elb_0_3_4"; "amazonka-emr" = doDistribute super."amazonka-emr_0_3_4"; "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_4"; "amazonka-iam" = doDistribute super."amazonka-iam_0_3_4"; "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_4"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; "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"; "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_4"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; "amazonka-ml" = dontDistribute super."amazonka-ml"; "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_4"; "amazonka-rds" = doDistribute super."amazonka-rds_0_3_4"; @@ -1235,6 +1245,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "amazonka-support" = doDistribute super."amazonka-support_0_3_4"; "amazonka-swf" = doDistribute super."amazonka-swf_0_3_4"; "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; "amazonka-workspaces" = dontDistribute super."amazonka-workspaces"; "ampersand" = dontDistribute super."ampersand"; "amqp" = doDistribute super."amqp_0_12_2"; @@ -1255,6 +1266,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_2"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1540,6 +1552,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1836,6 +1849,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; @@ -2050,7 +2064,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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" = doDistribute super."composition_1_0_1_1"; "composition-extra" = dontDistribute super."composition-extra"; "composition-tree" = dontDistribute super."composition-tree"; "compression" = dontDistribute super."compression"; @@ -2402,9 +2418,11 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2552,6 +2570,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "dlist" = doDistribute super."dlist_0_7_1_1"; @@ -2642,6 +2661,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2657,6 +2677,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "ed25519" = dontDistribute super."ed25519"; "ed25519-donna" = dontDistribute super."ed25519-donna"; "eddie" = dontDistribute super."eddie"; + "ede" = doDistribute super."ede_0_2_8_2"; "edenmodules" = dontDistribute super."edenmodules"; "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; @@ -2710,6 +2731,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2935,6 +2957,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "fingertree-psqueue" = dontDistribute super."fingertree-psqueue"; "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"; @@ -2964,6 +2987,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -2984,6 +3008,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3043,6 +3068,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3121,6 +3147,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3154,7 +3181,9 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3290,6 +3319,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3350,6 +3380,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3603,6 +3634,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -3655,6 +3687,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_5_0_3"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-crypto" = dontDistribute super."haskoin-crypto"; @@ -3684,6 +3717,8 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -4232,6 +4267,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_11_2"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -5076,6 +5112,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; @@ -5092,6 +5129,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5129,6 +5167,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "metrics" = dontDistribute super."metrics"; "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"; @@ -5151,6 +5190,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5220,6 +5260,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = dontDistribute super."monad-peel"; @@ -5357,6 +5398,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5859,6 +5901,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; @@ -5867,6 +5910,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -5903,6 +5947,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6258,6 +6303,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6522,6 +6568,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_3_8"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6546,6 +6593,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "sde-solver" = dontDistribute super."sde-solver"; "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; "sdl2" = doDistribute super."sdl2_1_3_0"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; "sdl2-compositor" = dontDistribute super."sdl2-compositor"; "sdl2-image" = dontDistribute super."sdl2-image"; "sdl2-ttf" = dontDistribute super."sdl2-ttf"; @@ -6558,6 +6606,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -6898,6 +6947,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -6958,6 +7008,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "stackage-setup" = dontDistribute super."stackage-setup"; "stackage-types" = doDistribute super."stackage-types_1_0_1_1"; "stackage-upload" = doDistribute super."stackage-upload_0_1_0_4"; + "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"; @@ -7129,6 +7180,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7182,8 +7234,10 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; + "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; "tasty-hspec" = dontDistribute super."tasty-hspec"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7191,6 +7245,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = dontDistribute super."tasty-rerun"; "tasty-silver" = dontDistribute super."tasty-silver"; "tasty-tap" = dontDistribute super."tasty-tap"; @@ -7358,6 +7413,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "timecalc" = dontDistribute super."timecalc"; "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; + "timeless" = dontDistribute super."timeless"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7510,6 +7566,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7619,10 +7676,12 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "unlambda" = dontDistribute super."unlambda"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; "unpack-funcs" = dontDistribute super."unpack-funcs"; "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; "unsafe" = dontDistribute super."unsafe"; @@ -7745,6 +7804,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -7847,6 +7907,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7901,6 +7962,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -7929,6 +7991,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; @@ -8086,6 +8149,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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-oauth2" = doDistribute super."yesod-auth-oauth2_0_0_12"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; @@ -8113,6 +8177,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "yesod-mangopay" = dontDistribute super."yesod-mangopay"; "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"; @@ -8187,6 +8252,7 @@ self: super: assert super.ghc.name == "ghc-7.8.4"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index 2aaeb734cef..09a04be9184 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.10.2"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -317,6 +317,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -473,6 +474,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "HaMinitel" = dontDistribute super."HaMinitel"; "HaPy" = dontDistribute super."HaPy"; "HaRe" = dontDistribute super."HaRe"; + "HaTeX" = doDistribute super."HaTeX_3_16_1_1"; "HaTeX-meta" = dontDistribute super."HaTeX-meta"; "HaTeX-qq" = dontDistribute super."HaTeX-qq"; "HaVSA" = dontDistribute super."HaVSA"; @@ -585,6 +587,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -595,6 +598,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "Limit" = dontDistribute super."Limit"; "LinearSplit" = dontDistribute super."LinearSplit"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; @@ -984,6 +988,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "YFrob" = dontDistribute super."YFrob"; "Yablog" = dontDistribute super."Yablog"; "YamlReference" = dontDistribute super."YamlReference"; + "Yampa" = doDistribute super."Yampa_0_10_2"; "Yampa-core" = dontDistribute super."Yampa-core"; "Yocto" = dontDistribute super."Yocto"; "Yogurt" = dontDistribute super."Yogurt"; @@ -1174,15 +1179,20 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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-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"; @@ -1200,6 +1210,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -1217,6 +1228,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_2"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1477,6 +1489,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1754,6 +1767,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; @@ -1958,7 +1972,9 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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" = doDistribute super."composition_1_0_1_1"; "composition-extra" = doDistribute super."composition-extra_1_1_0"; "composition-tree" = dontDistribute super."composition-tree"; "compression" = dontDistribute super."compression"; @@ -2118,6 +2134,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; @@ -2265,6 +2282,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "dbf" = dontDistribute super."dbf"; "dbjava" = dontDistribute super."dbjava"; "dbmigrations" = dontDistribute super."dbmigrations"; + "dbus" = doDistribute super."dbus_0_10_10"; "dbus-client" = dontDistribute super."dbus-client"; "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; @@ -2294,9 +2312,11 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2378,6 +2398,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "digestive-bootstrap" = dontDistribute super."digestive-bootstrap"; "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid"; "digestive-functors" = doDistribute super."digestive-functors_0_8_0_0"; + "digestive-functors-aeson" = doDistribute super."digestive-functors-aeson_1_1_16"; "digestive-functors-blaze" = dontDistribute super."digestive-functors-blaze"; "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack"; "digestive-functors-heist" = dontDistribute super."digestive-functors-heist"; @@ -2431,9 +2452,11 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; "dlist" = doDistribute super."dlist_0_7_1_1"; + "dns" = doDistribute super."dns_2_0_0"; "dnscache" = dontDistribute super."dnscache"; "dnsrbl" = dontDistribute super."dnsrbl"; "dnssd" = dontDistribute super."dnssd"; @@ -2518,6 +2541,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2533,6 +2557,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "ed25519" = dontDistribute super."ed25519"; "ed25519-donna" = dontDistribute super."ed25519-donna"; "eddie" = dontDistribute super."eddie"; + "ede" = doDistribute super."ede_0_2_8_2"; "edenmodules" = dontDistribute super."edenmodules"; "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; @@ -2582,6 +2607,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2668,6 +2694,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "exception-mailer" = dontDistribute super."exception-mailer"; "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"; "exherbo-cabal" = dontDistribute super."exherbo-cabal"; "exif" = dontDistribute super."exif"; "exinst" = dontDistribute super."exinst"; @@ -2785,6 +2812,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2813,6 +2841,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2824,6 +2853,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_1"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -2831,6 +2861,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2888,6 +2919,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2965,6 +2997,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2994,7 +3027,9 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -3121,6 +3156,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3180,6 +3216,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -3365,6 +3402,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_4"; "happstack-server-tls" = dontDistribute super."happstack-server-tls"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; @@ -3423,6 +3461,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -3435,6 +3474,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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" = doDistribute super."haskell-src-meta_0_6_0_10"; "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"; @@ -3473,6 +3513,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_5_0_3"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-crypto" = dontDistribute super."haskoin-crypto"; @@ -3500,6 +3541,8 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -3766,6 +3809,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "hoodle-publish" = dontDistribute super."hoodle-publish"; "hoodle-render" = dontDistribute super."hoodle-render"; "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle" = doDistribute super."hoogle_4_2_41"; "hoogle-index" = dontDistribute super."hoogle-index"; "hooks-dir" = dontDistribute super."hooks-dir"; "hoovie" = dontDistribute super."hoovie"; @@ -4018,6 +4062,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_19"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -4751,6 +4796,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "mailbox-count" = dontDistribute super."mailbox-count"; "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; "mailgun" = dontDistribute super."mailgun"; + "mainland-pretty" = doDistribute super."mainland-pretty_0_4_1_0"; "majordomo" = dontDistribute super."majordomo"; "majority" = dontDistribute super."majority"; "make-hard-links" = dontDistribute super."make-hard-links"; @@ -4797,6 +4843,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -4811,6 +4858,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -4843,6 +4891,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -4865,6 +4914,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -4922,12 +4972,14 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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_13_2"; "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" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-ran" = dontDistribute super."monad-ran"; @@ -5054,6 +5106,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -5522,6 +5575,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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-text" = doDistribute super."pipes-text_0_0_0_16"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -5529,6 +5583,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -5563,6 +5618,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -5625,6 +5681,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "powerpc" = dontDistribute super."powerpc"; "ppm" = dontDistribute super."ppm"; "pqc" = dontDistribute super."pqc"; + "pqueue" = doDistribute super."pqueue_1_3_0"; "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; @@ -5678,6 +5735,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "procrastinating-variable" = dontDistribute super."procrastinating-variable"; "procstat" = dontDistribute super."procstat"; "proctest" = dontDistribute super."proctest"; + "product-profunctors" = doDistribute super."product-profunctors_0_6_3"; "prof2dot" = dontDistribute super."prof2dot"; "prof2pretty" = dontDistribute super."prof2pretty"; "profiteur" = dontDistribute super."profiteur"; @@ -5830,6 +5888,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_1"; "rate-limit" = dontDistribute super."rate-limit"; "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; @@ -5902,6 +5961,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -6000,6 +6060,9 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "rest-core" = doDistribute super."rest-core_0_36_0_5"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_17_1_2"; + "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"; @@ -6156,6 +6219,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_3_8"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6180,6 +6244,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -6192,6 +6257,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_0_0"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -6512,6 +6578,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -6563,6 +6630,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "stack-prism" = dontDistribute super."stack-prism"; "stackage-curator" = dontDistribute super."stackage-curator"; "stackage-sandbox" = doDistribute super."stackage-sandbox_0_1_5"; + "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"; @@ -6725,6 +6793,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -6775,8 +6844,10 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; + "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -6784,6 +6855,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = doDistribute super."tasty-rerun_1_1_4"; "tasty-tap" = dontDistribute super."tasty-tap"; "tau" = dontDistribute super."tau"; @@ -6942,6 +7014,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7087,6 +7160,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7101,6 +7175,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7193,9 +7268,11 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "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"; @@ -7306,6 +7383,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -7339,9 +7417,11 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "vty-ui" = dontDistribute super."vty-ui"; "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; + "wai" = doDistribute super."wai_3_0_3_0"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-extra" = doDistribute super."wai-extra_3_0_10"; "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; @@ -7397,6 +7477,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7448,6 +7529,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7472,6 +7554,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7530,6 +7613,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_1"; "xml-conduit-parse" = dontDistribute super."xml-conduit-parse"; "xml-conduit-writer" = dontDistribute super."xml-conduit-writer"; "xml-enumerator" = dontDistribute super."xml-enumerator"; @@ -7619,6 +7703,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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-oauth2" = doDistribute super."yesod-auth-oauth2_0_1_2"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; @@ -7642,6 +7727,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "yesod-mangopay" = doDistribute super."yesod-mangopay_1_11_4"; "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"; @@ -7713,6 +7799,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index 6811352e110..50d34a82985 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.10.2"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -317,6 +317,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -473,6 +474,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "HaMinitel" = dontDistribute super."HaMinitel"; "HaPy" = dontDistribute super."HaPy"; "HaRe" = dontDistribute super."HaRe"; + "HaTeX" = doDistribute super."HaTeX_3_16_1_1"; "HaTeX-meta" = dontDistribute super."HaTeX-meta"; "HaTeX-qq" = dontDistribute super."HaTeX-qq"; "HaVSA" = dontDistribute super."HaVSA"; @@ -585,6 +587,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -595,6 +598,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "Limit" = dontDistribute super."Limit"; "LinearSplit" = dontDistribute super."LinearSplit"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; @@ -984,6 +988,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "YFrob" = dontDistribute super."YFrob"; "Yablog" = dontDistribute super."Yablog"; "YamlReference" = dontDistribute super."YamlReference"; + "Yampa" = doDistribute super."Yampa_0_10_2"; "Yampa-core" = dontDistribute super."Yampa-core"; "Yocto" = dontDistribute super."Yocto"; "Yogurt" = dontDistribute super."Yogurt"; @@ -1172,15 +1177,20 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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-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"; @@ -1198,6 +1208,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -1215,6 +1226,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_1"; "ansi-wl-pprint" = doDistribute super."ansi-wl-pprint_0_6_7_2"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1474,6 +1486,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1751,6 +1764,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; @@ -1955,7 +1969,9 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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" = doDistribute super."composition_1_0_1_1"; "composition-extra" = doDistribute super."composition-extra_1_1_0"; "composition-tree" = dontDistribute super."composition-tree"; "compression" = dontDistribute super."compression"; @@ -2115,6 +2131,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; @@ -2262,6 +2279,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "dbf" = dontDistribute super."dbf"; "dbjava" = dontDistribute super."dbjava"; "dbmigrations" = dontDistribute super."dbmigrations"; + "dbus" = doDistribute super."dbus_0_10_10"; "dbus-client" = dontDistribute super."dbus-client"; "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; @@ -2291,9 +2309,11 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2375,6 +2395,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "digestive-bootstrap" = dontDistribute super."digestive-bootstrap"; "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid"; "digestive-functors" = doDistribute super."digestive-functors_0_8_0_0"; + "digestive-functors-aeson" = doDistribute super."digestive-functors-aeson_1_1_16"; "digestive-functors-blaze" = dontDistribute super."digestive-functors-blaze"; "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack"; "digestive-functors-heist" = dontDistribute super."digestive-functors-heist"; @@ -2428,9 +2449,11 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; "dlist" = doDistribute super."dlist_0_7_1_1"; + "dns" = doDistribute super."dns_2_0_0"; "dnscache" = dontDistribute super."dnscache"; "dnsrbl" = dontDistribute super."dnsrbl"; "dnssd" = dontDistribute super."dnssd"; @@ -2515,6 +2538,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2530,6 +2554,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "ed25519" = dontDistribute super."ed25519"; "ed25519-donna" = dontDistribute super."ed25519-donna"; "eddie" = dontDistribute super."eddie"; + "ede" = doDistribute super."ede_0_2_8_2"; "edenmodules" = dontDistribute super."edenmodules"; "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; @@ -2579,6 +2604,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2665,6 +2691,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "exception-mailer" = dontDistribute super."exception-mailer"; "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"; "exherbo-cabal" = dontDistribute super."exherbo-cabal"; "exif" = dontDistribute super."exif"; "exinst" = dontDistribute super."exinst"; @@ -2779,6 +2806,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2807,6 +2835,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2818,6 +2847,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_1"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -2825,6 +2855,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2882,6 +2913,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2959,6 +2991,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2988,7 +3021,9 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -3115,6 +3150,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3174,6 +3210,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -3359,6 +3396,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_4"; "happstack-server-tls" = dontDistribute super."happstack-server-tls"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; @@ -3417,6 +3455,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -3429,6 +3468,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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" = doDistribute super."haskell-src-meta_0_6_0_10"; "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"; @@ -3467,6 +3507,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_5_0_3"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-crypto" = dontDistribute super."haskoin-crypto"; @@ -3494,6 +3535,8 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -3759,6 +3802,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "hoodle-publish" = dontDistribute super."hoodle-publish"; "hoodle-render" = dontDistribute super."hoodle-render"; "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle" = doDistribute super."hoogle_4_2_41"; "hoogle-index" = dontDistribute super."hoogle-index"; "hooks-dir" = dontDistribute super."hooks-dir"; "hoovie" = dontDistribute super."hoovie"; @@ -4011,6 +4055,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_19"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -4743,6 +4788,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "mailbox-count" = dontDistribute super."mailbox-count"; "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; "mailgun" = dontDistribute super."mailgun"; + "mainland-pretty" = doDistribute super."mainland-pretty_0_4_1_0"; "majordomo" = dontDistribute super."majordomo"; "majority" = dontDistribute super."majority"; "make-hard-links" = dontDistribute super."make-hard-links"; @@ -4789,6 +4835,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -4803,6 +4850,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -4835,6 +4883,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -4857,6 +4906,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -4914,12 +4964,14 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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_13_2"; "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" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-ran" = dontDistribute super."monad-ran"; @@ -5045,6 +5097,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -5512,6 +5565,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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-text" = doDistribute super."pipes-text_0_0_0_16"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -5519,6 +5573,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -5553,6 +5608,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -5615,6 +5671,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "powerpc" = dontDistribute super."powerpc"; "ppm" = dontDistribute super."ppm"; "pqc" = dontDistribute super."pqc"; + "pqueue" = doDistribute super."pqueue_1_3_0"; "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; @@ -5668,6 +5725,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "procrastinating-variable" = dontDistribute super."procrastinating-variable"; "procstat" = dontDistribute super."procstat"; "proctest" = dontDistribute super."proctest"; + "product-profunctors" = doDistribute super."product-profunctors_0_6_3"; "prof2dot" = dontDistribute super."prof2dot"; "prof2pretty" = dontDistribute super."prof2pretty"; "profiteur" = dontDistribute super."profiteur"; @@ -5820,6 +5878,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_1"; "rate-limit" = dontDistribute super."rate-limit"; "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; @@ -5892,6 +5951,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -5989,6 +6049,9 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "rest-core" = doDistribute super."rest-core_0_36_0_5"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_17_1_2"; + "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"; @@ -6145,6 +6208,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_3_8"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6169,6 +6233,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -6181,6 +6246,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "secdh" = dontDistribute super."secdh"; "seclib" = dontDistribute super."seclib"; "second-transfer" = doDistribute super."second-transfer_0_6_0_0"; + "secp256k1" = dontDistribute super."secp256k1"; "secret-santa" = dontDistribute super."secret-santa"; "secret-sharing" = dontDistribute super."secret-sharing"; "secrm" = dontDistribute super."secrm"; @@ -6501,6 +6567,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -6552,6 +6619,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "stack-prism" = dontDistribute super."stack-prism"; "stackage-curator" = dontDistribute super."stackage-curator"; "stackage-sandbox" = doDistribute super."stackage-sandbox_0_1_5"; + "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"; @@ -6714,6 +6782,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -6764,8 +6833,10 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; + "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -6773,6 +6844,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = doDistribute super."tasty-rerun_1_1_4"; "tasty-tap" = dontDistribute super."tasty-tap"; "tau" = dontDistribute super."tau"; @@ -6931,6 +7003,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7076,6 +7149,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7090,6 +7164,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7182,9 +7257,11 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "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"; @@ -7294,6 +7371,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -7327,9 +7405,11 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "vty-ui" = dontDistribute super."vty-ui"; "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; + "wai" = doDistribute super."wai_3_0_3_0"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-extra" = doDistribute super."wai-extra_3_0_10"; "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; @@ -7385,6 +7465,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7436,6 +7517,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7460,6 +7542,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7518,6 +7601,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_1"; "xml-conduit-parse" = dontDistribute super."xml-conduit-parse"; "xml-conduit-writer" = dontDistribute super."xml-conduit-writer"; "xml-enumerator" = dontDistribute super."xml-enumerator"; @@ -7607,6 +7691,8 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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-oauth2" = doDistribute super."yesod-auth-oauth2_0_1_3"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; @@ -7629,6 +7715,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "yesod-mangopay" = doDistribute super."yesod-mangopay_1_11_4"; "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"; @@ -7700,6 +7787,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index eb7552d7584..baec2a6a87e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.10.2"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -315,6 +315,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -470,6 +471,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "HaMinitel" = dontDistribute super."HaMinitel"; "HaPy" = dontDistribute super."HaPy"; "HaRe" = dontDistribute super."HaRe"; + "HaTeX" = doDistribute super."HaTeX_3_16_1_1"; "HaTeX-meta" = dontDistribute super."HaTeX-meta"; "HaTeX-qq" = dontDistribute super."HaTeX-qq"; "HaVSA" = dontDistribute super."HaVSA"; @@ -582,6 +584,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -592,6 +595,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "Limit" = dontDistribute super."Limit"; "LinearSplit" = dontDistribute super."LinearSplit"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; @@ -981,6 +985,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "YFrob" = dontDistribute super."YFrob"; "Yablog" = dontDistribute super."Yablog"; "YamlReference" = dontDistribute super."YamlReference"; + "Yampa" = doDistribute super."Yampa_0_10_2"; "Yampa-core" = dontDistribute super."Yampa-core"; "Yocto" = dontDistribute super."Yocto"; "Yogurt" = dontDistribute super."Yogurt"; @@ -1169,15 +1174,20 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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-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"; @@ -1195,6 +1205,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -1211,6 +1222,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_2"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1470,6 +1482,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1747,6 +1760,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; @@ -1951,7 +1965,9 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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" = doDistribute super."composition_1_0_1_1"; "composition-extra" = doDistribute super."composition-extra_1_1_0"; "composition-tree" = dontDistribute super."composition-tree"; "compression" = dontDistribute super."compression"; @@ -2111,6 +2127,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; @@ -2258,6 +2275,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "dbf" = dontDistribute super."dbf"; "dbjava" = dontDistribute super."dbjava"; "dbmigrations" = dontDistribute super."dbmigrations"; + "dbus" = doDistribute super."dbus_0_10_10"; "dbus-client" = dontDistribute super."dbus-client"; "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; @@ -2287,9 +2305,11 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2371,6 +2391,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "digestive-bootstrap" = dontDistribute super."digestive-bootstrap"; "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid"; "digestive-functors" = doDistribute super."digestive-functors_0_8_0_0"; + "digestive-functors-aeson" = doDistribute super."digestive-functors-aeson_1_1_16"; "digestive-functors-blaze" = dontDistribute super."digestive-functors-blaze"; "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack"; "digestive-functors-heist" = dontDistribute super."digestive-functors-heist"; @@ -2424,8 +2445,10 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; + "dns" = doDistribute super."dns_2_0_0"; "dnscache" = dontDistribute super."dnscache"; "dnsrbl" = dontDistribute super."dnsrbl"; "dnssd" = dontDistribute super."dnssd"; @@ -2510,6 +2533,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2525,6 +2549,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "ed25519" = dontDistribute super."ed25519"; "ed25519-donna" = dontDistribute super."ed25519-donna"; "eddie" = dontDistribute super."eddie"; + "ede" = doDistribute super."ede_0_2_8_2"; "edenmodules" = dontDistribute super."edenmodules"; "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; @@ -2574,6 +2599,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2660,6 +2686,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "exception-mailer" = dontDistribute super."exception-mailer"; "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"; "exherbo-cabal" = dontDistribute super."exherbo-cabal"; "exif" = dontDistribute super."exif"; "exinst" = dontDistribute super."exinst"; @@ -2774,6 +2801,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2802,6 +2830,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2813,6 +2842,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_1"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -2820,6 +2850,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2877,6 +2908,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2954,6 +2986,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2983,7 +3016,9 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -3109,6 +3144,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3168,6 +3204,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -3352,6 +3389,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_4"; "happstack-server-tls" = dontDistribute super."happstack-server-tls"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; @@ -3410,6 +3448,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -3422,6 +3461,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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" = doDistribute super."haskell-src-meta_0_6_0_10"; "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"; @@ -3460,6 +3500,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_5_0_3"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-crypto" = dontDistribute super."haskoin-crypto"; @@ -3487,6 +3528,8 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -3752,6 +3795,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "hoodle-publish" = dontDistribute super."hoodle-publish"; "hoodle-render" = dontDistribute super."hoodle-render"; "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle" = doDistribute super."hoogle_4_2_41"; "hoogle-index" = dontDistribute super."hoogle-index"; "hooks-dir" = dontDistribute super."hooks-dir"; "hoovie" = dontDistribute super."hoovie"; @@ -4003,6 +4047,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_20"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -4733,6 +4778,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "mailbox-count" = dontDistribute super."mailbox-count"; "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; "mailgun" = dontDistribute super."mailgun"; + "mainland-pretty" = doDistribute super."mainland-pretty_0_4_1_0"; "majordomo" = dontDistribute super."majordomo"; "majority" = dontDistribute super."majority"; "make-hard-links" = dontDistribute super."make-hard-links"; @@ -4779,6 +4825,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -4793,6 +4840,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -4825,6 +4873,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -4847,6 +4896,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -4904,12 +4954,14 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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_13_2"; "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" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-ran" = dontDistribute super."monad-ran"; @@ -5035,6 +5087,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -5501,6 +5554,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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-text" = doDistribute super."pipes-text_0_0_0_16"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -5508,6 +5562,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -5542,6 +5597,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -5604,6 +5660,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "powerpc" = dontDistribute super."powerpc"; "ppm" = dontDistribute super."ppm"; "pqc" = dontDistribute super."pqc"; + "pqueue" = doDistribute super."pqueue_1_3_0"; "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; @@ -5657,6 +5714,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "procrastinating-variable" = dontDistribute super."procrastinating-variable"; "procstat" = dontDistribute super."procstat"; "proctest" = dontDistribute super."proctest"; + "product-profunctors" = doDistribute super."product-profunctors_0_6_3"; "prof2dot" = dontDistribute super."prof2dot"; "prof2pretty" = dontDistribute super."prof2pretty"; "profiteur" = dontDistribute super."profiteur"; @@ -5808,6 +5866,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_1"; "rate-limit" = dontDistribute super."rate-limit"; "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; @@ -5880,6 +5939,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -5977,6 +6037,9 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "rest-core" = doDistribute super."rest-core_0_36_0_5"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_17_1_2"; + "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"; @@ -6132,6 +6195,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_3_8"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6156,6 +6220,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -6167,6 +6232,8 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -6484,6 +6551,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -6535,6 +6603,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "stack-prism" = dontDistribute super."stack-prism"; "stackage-curator" = dontDistribute super."stackage-curator"; "stackage-sandbox" = doDistribute super."stackage-sandbox_0_1_5"; + "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"; @@ -6696,6 +6765,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -6746,8 +6816,10 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; + "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -6755,6 +6827,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "tasty-laws" = dontDistribute super."tasty-laws"; "tasty-lens" = dontDistribute super."tasty-lens"; "tasty-program" = dontDistribute super."tasty-program"; + "tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = doDistribute super."tasty-rerun_1_1_4"; "tasty-tap" = dontDistribute super."tasty-tap"; "tau" = dontDistribute super."tau"; @@ -6912,6 +6985,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7057,6 +7131,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7071,6 +7146,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7163,9 +7239,11 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "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"; @@ -7275,6 +7353,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -7308,9 +7387,11 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "vty-ui" = dontDistribute super."vty-ui"; "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; + "wai" = doDistribute super."wai_3_0_3_0"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-extra" = doDistribute super."wai-extra_3_0_10"; "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; @@ -7356,6 +7437,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "waitfree" = dontDistribute super."waitfree"; "waitra" = doDistribute super."waitra_0_0_3_0"; "warc" = dontDistribute super."warc"; + "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_1"; @@ -7364,6 +7446,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7415,6 +7498,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7439,6 +7523,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7497,6 +7582,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_1"; "xml-conduit-parse" = dontDistribute super."xml-conduit-parse"; "xml-conduit-writer" = dontDistribute super."xml-conduit-writer"; "xml-enumerator" = dontDistribute super."xml-enumerator"; @@ -7586,6 +7672,8 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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-oauth2" = doDistribute super."yesod-auth-oauth2_0_1_3"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; @@ -7607,6 +7695,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "yesod-mangopay" = doDistribute super."yesod-mangopay_1_11_4"; "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"; @@ -7678,6 +7767,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index 9003a7bca23..c83d3237350 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.10.2"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -315,6 +315,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -470,6 +471,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "HaMinitel" = dontDistribute super."HaMinitel"; "HaPy" = dontDistribute super."HaPy"; "HaRe" = dontDistribute super."HaRe"; + "HaTeX" = doDistribute super."HaTeX_3_16_1_1"; "HaTeX-meta" = dontDistribute super."HaTeX-meta"; "HaTeX-qq" = dontDistribute super."HaTeX-qq"; "HaVSA" = dontDistribute super."HaVSA"; @@ -581,6 +583,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -591,6 +594,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "Limit" = dontDistribute super."Limit"; "LinearSplit" = dontDistribute super."LinearSplit"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; @@ -980,6 +984,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "YFrob" = dontDistribute super."YFrob"; "Yablog" = dontDistribute super."Yablog"; "YamlReference" = dontDistribute super."YamlReference"; + "Yampa" = doDistribute super."Yampa_0_10_2"; "Yampa-core" = dontDistribute super."Yampa-core"; "Yocto" = dontDistribute super."Yocto"; "Yogurt" = dontDistribute super."Yogurt"; @@ -1168,15 +1173,20 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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-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"; @@ -1194,6 +1204,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -1210,6 +1221,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_2"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1468,6 +1480,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1679,6 +1692,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_7"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -1744,6 +1758,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; @@ -1947,7 +1962,9 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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" = doDistribute super."composition_1_0_1_1"; "composition-extra" = doDistribute super."composition-extra_1_1_0"; "composition-tree" = dontDistribute super."composition-tree"; "compression" = dontDistribute super."compression"; @@ -2105,6 +2122,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; @@ -2252,6 +2270,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "dbf" = dontDistribute super."dbf"; "dbjava" = dontDistribute super."dbjava"; "dbmigrations" = dontDistribute super."dbmigrations"; + "dbus" = doDistribute super."dbus_0_10_10"; "dbus-client" = dontDistribute super."dbus-client"; "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; @@ -2281,9 +2300,11 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2365,6 +2386,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "digestive-bootstrap" = dontDistribute super."digestive-bootstrap"; "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid"; "digestive-functors" = doDistribute super."digestive-functors_0_8_0_0"; + "digestive-functors-aeson" = doDistribute super."digestive-functors-aeson_1_1_16"; "digestive-functors-blaze" = dontDistribute super."digestive-functors-blaze"; "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack"; "digestive-functors-heist" = dontDistribute super."digestive-functors-heist"; @@ -2418,8 +2440,10 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; + "dns" = doDistribute super."dns_2_0_0"; "dnscache" = dontDistribute super."dnscache"; "dnsrbl" = dontDistribute super."dnsrbl"; "dnssd" = dontDistribute super."dnssd"; @@ -2504,6 +2528,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2519,6 +2544,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "ed25519" = dontDistribute super."ed25519"; "ed25519-donna" = dontDistribute super."ed25519-donna"; "eddie" = dontDistribute super."eddie"; + "ede" = doDistribute super."ede_0_2_8_2"; "edenmodules" = dontDistribute super."edenmodules"; "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; @@ -2568,6 +2594,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2654,6 +2681,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "exception-mailer" = dontDistribute super."exception-mailer"; "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"; "exherbo-cabal" = dontDistribute super."exherbo-cabal"; "exif" = dontDistribute super."exif"; "exinst" = dontDistribute super."exinst"; @@ -2768,6 +2796,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2795,6 +2824,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2806,6 +2836,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_1"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -2813,6 +2844,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2870,6 +2902,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2947,6 +2980,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2976,7 +3010,9 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -3102,6 +3138,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3161,6 +3198,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -3345,6 +3383,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_4"; "happstack-server-tls" = dontDistribute super."happstack-server-tls"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; @@ -3403,6 +3442,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -3415,6 +3455,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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" = doDistribute super."haskell-src-meta_0_6_0_10"; "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"; @@ -3453,6 +3494,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_5_0_3"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-crypto" = dontDistribute super."haskoin-crypto"; @@ -3480,6 +3522,8 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -3743,6 +3787,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "hoodle-publish" = dontDistribute super."hoodle-publish"; "hoodle-render" = dontDistribute super."hoodle-render"; "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle" = doDistribute super."hoogle_4_2_41"; "hoogle-index" = dontDistribute super."hoogle-index"; "hooks-dir" = dontDistribute super."hooks-dir"; "hoovie" = dontDistribute super."hoovie"; @@ -3994,6 +4039,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_21"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -4724,6 +4770,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "mailbox-count" = dontDistribute super."mailbox-count"; "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; "mailgun" = dontDistribute super."mailgun"; + "mainland-pretty" = doDistribute super."mainland-pretty_0_4_1_0"; "majordomo" = dontDistribute super."majordomo"; "majority" = dontDistribute super."majority"; "make-hard-links" = dontDistribute super."make-hard-links"; @@ -4770,6 +4817,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -4784,6 +4832,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -4816,6 +4865,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -4838,11 +4888,13 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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-mail" = doDistribute super."mime-mail_0_4_10"; "mime-string" = dontDistribute super."mime-string"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; @@ -4894,12 +4946,14 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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_13_2"; "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" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-ran" = dontDistribute super."monad-ran"; @@ -4934,6 +4988,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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-extras" = doDistribute super."monoid-extras_0_4_0_1"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5024,6 +5079,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -5489,6 +5545,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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-text" = doDistribute super."pipes-text_0_0_0_16"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -5496,6 +5553,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -5530,6 +5588,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -5592,6 +5651,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "powerpc" = dontDistribute super."powerpc"; "ppm" = dontDistribute super."ppm"; "pqc" = dontDistribute super."pqc"; + "pqueue" = doDistribute super."pqueue_1_3_0"; "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; @@ -5645,6 +5705,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "procrastinating-variable" = dontDistribute super."procrastinating-variable"; "procstat" = dontDistribute super."procstat"; "proctest" = dontDistribute super."proctest"; + "product-profunctors" = doDistribute super."product-profunctors_0_6_3"; "prof2dot" = dontDistribute super."prof2dot"; "prof2pretty" = dontDistribute super."prof2pretty"; "profiteur" = dontDistribute super."profiteur"; @@ -5795,6 +5856,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_1"; "rate-limit" = dontDistribute super."rate-limit"; "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; @@ -5867,6 +5929,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -5963,6 +6026,9 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "rest-core" = doDistribute super."rest-core_0_36_0_5"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_17_1_2"; + "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"; @@ -6118,6 +6184,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_3_8"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6142,6 +6209,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -6153,6 +6221,8 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -6469,6 +6539,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -6520,6 +6591,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "stack-prism" = dontDistribute super."stack-prism"; "stackage-curator" = dontDistribute super."stackage-curator"; "stackage-sandbox" = doDistribute super."stackage-sandbox_0_1_5"; + "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"; @@ -6681,6 +6753,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -6731,14 +6804,17 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; + "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; "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-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = doDistribute super."tasty-rerun_1_1_4"; "tasty-tap" = dontDistribute super."tasty-tap"; "tau" = dontDistribute super."tau"; @@ -6896,6 +6972,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7041,6 +7118,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7055,6 +7133,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7147,9 +7226,11 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "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"; @@ -7258,6 +7339,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -7291,9 +7373,11 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "vty-ui" = dontDistribute super."vty-ui"; "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; + "wai" = doDistribute super."wai_3_0_3_0"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-extra" = doDistribute super."wai-extra_3_0_10"; "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; @@ -7339,6 +7423,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "waitfree" = dontDistribute super."waitfree"; "waitra" = doDistribute super."waitra_0_0_3_0"; "warc" = dontDistribute super."warc"; + "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_2"; @@ -7347,6 +7432,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7398,6 +7484,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7422,6 +7509,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7480,6 +7568,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_1"; "xml-conduit-parse" = dontDistribute super."xml-conduit-parse"; "xml-conduit-writer" = dontDistribute super."xml-conduit-writer"; "xml-enumerator" = dontDistribute super."xml-enumerator"; @@ -7568,6 +7657,8 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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-oauth2" = doDistribute super."yesod-auth-oauth2_0_1_3"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; @@ -7575,6 +7666,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "yesod-comments" = dontDistribute super."yesod-comments"; "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-core" = doDistribute super."yesod-core_1_4_15"; "yesod-crud" = dontDistribute super."yesod-crud"; "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; "yesod-datatables" = dontDistribute super."yesod-datatables"; @@ -7588,6 +7680,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "yesod-mangopay" = doDistribute super."yesod-mangopay_1_11_4"; "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"; @@ -7659,6 +7752,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index d4cbf00504c..74cf66b00f3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.10.2"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -315,6 +315,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -470,6 +471,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "HaMinitel" = dontDistribute super."HaMinitel"; "HaPy" = dontDistribute super."HaPy"; "HaRe" = dontDistribute super."HaRe"; + "HaTeX" = doDistribute super."HaTeX_3_16_1_1"; "HaTeX-meta" = dontDistribute super."HaTeX-meta"; "HaTeX-qq" = dontDistribute super."HaTeX-qq"; "HaVSA" = dontDistribute super."HaVSA"; @@ -581,6 +583,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -591,6 +594,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "Limit" = dontDistribute super."Limit"; "LinearSplit" = dontDistribute super."LinearSplit"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; @@ -980,6 +984,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "YFrob" = dontDistribute super."YFrob"; "Yablog" = dontDistribute super."Yablog"; "YamlReference" = dontDistribute super."YamlReference"; + "Yampa" = doDistribute super."Yampa_0_10_2"; "Yampa-core" = dontDistribute super."Yampa-core"; "Yocto" = dontDistribute super."Yocto"; "Yogurt" = dontDistribute super."Yogurt"; @@ -1168,15 +1173,20 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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-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"; @@ -1194,6 +1204,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -1210,6 +1221,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansi-terminal" = doDistribute super."ansi-terminal_0_6_2_2"; + "ansigraph" = dontDistribute super."ansigraph"; "antagonist" = dontDistribute super."antagonist"; "antfarm" = dontDistribute super."antfarm"; "anticiv" = dontDistribute super."anticiv"; @@ -1468,6 +1480,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1679,6 +1692,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_7"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -1744,6 +1758,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; @@ -1946,7 +1961,9 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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" = doDistribute super."composition_1_0_1_1"; "composition-extra" = doDistribute super."composition-extra_1_1_0"; "composition-tree" = dontDistribute super."composition-tree"; "compression" = dontDistribute super."compression"; @@ -2104,6 +2121,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; @@ -2251,6 +2269,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "dbf" = dontDistribute super."dbf"; "dbjava" = dontDistribute super."dbjava"; "dbmigrations" = dontDistribute super."dbmigrations"; + "dbus" = doDistribute super."dbus_0_10_10"; "dbus-client" = dontDistribute super."dbus-client"; "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; @@ -2280,9 +2299,11 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2364,6 +2385,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "digestive-bootstrap" = dontDistribute super."digestive-bootstrap"; "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid"; "digestive-functors" = doDistribute super."digestive-functors_0_8_0_0"; + "digestive-functors-aeson" = doDistribute super."digestive-functors-aeson_1_1_16"; "digestive-functors-blaze" = dontDistribute super."digestive-functors-blaze"; "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack"; "digestive-functors-heist" = dontDistribute super."digestive-functors-heist"; @@ -2417,8 +2439,10 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; + "dns" = doDistribute super."dns_2_0_0"; "dnscache" = dontDistribute super."dnscache"; "dnsrbl" = dontDistribute super."dnsrbl"; "dnssd" = dontDistribute super."dnssd"; @@ -2503,6 +2527,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2518,6 +2543,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "ed25519" = dontDistribute super."ed25519"; "ed25519-donna" = dontDistribute super."ed25519-donna"; "eddie" = dontDistribute super."eddie"; + "ede" = doDistribute super."ede_0_2_8_2"; "edenmodules" = dontDistribute super."edenmodules"; "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; @@ -2567,6 +2593,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2653,6 +2680,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "exception-mailer" = dontDistribute super."exception-mailer"; "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"; "exherbo-cabal" = dontDistribute super."exherbo-cabal"; "exif" = dontDistribute super."exif"; "exinst" = dontDistribute super."exinst"; @@ -2767,6 +2795,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2794,6 +2823,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2805,6 +2835,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_1"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -2812,6 +2843,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2869,6 +2901,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2946,6 +2979,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2975,7 +3009,9 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -3101,6 +3137,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3160,6 +3197,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -3344,6 +3382,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_4"; "happstack-server-tls" = dontDistribute super."happstack-server-tls"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; @@ -3402,6 +3441,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -3414,6 +3454,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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" = doDistribute super."haskell-src-meta_0_6_0_10"; "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"; @@ -3452,6 +3493,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_5_0_3"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-crypto" = dontDistribute super."haskoin-crypto"; @@ -3479,6 +3521,8 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -3742,6 +3786,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "hoodle-publish" = dontDistribute super."hoodle-publish"; "hoodle-render" = dontDistribute super."hoodle-render"; "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle" = doDistribute super."hoogle_4_2_41"; "hoogle-index" = dontDistribute super."hoogle-index"; "hooks-dir" = dontDistribute super."hooks-dir"; "hoovie" = dontDistribute super."hoovie"; @@ -3993,6 +4038,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_21"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -4723,6 +4769,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "mailbox-count" = dontDistribute super."mailbox-count"; "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; "mailgun" = dontDistribute super."mailgun"; + "mainland-pretty" = doDistribute super."mainland-pretty_0_4_1_0"; "majordomo" = dontDistribute super."majordomo"; "majority" = dontDistribute super."majority"; "make-hard-links" = dontDistribute super."make-hard-links"; @@ -4769,6 +4816,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -4783,6 +4831,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -4815,6 +4864,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -4837,11 +4887,13 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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-mail" = doDistribute super."mime-mail_0_4_10"; "mime-string" = dontDistribute super."mime-string"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; @@ -4893,12 +4945,14 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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_13_2"; "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" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-ran" = dontDistribute super."monad-ran"; @@ -4933,6 +4987,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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-extras" = doDistribute super."monoid-extras_0_4_0_1"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5023,6 +5078,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -5236,6 +5292,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "only" = dontDistribute super."only"; "onu-course" = dontDistribute super."onu-course"; "oo-prototypes" = dontDistribute super."oo-prototypes"; + "opaleye" = doDistribute super."opaleye_0_4_1_0"; "opaleye-classy" = dontDistribute super."opaleye-classy"; "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -5487,6 +5544,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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-text" = doDistribute super."pipes-text_0_0_0_16"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -5494,6 +5552,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -5528,6 +5587,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -5590,6 +5650,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "powerpc" = dontDistribute super."powerpc"; "ppm" = dontDistribute super."ppm"; "pqc" = dontDistribute super."pqc"; + "pqueue" = doDistribute super."pqueue_1_3_0"; "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; @@ -5643,6 +5704,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "procrastinating-variable" = dontDistribute super."procrastinating-variable"; "procstat" = dontDistribute super."procstat"; "proctest" = dontDistribute super."proctest"; + "product-profunctors" = doDistribute super."product-profunctors_0_6_3"; "prof2dot" = dontDistribute super."prof2dot"; "prof2pretty" = dontDistribute super."prof2pretty"; "profiteur" = dontDistribute super."profiteur"; @@ -5793,6 +5855,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_1"; "rate-limit" = dontDistribute super."rate-limit"; "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; @@ -5865,6 +5928,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -5961,6 +6025,9 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "rest-core" = doDistribute super."rest-core_0_36_0_5"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_17_1_2"; + "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"; @@ -6115,6 +6182,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_3_8"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6139,6 +6207,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -6150,6 +6219,8 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -6226,6 +6297,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "shady-graphics" = dontDistribute super."shady-graphics"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; + "shake-language-c" = doDistribute super."shake-language-c_0_8_1"; "shake-minify" = dontDistribute super."shake-minify"; "shake-pack" = dontDistribute super."shake-pack"; "shaker" = dontDistribute super."shaker"; @@ -6465,6 +6537,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -6515,6 +6588,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "stack" = doDistribute super."stack_0_1_3_1"; "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"; @@ -6676,6 +6750,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -6726,14 +6801,17 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; + "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; "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-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-rerun" = doDistribute super."tasty-rerun_1_1_4"; "tasty-tap" = dontDistribute super."tasty-tap"; "tau" = dontDistribute super."tau"; @@ -6891,6 +6969,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7036,6 +7115,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7050,6 +7130,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7142,9 +7223,11 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "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"; @@ -7253,6 +7336,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -7286,9 +7370,11 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "vty-ui" = dontDistribute super."vty-ui"; "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; + "wai" = doDistribute super."wai_3_0_3_0"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-extra" = doDistribute super."wai-extra_3_0_10"; "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; @@ -7333,6 +7419,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; "warc" = dontDistribute super."warc"; + "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_2"; @@ -7341,6 +7428,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7392,6 +7480,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7416,6 +7505,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7474,6 +7564,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_1"; "xml-conduit-parse" = dontDistribute super."xml-conduit-parse"; "xml-conduit-writer" = dontDistribute super."xml-conduit-writer"; "xml-enumerator" = dontDistribute super."xml-enumerator"; @@ -7562,6 +7653,8 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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-oauth2" = doDistribute super."yesod-auth-oauth2_0_1_3"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; @@ -7569,6 +7662,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "yesod-comments" = dontDistribute super."yesod-comments"; "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-core" = doDistribute super."yesod-core_1_4_15"; "yesod-crud" = dontDistribute super."yesod-crud"; "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; "yesod-datatables" = dontDistribute super."yesod-datatables"; @@ -7582,6 +7676,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "yesod-mangopay" = doDistribute super."yesod-mangopay_1_11_4"; "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"; @@ -7653,6 +7748,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index 4a95dce3661..a238a1165eb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.10.2"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -315,6 +315,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -470,6 +471,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "HaMinitel" = dontDistribute super."HaMinitel"; "HaPy" = dontDistribute super."HaPy"; "HaRe" = dontDistribute super."HaRe"; + "HaTeX" = doDistribute super."HaTeX_3_16_1_1"; "HaTeX-meta" = dontDistribute super."HaTeX-meta"; "HaTeX-qq" = dontDistribute super."HaTeX-qq"; "HaVSA" = dontDistribute super."HaVSA"; @@ -581,6 +583,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -591,6 +594,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "Limit" = dontDistribute super."Limit"; "LinearSplit" = dontDistribute super."LinearSplit"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; @@ -769,6 +773,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; "RNAwolf" = dontDistribute super."RNAwolf"; + "RSA" = doDistribute super."RSA_2_1_0_3"; "Raincat" = dontDistribute super."Raincat"; "Random123" = dontDistribute super."Random123"; "RandomDotOrg" = dontDistribute super."RandomDotOrg"; @@ -979,6 +984,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "YFrob" = dontDistribute super."YFrob"; "Yablog" = dontDistribute super."Yablog"; "YamlReference" = dontDistribute super."YamlReference"; + "Yampa" = doDistribute super."Yampa_0_10_2"; "Yampa-core" = dontDistribute super."Yampa-core"; "Yocto" = dontDistribute super."Yocto"; "Yogurt" = dontDistribute super."Yogurt"; @@ -1167,15 +1173,20 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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-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"; @@ -1193,6 +1204,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -1208,6 +1220,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -1466,6 +1479,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1677,6 +1691,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_7"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -1741,6 +1756,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; @@ -1943,7 +1959,9 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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" = doDistribute super."composition_1_0_1_1"; "composition-extra" = doDistribute super."composition-extra_1_1_0"; "composition-tree" = dontDistribute super."composition-tree"; "compression" = dontDistribute super."compression"; @@ -2100,6 +2118,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; @@ -2247,6 +2266,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "dbf" = dontDistribute super."dbf"; "dbjava" = dontDistribute super."dbjava"; "dbmigrations" = dontDistribute super."dbmigrations"; + "dbus" = doDistribute super."dbus_0_10_10"; "dbus-client" = dontDistribute super."dbus-client"; "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; @@ -2276,9 +2296,11 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2360,6 +2382,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "digestive-bootstrap" = dontDistribute super."digestive-bootstrap"; "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid"; "digestive-functors" = doDistribute super."digestive-functors_0_8_0_0"; + "digestive-functors-aeson" = doDistribute super."digestive-functors-aeson_1_1_16"; "digestive-functors-blaze" = dontDistribute super."digestive-functors-blaze"; "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack"; "digestive-functors-heist" = dontDistribute super."digestive-functors-heist"; @@ -2413,8 +2436,10 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; + "dns" = doDistribute super."dns_2_0_0"; "dnscache" = dontDistribute super."dnscache"; "dnsrbl" = dontDistribute super."dnsrbl"; "dnssd" = dontDistribute super."dnssd"; @@ -2499,6 +2524,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2514,6 +2540,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "ed25519" = dontDistribute super."ed25519"; "ed25519-donna" = dontDistribute super."ed25519-donna"; "eddie" = dontDistribute super."eddie"; + "ede" = doDistribute super."ede_0_2_8_2"; "edenmodules" = dontDistribute super."edenmodules"; "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; @@ -2563,6 +2590,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2649,6 +2677,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "exception-mailer" = dontDistribute super."exception-mailer"; "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"; "exherbo-cabal" = dontDistribute super."exherbo-cabal"; "exif" = dontDistribute super."exif"; "exinst" = dontDistribute super."exinst"; @@ -2716,6 +2745,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "fdo-trash" = dontDistribute super."fdo-trash"; "fec" = dontDistribute super."fec"; "fedora-packages" = dontDistribute super."fedora-packages"; + "feed" = doDistribute super."feed_0_3_10_1"; "feed-cli" = dontDistribute super."feed-cli"; "feed-collect" = dontDistribute super."feed-collect"; "feed-crawl" = dontDistribute super."feed-crawl"; @@ -2760,6 +2790,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2787,6 +2818,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2798,6 +2830,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_1"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -2805,6 +2838,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2862,6 +2896,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2939,6 +2974,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2968,7 +3004,9 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -3094,6 +3132,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3153,6 +3192,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -3337,6 +3377,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_4"; "happstack-server-tls" = dontDistribute super."happstack-server-tls"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; @@ -3395,6 +3436,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -3406,6 +3448,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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" = doDistribute super."haskell-src-meta_0_6_0_10"; "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"; @@ -3444,6 +3487,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_5_0_3"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-crypto" = dontDistribute super."haskoin-crypto"; @@ -3471,6 +3515,8 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -3733,6 +3779,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "hoodle-publish" = dontDistribute super."hoodle-publish"; "hoodle-render" = dontDistribute super."hoodle-render"; "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle" = doDistribute super."hoogle_4_2_41"; "hoogle-index" = dontDistribute super."hoogle-index"; "hooks-dir" = dontDistribute super."hooks-dir"; "hoovie" = dontDistribute super."hoovie"; @@ -3983,6 +4030,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_22"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -4709,6 +4757,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "mailbox-count" = dontDistribute super."mailbox-count"; "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; "mailgun" = dontDistribute super."mailgun"; + "mainland-pretty" = doDistribute super."mainland-pretty_0_4_1_0"; "majordomo" = dontDistribute super."majordomo"; "majority" = dontDistribute super."majority"; "make-hard-links" = dontDistribute super."make-hard-links"; @@ -4755,6 +4804,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -4769,6 +4819,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -4801,6 +4852,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -4823,11 +4875,13 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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-mail" = doDistribute super."mime-mail_0_4_10"; "mime-string" = dontDistribute super."mime-string"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; @@ -4879,12 +4933,14 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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_13_2"; "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" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-ran" = dontDistribute super."monad-ran"; @@ -4914,10 +4970,12 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mongoDB" = doDistribute super."mongoDB_2_0_7"; "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-extras" = doDistribute super."monoid-extras_0_4_0_1"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; @@ -5007,6 +5065,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -5220,6 +5279,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "only" = dontDistribute super."only"; "onu-course" = dontDistribute super."onu-course"; "oo-prototypes" = dontDistribute super."oo-prototypes"; + "opaleye" = doDistribute super."opaleye_0_4_1_0"; "opaleye-classy" = dontDistribute super."opaleye-classy"; "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -5470,12 +5530,14 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -5510,6 +5572,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -5572,6 +5635,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "powerpc" = dontDistribute super."powerpc"; "ppm" = dontDistribute super."ppm"; "pqc" = dontDistribute super."pqc"; + "pqueue" = doDistribute super."pqueue_1_3_0"; "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; @@ -5623,6 +5687,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "procrastinating-variable" = dontDistribute super."procrastinating-variable"; "procstat" = dontDistribute super."procstat"; "proctest" = dontDistribute super."proctest"; + "product-profunctors" = doDistribute super."product-profunctors_0_6_3"; "prof2dot" = dontDistribute super."prof2dot"; "prof2pretty" = dontDistribute super."prof2pretty"; "profiteur" = dontDistribute super."profiteur"; @@ -5773,6 +5838,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_1"; "rate-limit" = dontDistribute super."rate-limit"; "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; @@ -5845,6 +5911,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -5938,8 +6005,12 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "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_2"; + "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"; @@ -6094,6 +6165,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_3_8"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6118,6 +6190,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -6129,6 +6202,8 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -6204,6 +6279,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "shady-graphics" = dontDistribute super."shady-graphics"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; + "shake-language-c" = doDistribute super."shake-language-c_0_8_1"; "shake-minify" = dontDistribute super."shake-minify"; "shake-pack" = dontDistribute super."shake-pack"; "shaker" = dontDistribute super."shaker"; @@ -6443,6 +6519,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -6493,6 +6570,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "stack" = doDistribute super."stack_0_1_4_1"; "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"; @@ -6654,6 +6732,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -6704,13 +6783,16 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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-golden" = doDistribute super."tasty-golden_2_3_0_1"; "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-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-tap" = dontDistribute super."tasty-tap"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -6865,6 +6947,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7010,6 +7093,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7024,6 +7108,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7116,9 +7201,11 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "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"; @@ -7227,6 +7314,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -7260,9 +7348,11 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "vty-ui" = dontDistribute super."vty-ui"; "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; + "wai" = doDistribute super."wai_3_0_3_0"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-extra" = doDistribute super."wai-extra_3_0_10"; "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; @@ -7307,6 +7397,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; "warc" = dontDistribute super."warc"; + "warp" = doDistribute super."warp_3_1_3"; "warp-dynamic" = dontDistribute super."warp-dynamic"; "warp-static" = dontDistribute super."warp-static"; "warp-tls-uid" = dontDistribute super."warp-tls-uid"; @@ -7314,6 +7405,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7365,6 +7457,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7389,6 +7482,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7445,6 +7539,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_1"; "xml-conduit-parse" = dontDistribute super."xml-conduit-parse"; "xml-conduit-writer" = dontDistribute super."xml-conduit-writer"; "xml-enumerator" = dontDistribute super."xml-enumerator"; @@ -7526,11 +7621,14 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "yes-precure5-command" = dontDistribute super."yes-precure5-command"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth" = doDistribute super."yesod-auth_1_4_6_1"; "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-oauth2" = doDistribute super."yesod-auth-oauth2_0_1_3"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; @@ -7538,6 +7636,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "yesod-comments" = dontDistribute super."yesod-comments"; "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-core" = doDistribute super."yesod-core_1_4_15"; "yesod-crud" = dontDistribute super."yesod-crud"; "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; "yesod-datatables" = dontDistribute super."yesod-datatables"; @@ -7551,6 +7650,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "yesod-mangopay" = doDistribute super."yesod-mangopay_1_11_4"; "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"; @@ -7620,6 +7720,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index a0f2f534e9a..28533c82c11 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.10.2"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -315,6 +315,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -470,6 +471,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "HaMinitel" = dontDistribute super."HaMinitel"; "HaPy" = dontDistribute super."HaPy"; "HaRe" = dontDistribute super."HaRe"; + "HaTeX" = doDistribute super."HaTeX_3_16_1_1"; "HaTeX-meta" = dontDistribute super."HaTeX-meta"; "HaTeX-qq" = dontDistribute super."HaTeX-qq"; "HaVSA" = dontDistribute super."HaVSA"; @@ -581,6 +583,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -591,6 +594,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "Limit" = dontDistribute super."Limit"; "LinearSplit" = dontDistribute super."LinearSplit"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; @@ -769,6 +773,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; "RNAwolf" = dontDistribute super."RNAwolf"; + "RSA" = doDistribute super."RSA_2_1_0_3"; "Raincat" = dontDistribute super."Raincat"; "Random123" = dontDistribute super."Random123"; "RandomDotOrg" = dontDistribute super."RandomDotOrg"; @@ -979,6 +984,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "YFrob" = dontDistribute super."YFrob"; "Yablog" = dontDistribute super."Yablog"; "YamlReference" = dontDistribute super."YamlReference"; + "Yampa" = doDistribute super."Yampa_0_10_2"; "Yampa-core" = dontDistribute super."Yampa-core"; "Yocto" = dontDistribute super."Yocto"; "Yogurt" = dontDistribute super."Yogurt"; @@ -1165,15 +1171,20 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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-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"; @@ -1191,6 +1202,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -1206,6 +1218,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -1463,6 +1476,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1674,6 +1688,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_7"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -1738,6 +1753,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; @@ -1939,7 +1955,9 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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" = doDistribute super."composition_1_0_1_1"; "composition-extra" = doDistribute super."composition-extra_1_1_0"; "composition-tree" = dontDistribute super."composition-tree"; "compression" = dontDistribute super."compression"; @@ -2096,6 +2114,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; @@ -2243,6 +2262,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "dbf" = dontDistribute super."dbf"; "dbjava" = dontDistribute super."dbjava"; "dbmigrations" = dontDistribute super."dbmigrations"; + "dbus" = doDistribute super."dbus_0_10_10"; "dbus-client" = dontDistribute super."dbus-client"; "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; @@ -2272,9 +2292,11 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2325,6 +2347,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_1_1"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_4"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_6"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; @@ -2354,6 +2377,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "digestive-bootstrap" = dontDistribute super."digestive-bootstrap"; "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid"; "digestive-functors" = doDistribute super."digestive-functors_0_8_0_0"; + "digestive-functors-aeson" = doDistribute super."digestive-functors-aeson_1_1_16"; "digestive-functors-blaze" = dontDistribute super."digestive-functors-blaze"; "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack"; "digestive-functors-heist" = dontDistribute super."digestive-functors-heist"; @@ -2407,8 +2431,10 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; + "dns" = doDistribute super."dns_2_0_0"; "dnscache" = dontDistribute super."dnscache"; "dnsrbl" = dontDistribute super."dnsrbl"; "dnssd" = dontDistribute super."dnssd"; @@ -2492,6 +2518,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2507,6 +2534,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "ed25519" = dontDistribute super."ed25519"; "ed25519-donna" = dontDistribute super."ed25519-donna"; "eddie" = dontDistribute super."eddie"; + "ede" = doDistribute super."ede_0_2_8_2"; "edenmodules" = dontDistribute super."edenmodules"; "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; @@ -2556,6 +2584,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2640,6 +2669,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "exception-mailer" = dontDistribute super."exception-mailer"; "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"; "exherbo-cabal" = dontDistribute super."exherbo-cabal"; "exif" = dontDistribute super."exif"; "exinst" = dontDistribute super."exinst"; @@ -2706,6 +2736,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "fdo-trash" = dontDistribute super."fdo-trash"; "fec" = dontDistribute super."fec"; "fedora-packages" = dontDistribute super."fedora-packages"; + "feed" = doDistribute super."feed_0_3_10_1"; "feed-cli" = dontDistribute super."feed-cli"; "feed-collect" = dontDistribute super."feed-collect"; "feed-crawl" = dontDistribute super."feed-crawl"; @@ -2750,6 +2781,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2777,6 +2809,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2788,6 +2821,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_1"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -2795,6 +2829,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2851,6 +2886,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2928,6 +2964,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2957,7 +2994,9 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -3081,6 +3120,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3140,6 +3180,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -3323,6 +3364,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_4"; "happstack-server-tls" = dontDistribute super."happstack-server-tls"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; @@ -3381,6 +3423,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -3392,6 +3435,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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" = doDistribute super."haskell-src-meta_0_6_0_10"; "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"; @@ -3430,6 +3474,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_5_0_3"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-crypto" = dontDistribute super."haskoin-crypto"; @@ -3457,6 +3502,8 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -3718,6 +3765,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "hoodle-publish" = dontDistribute super."hoodle-publish"; "hoodle-render" = dontDistribute super."hoodle-render"; "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle" = doDistribute super."hoogle_4_2_41"; "hoogle-index" = dontDistribute super."hoogle-index"; "hooks-dir" = dontDistribute super."hooks-dir"; "hoovie" = dontDistribute super."hoovie"; @@ -3967,6 +4015,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client" = doDistribute super."http-client_0_4_23"; "http-client-auth" = dontDistribute super."http-client-auth"; @@ -4688,6 +4737,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "mailbox-count" = dontDistribute super."mailbox-count"; "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; "mailgun" = dontDistribute super."mailgun"; + "mainland-pretty" = doDistribute super."mainland-pretty_0_4_1_0"; "majordomo" = dontDistribute super."majordomo"; "majority" = dontDistribute super."majority"; "make-hard-links" = dontDistribute super."make-hard-links"; @@ -4734,6 +4784,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -4748,6 +4799,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -4780,6 +4832,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -4802,11 +4855,13 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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-mail" = doDistribute super."mime-mail_0_4_10"; "mime-string" = dontDistribute super."mime-string"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; @@ -4858,12 +4913,14 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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_13_2"; "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" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-ran" = dontDistribute super."monad-ran"; @@ -4893,10 +4950,12 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mongoDB" = doDistribute super."mongoDB_2_0_7"; "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-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; "monoid-statistics" = dontDistribute super."monoid-statistics"; @@ -4984,6 +5043,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -5197,6 +5257,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "only" = dontDistribute super."only"; "onu-course" = dontDistribute super."onu-course"; "oo-prototypes" = dontDistribute super."oo-prototypes"; + "opaleye" = doDistribute super."opaleye_0_4_1_0"; "opaleye-classy" = dontDistribute super."opaleye-classy"; "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -5445,12 +5506,14 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -5485,6 +5548,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -5547,6 +5611,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "powerpc" = dontDistribute super."powerpc"; "ppm" = dontDistribute super."ppm"; "pqc" = dontDistribute super."pqc"; + "pqueue" = doDistribute super."pqueue_1_3_0"; "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; @@ -5598,6 +5663,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "procrastinating-variable" = dontDistribute super."procrastinating-variable"; "procstat" = dontDistribute super."procstat"; "proctest" = dontDistribute super."proctest"; + "product-profunctors" = doDistribute super."product-profunctors_0_6_3"; "prof2dot" = dontDistribute super."prof2dot"; "prof2pretty" = dontDistribute super."prof2pretty"; "profiteur" = dontDistribute super."profiteur"; @@ -5746,6 +5812,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_1"; "rate-limit" = dontDistribute super."rate-limit"; "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; @@ -5818,6 +5885,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -5911,8 +5979,12 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "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"; @@ -6067,6 +6139,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_3_8"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6091,6 +6164,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -6102,6 +6176,8 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -6177,6 +6253,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "shady-graphics" = dontDistribute super."shady-graphics"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; + "shake-language-c" = doDistribute super."shake-language-c_0_8_1"; "shake-minify" = dontDistribute super."shake-minify"; "shake-pack" = dontDistribute super."shake-pack"; "shaker" = dontDistribute super."shaker"; @@ -6415,6 +6492,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -6465,6 +6543,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "stack" = doDistribute super."stack_0_1_4_1"; "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"; @@ -6626,6 +6705,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -6676,13 +6756,16 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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-golden" = doDistribute super."tasty-golden_2_3_0_1"; "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-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-tap" = dontDistribute super."tasty-tap"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -6837,6 +6920,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -6981,6 +7065,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -6995,6 +7080,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7087,9 +7173,11 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "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"; @@ -7197,6 +7285,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -7229,9 +7318,11 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "vty-ui" = dontDistribute super."vty-ui"; "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; + "wai" = doDistribute super."wai_3_0_3_0"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-extra" = doDistribute super."wai-extra_3_0_10"; "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; @@ -7275,6 +7366,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; "warc" = dontDistribute super."warc"; + "warp" = doDistribute super."warp_3_1_3"; "warp-dynamic" = dontDistribute super."warp-dynamic"; "warp-static" = dontDistribute super."warp-static"; "warp-tls-uid" = dontDistribute super."warp-tls-uid"; @@ -7282,6 +7374,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7333,6 +7426,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7357,6 +7451,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7412,6 +7507,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_1"; "xml-conduit-parse" = dontDistribute super."xml-conduit-parse"; "xml-conduit-writer" = dontDistribute super."xml-conduit-writer"; "xml-enumerator" = dontDistribute super."xml-enumerator"; @@ -7493,11 +7589,14 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "yes-precure5-command" = dontDistribute super."yes-precure5-command"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth" = doDistribute super."yesod-auth_1_4_6_1"; "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-oauth2" = doDistribute super."yesod-auth-oauth2_0_1_3"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; @@ -7505,6 +7604,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "yesod-comments" = dontDistribute super."yesod-comments"; "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-core" = doDistribute super."yesod-core_1_4_15"; "yesod-crud" = dontDistribute super."yesod-crud"; "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; "yesod-datatables" = dontDistribute super."yesod-datatables"; @@ -7518,6 +7618,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "yesod-mangopay" = doDistribute super."yesod-mangopay_1_11_4"; "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"; @@ -7586,6 +7687,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index 41d317b43dd..440d6163086 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -2,7 +2,7 @@ with import ./lib.nix { inherit pkgs; }; -self: super: assert super.ghc.name == "ghc-7.10.2"; { +self: super: { # core libraries provided by the compiler Cabal = null; @@ -313,6 +313,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -468,6 +469,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "HaMinitel" = dontDistribute super."HaMinitel"; "HaPy" = dontDistribute super."HaPy"; "HaRe" = dontDistribute super."HaRe"; + "HaTeX" = doDistribute super."HaTeX_3_16_1_1"; "HaTeX-meta" = dontDistribute super."HaTeX-meta"; "HaTeX-qq" = dontDistribute super."HaTeX-qq"; "HaVSA" = dontDistribute super."HaVSA"; @@ -579,6 +581,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -589,6 +592,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "Limit" = dontDistribute super."Limit"; "LinearSplit" = dontDistribute super."LinearSplit"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; @@ -767,6 +771,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; "RNAwolf" = dontDistribute super."RNAwolf"; + "RSA" = doDistribute super."RSA_2_1_0_3"; "Raincat" = dontDistribute super."Raincat"; "Random123" = dontDistribute super."Random123"; "RandomDotOrg" = dontDistribute super."RandomDotOrg"; @@ -977,6 +982,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "YFrob" = dontDistribute super."YFrob"; "Yablog" = dontDistribute super."Yablog"; "YamlReference" = dontDistribute super."YamlReference"; + "Yampa" = doDistribute super."Yampa_0_10_2"; "Yampa-core" = dontDistribute super."Yampa-core"; "Yocto" = dontDistribute super."Yocto"; "Yogurt" = dontDistribute super."Yogurt"; @@ -1163,15 +1169,20 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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-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"; @@ -1189,6 +1200,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -1204,6 +1216,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -1441,6 +1454,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-orphans" = doDistribute super."binary-orphans_0_1_1_0"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; "binary-shared" = dontDistribute super."binary-shared"; @@ -1448,6 +1462,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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_1_0"; "binary-typed" = dontDistribute super."binary-typed"; "binarydefer" = dontDistribute super."binarydefer"; "bind-marshal" = dontDistribute super."bind-marshal"; @@ -1455,6 +1470,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "binding-gtk" = dontDistribute super."binding-gtk"; "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; + "bindings-DSL" = doDistribute super."bindings-DSL_1_0_22"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; "bindings-GLFW" = dontDistribute super."bindings-GLFW"; "bindings-K8055" = dontDistribute super."bindings-K8055"; @@ -1666,6 +1682,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_7"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -1730,6 +1747,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "case-insensitive" = doDistribute super."case-insensitive_1_2_0_4"; "cased" = dontDistribute super."cased"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; @@ -1819,7 +1837,13 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -1922,7 +1946,9 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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" = doDistribute super."composition_1_0_1_1"; "composition-extra" = doDistribute super."composition-extra_1_1_0"; "composition-tree" = dontDistribute super."composition-tree"; "compression" = dontDistribute super."compression"; @@ -2078,6 +2104,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; @@ -2225,6 +2252,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "dbf" = dontDistribute super."dbf"; "dbjava" = dontDistribute super."dbjava"; "dbmigrations" = dontDistribute super."dbmigrations"; + "dbus" = doDistribute super."dbus_0_10_10"; "dbus-client" = dontDistribute super."dbus-client"; "dbus-core" = dontDistribute super."dbus-core"; "dbus-qq" = dontDistribute super."dbus-qq"; @@ -2254,9 +2282,11 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2306,16 +2336,20 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_4"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_6"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-gtk" = dontDistribute super."diagrams-gtk"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_3"; "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-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_4"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_5"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; "dicom" = dontDistribute super."dicom"; @@ -2330,6 +2364,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "digestive-bootstrap" = dontDistribute super."digestive-bootstrap"; "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid"; "digestive-functors" = doDistribute super."digestive-functors_0_8_0_0"; + "digestive-functors-aeson" = doDistribute super."digestive-functors-aeson_1_1_16"; "digestive-functors-blaze" = dontDistribute super."digestive-functors-blaze"; "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack"; "digestive-functors-heist" = dontDistribute super."digestive-functors-heist"; @@ -2382,8 +2417,10 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; + "dns" = doDistribute super."dns_2_0_0"; "dnscache" = dontDistribute super."dnscache"; "dnsrbl" = dontDistribute super."dnsrbl"; "dnssd" = dontDistribute super."dnssd"; @@ -2467,6 +2504,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2482,6 +2520,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "ed25519" = dontDistribute super."ed25519"; "ed25519-donna" = dontDistribute super."ed25519-donna"; "eddie" = dontDistribute super."eddie"; + "ede" = doDistribute super."ede_0_2_8_2"; "edenmodules" = dontDistribute super."edenmodules"; "edenskel" = dontDistribute super."edenskel"; "edentv" = dontDistribute super."edentv"; @@ -2531,6 +2570,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2615,6 +2655,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "exception-mailer" = dontDistribute super."exception-mailer"; "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"; "exherbo-cabal" = dontDistribute super."exherbo-cabal"; "exif" = dontDistribute super."exif"; "exinst" = dontDistribute super."exinst"; @@ -2680,6 +2721,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "fdo-trash" = dontDistribute super."fdo-trash"; "fec" = dontDistribute super."fec"; "fedora-packages" = dontDistribute super."fedora-packages"; + "feed" = doDistribute super."feed_0_3_10_1"; "feed-cli" = dontDistribute super."feed-cli"; "feed-collect" = dontDistribute super."feed-collect"; "feed-crawl" = dontDistribute super."feed-crawl"; @@ -2724,6 +2766,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2751,6 +2794,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2762,6 +2806,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_1"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -2769,6 +2814,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2824,6 +2870,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2901,6 +2948,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -2930,7 +2978,9 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -3054,6 +3104,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gooey" = dontDistribute super."gooey"; "google-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; @@ -3113,6 +3164,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -3296,6 +3348,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_4"; "happstack-server-tls" = dontDistribute super."happstack-server-tls"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; @@ -3354,6 +3407,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -3365,6 +3419,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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" = doDistribute super."haskell-src-meta_0_6_0_10"; "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"; @@ -3403,6 +3458,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "haskgame" = dontDistribute super."haskgame"; "haskheap" = dontDistribute super."haskheap"; "haskhol-core" = dontDistribute super."haskhol-core"; + "haskintex" = doDistribute super."haskintex_0_5_0_3"; "haskmon" = dontDistribute super."haskmon"; "haskoin" = dontDistribute super."haskoin"; "haskoin-crypto" = dontDistribute super."haskoin-crypto"; @@ -3429,6 +3485,8 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -3689,6 +3747,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "hoodle-publish" = dontDistribute super."hoodle-publish"; "hoodle-render" = dontDistribute super."hoodle-render"; "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle" = doDistribute super."hoogle_4_2_41"; "hoogle-index" = dontDistribute super."hoogle-index"; "hooks-dir" = dontDistribute super."hooks-dir"; "hoovie" = dontDistribute super."hoovie"; @@ -3938,6 +3997,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; "http-client-auth" = dontDistribute super."http-client-auth"; "http-client-conduit" = dontDistribute super."http-client-conduit"; @@ -4373,6 +4433,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "language-boogie" = dontDistribute super."language-boogie"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; + "language-c-quote" = doDistribute super."language-c-quote_0_11_0_1"; "language-cil" = dontDistribute super."language-cil"; "language-css" = dontDistribute super."language-css"; "language-dot" = dontDistribute super."language-dot"; @@ -4656,6 +4717,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "mailbox-count" = dontDistribute super."mailbox-count"; "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; "mailgun" = dontDistribute super."mailgun"; + "mainland-pretty" = doDistribute super."mainland-pretty_0_4_1_0"; "majordomo" = dontDistribute super."majordomo"; "majority" = dontDistribute super."majority"; "make-hard-links" = dontDistribute super."make-hard-links"; @@ -4700,6 +4762,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -4714,6 +4777,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -4746,6 +4810,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -4768,11 +4833,13 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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-mail" = doDistribute super."mime-mail_0_4_10"; "mime-string" = dontDistribute super."mime-string"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; @@ -4824,12 +4891,14 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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_13_2"; "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" = doDistribute super."monad-parallel_0_7_1_4"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-ran" = dontDistribute super."monad-ran"; @@ -4859,10 +4928,12 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mongoDB" = doDistribute super."mongoDB_2_0_7"; "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-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; "monoid-statistics" = dontDistribute super."monoid-statistics"; @@ -4950,6 +5021,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -5163,6 +5235,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "only" = dontDistribute super."only"; "onu-course" = dontDistribute super."onu-course"; "oo-prototypes" = dontDistribute super."oo-prototypes"; + "opaleye" = doDistribute super."opaleye_0_4_1_0"; "opaleye-classy" = dontDistribute super."opaleye-classy"; "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -5353,6 +5426,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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_6"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -5408,12 +5482,14 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -5448,6 +5524,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -5509,6 +5586,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "powerpc" = dontDistribute super."powerpc"; "ppm" = dontDistribute super."ppm"; "pqc" = dontDistribute super."pqc"; + "pqueue" = doDistribute super."pqueue_1_3_0"; "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; @@ -5559,6 +5637,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "procrastinating-variable" = dontDistribute super."procrastinating-variable"; "procstat" = dontDistribute super."procstat"; "proctest" = dontDistribute super."proctest"; + "product-profunctors" = doDistribute super."product-profunctors_0_6_3"; "prof2dot" = dontDistribute super."prof2dot"; "prof2pretty" = dontDistribute super."prof2pretty"; "profiteur" = dontDistribute super."profiteur"; @@ -5705,6 +5784,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_1"; "rate-limit" = dontDistribute super."rate-limit"; "ratio-int" = dontDistribute super."ratio-int"; "raven-haskell" = dontDistribute super."raven-haskell"; @@ -5777,6 +5857,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; "reform-hamlet" = dontDistribute super."reform-hamlet"; @@ -5870,8 +5951,12 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "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"; @@ -6026,6 +6111,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_3_8"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6050,6 +6136,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -6061,6 +6148,8 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -6094,16 +6183,21 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "serial" = dontDistribute super."serial"; "serial-test-generators" = dontDistribute super."serial-test-generators"; "serialport" = dontDistribute super."serialport"; + "servant" = doDistribute super."servant_0_4_4_4"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; + "servant-client" = doDistribute super."servant-client_0_4_4_4"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_4"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_4"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_4"; "servius" = dontDistribute super."servius"; "ses-html" = dontDistribute super."ses-html"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; @@ -6131,6 +6225,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "shady-graphics" = dontDistribute super."shady-graphics"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; + "shake-language-c" = doDistribute super."shake-language-c_0_8_1"; "shake-minify" = dontDistribute super."shake-minify"; "shake-pack" = dontDistribute super."shake-pack"; "shaker" = dontDistribute super."shaker"; @@ -6366,6 +6461,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -6415,6 +6511,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -6576,6 +6673,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -6626,13 +6724,16 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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-golden" = doDistribute super."tasty-golden_2_3_0_1"; "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-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2"; "tasty-tap" = dontDistribute super."tasty-tap"; "tau" = dontDistribute super."tau"; "tbox" = dontDistribute super."tbox"; @@ -6787,6 +6888,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -6929,6 +7031,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -6943,6 +7046,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7035,9 +7139,11 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unix-time" = doDistribute super."unix-time_0_3_5"; "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"; @@ -7145,6 +7251,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "vector-space-opengl" = dontDistribute super."vector-space-opengl"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verilog" = dontDistribute super."verilog"; @@ -7177,9 +7284,11 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "vty-ui" = dontDistribute super."vty-ui"; "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; + "wai" = doDistribute super."wai_3_0_3_0"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-extra" = doDistribute super."wai-extra_3_0_10"; "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; @@ -7222,6 +7331,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; "warc" = dontDistribute super."warc"; + "warp" = doDistribute super."warp_3_1_3"; "warp-dynamic" = dontDistribute super."warp-dynamic"; "warp-static" = dontDistribute super."warp-static"; "warp-tls-uid" = dontDistribute super."warp-tls-uid"; @@ -7229,6 +7339,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7279,6 +7390,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7303,6 +7415,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7356,6 +7469,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_1"; "xml-conduit-parse" = dontDistribute super."xml-conduit-parse"; "xml-conduit-writer" = dontDistribute super."xml-conduit-writer"; "xml-enumerator" = dontDistribute super."xml-enumerator"; @@ -7437,11 +7551,14 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "yes-precure5-command" = dontDistribute super."yes-precure5-command"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth" = doDistribute super."yesod-auth_1_4_6_1"; "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-oauth2" = doDistribute super."yesod-auth-oauth2_0_1_3"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; @@ -7449,6 +7566,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "yesod-comments" = dontDistribute super."yesod-comments"; "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-core" = doDistribute super."yesod-core_1_4_15"; "yesod-crud" = dontDistribute super."yesod-crud"; "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; "yesod-datatables" = dontDistribute super."yesod-datatables"; @@ -7461,6 +7579,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; @@ -7529,6 +7648,7 @@ self: super: assert super.ghc.name == "ghc-7.10.2"; { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix new file mode 100644 index 00000000000..c2b6eabf5f0 --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -0,0 +1,7641 @@ +{ 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.8 packages + "3d-graphics-examples" = dontDistribute super."3d-graphics-examples"; + "3dmodels" = dontDistribute super."3dmodels"; + "4Blocks" = dontDistribute super."4Blocks"; + "AAI" = dontDistribute super."AAI"; + "ABList" = dontDistribute super."ABList"; + "AC-Angle" = dontDistribute super."AC-Angle"; + "AC-Boolean" = dontDistribute super."AC-Boolean"; + "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform"; + "AC-Colour" = dontDistribute super."AC-Colour"; + "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK"; + "AC-HalfInteger" = dontDistribute super."AC-HalfInteger"; + "AC-MiniTest" = dontDistribute super."AC-MiniTest"; + "AC-PPM" = dontDistribute super."AC-PPM"; + "AC-Random" = dontDistribute super."AC-Random"; + "AC-Terminal" = dontDistribute super."AC-Terminal"; + "AC-VanillaArray" = dontDistribute super."AC-VanillaArray"; + "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy"; + "ACME" = dontDistribute super."ACME"; + "ADPfusion" = dontDistribute super."ADPfusion"; + "AERN-Basics" = dontDistribute super."AERN-Basics"; + "AERN-Net" = dontDistribute super."AERN-Net"; + "AERN-Real" = dontDistribute super."AERN-Real"; + "AERN-Real-Double" = dontDistribute super."AERN-Real-Double"; + "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval"; + "AERN-RnToRm" = dontDistribute super."AERN-RnToRm"; + "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot"; + "AES" = dontDistribute super."AES"; + "AGI" = dontDistribute super."AGI"; + "ALUT" = dontDistribute super."ALUT"; + "AMI" = dontDistribute super."AMI"; + "ANum" = dontDistribute super."ANum"; + "ASN1" = dontDistribute super."ASN1"; + "AVar" = dontDistribute super."AVar"; + "AWin32Console" = dontDistribute super."AWin32Console"; + "AbortT-monadstf" = dontDistribute super."AbortT-monadstf"; + "AbortT-mtl" = dontDistribute super."AbortT-mtl"; + "AbortT-transformers" = dontDistribute super."AbortT-transformers"; + "ActionKid" = dontDistribute super."ActionKid"; + "Adaptive" = dontDistribute super."Adaptive"; + "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade"; + "Advgame" = dontDistribute super."Advgame"; + "AesonBson" = dontDistribute super."AesonBson"; + "Agata" = dontDistribute super."Agata"; + "Agda-executable" = dontDistribute super."Agda-executable"; + "AhoCorasick" = dontDistribute super."AhoCorasick"; + "AlgorithmW" = dontDistribute super."AlgorithmW"; + "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms"; + "Allure" = dontDistribute super."Allure"; + "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter"; + "Animas" = dontDistribute super."Animas"; + "Annotations" = dontDistribute super."Annotations"; + "Ansi2Html" = dontDistribute super."Ansi2Html"; + "ApplePush" = dontDistribute super."ApplePush"; + "AppleScript" = dontDistribute super."AppleScript"; + "ApproxFun-hs" = dontDistribute super."ApproxFun-hs"; + "ArrayRef" = dontDistribute super."ArrayRef"; + "ArrowVHDL" = dontDistribute super."ArrowVHDL"; + "AspectAG" = dontDistribute super."AspectAG"; + "AttoBencode" = dontDistribute super."AttoBencode"; + "AttoJson" = dontDistribute super."AttoJson"; + "Attrac" = dontDistribute super."Attrac"; + "Aurochs" = dontDistribute super."Aurochs"; + "AutoForms" = dontDistribute super."AutoForms"; + "AvlTree" = dontDistribute super."AvlTree"; + "BASIC" = dontDistribute super."BASIC"; + "BCMtools" = dontDistribute super."BCMtools"; + "BNFC" = dontDistribute super."BNFC"; + "BNFC-meta" = dontDistribute super."BNFC-meta"; + "Baggins" = dontDistribute super."Baggins"; + "Bang" = dontDistribute super."Bang"; + "Barracuda" = dontDistribute super."Barracuda"; + "Befunge93" = dontDistribute super."Befunge93"; + "BenchmarkHistory" = dontDistribute super."BenchmarkHistory"; + "BerkeleyDB" = dontDistribute super."BerkeleyDB"; + "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; + "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BigPixel" = dontDistribute super."BigPixel"; + "Binpack" = dontDistribute super."Binpack"; + "Biobase" = dontDistribute super."Biobase"; + "BiobaseBlast" = dontDistribute super."BiobaseBlast"; + "BiobaseDotP" = dontDistribute super."BiobaseDotP"; + "BiobaseFR3D" = dontDistribute super."BiobaseFR3D"; + "BiobaseFasta" = dontDistribute super."BiobaseFasta"; + "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; + "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "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"; + "Cascade" = dontDistribute super."Cascade"; + "Catana" = dontDistribute super."Catana"; + "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"; + "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" = doDistribute super."HaTeX_3_16_1_1"; + "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"; + "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"; + "ListLike" = doDistribute super."ListLike_4_2_0"; + "ListTree" = dontDistribute super."ListTree"; + "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"; + "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"; + "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"; + "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"; + "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"; + "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-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-extra" = dontDistribute super."aeson-extra"; + "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"; + "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-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-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"; + "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-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-tagged" = doDistribute super."binary-tagged_0_1_1_0"; + "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-DSL" = doDistribute super."bindings-DSL_1_0_22"; + "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"; + "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-handle" = dontDistribute super."bytestring-handle"; + "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-rpm" = doDistribute super."cabal-rpm_0_9_7"; + "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"; + "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"; + "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"; + "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-sa" = dontDistribute super."concurrent-sa"; + "concurrent-split" = dontDistribute super."concurrent-split"; + "concurrent-state" = dontDistribute super."concurrent-state"; + "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"; + "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"; + "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"; + "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-rev" = dontDistribute super."data-rev"; + "data-rope" = dontDistribute super."data-rope"; + "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" = doDistribute super."dbus_0_10_10"; + "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"; + "dns" = doDistribute super."dns_2_0_0"; + "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"; + "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"; + "ede" = doDistribute super."ede_0_2_8_3"; + "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"; + "exception-transformers" = doDistribute super."exception-transformers_0_4_0_1"; + "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"; + "flow" = doDistribute super."flow_1_0_1"; + "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"; + "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"; + "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-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"; + "gnuplot" = dontDistribute super."gnuplot"; + "goa" = dontDistribute super."goa"; + "goatee" = dontDistribute super."goatee"; + "goatee-gtk" = dontDistribute super."goatee-gtk"; + "gofer-prelude" = dontDistribute super."gofer-prelude"; + "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" = doDistribute super."happstack-server_7_4_4"; + "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-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-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_0_3"; + "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-vty" = dontDistribute super."hledger-vty"; + "hlibBladeRF" = dontDistribute super."hlibBladeRF"; + "hlibev" = dontDistribute super."hlibev"; + "hlibfam" = dontDistribute super."hlibfam"; + "hlogger" = dontDistribute super."hlogger"; + "hlongurl" = dontDistribute super."hlongurl"; + "hls" = dontDistribute super."hls"; + "hlwm" = dontDistribute super."hlwm"; + "hly" = dontDistribute super."hly"; + "hmark" = dontDistribute super."hmark"; + "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix-banded" = dontDistribute super."hmatrix-banded"; + "hmatrix-csv" = dontDistribute super."hmatrix-csv"; + "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; + "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; + "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp"; + "hmatrix-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" = doDistribute super."hoogle_4_2_41"; + "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"; + "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"; + "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"; + "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-api-data" = dontDistribute super."http-api-data"; + "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"; + "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"; + "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"; + "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-c-quote" = doDistribute super."language-c-quote_0_11_2"; + "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-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"; + "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-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" = doDistribute super."monad-parallel_0_7_1_4"; + "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"; + "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" = doDistribute super."mongoDB_2_0_7"; + "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-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"; + "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-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" = doDistribute super."opaleye_0_4_1_0"; + "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-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"; + "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"; + "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"; + "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palindromes" = dontDistribute super."palindromes"; + "pam" = dontDistribute super."pam"; + "panda" = dontDistribute super."panda"; + "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; + "pandoc-crossref" = dontDistribute super."pandoc-crossref"; + "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; + "pandoc-lens" = dontDistribute super."pandoc-lens"; + "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "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-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"; + "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"; + "pathfinding" = dontDistribute super."pathfinding"; + "pathfindingcore" = dontDistribute super."pathfindingcore"; + "pathtype" = dontDistribute super."pathtype"; + "patronscraper" = dontDistribute super."patronscraper"; + "patterns" = dontDistribute super."patterns"; + "paymill" = dontDistribute super."paymill"; + "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops"; + "paypal-api" = dontDistribute super."paypal-api"; + "pb" = dontDistribute super."pb"; + "pbc4hs" = dontDistribute super."pbc4hs"; + "pbkdf" = dontDistribute super."pbkdf"; + "pcap" = 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-template" = doDistribute super."persistent-template_2_1_3_6"; + "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"; + "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-gtk-ui" = dontDistribute super."plot-gtk-ui"; + "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"; + "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"; + "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-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"; + "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"; + "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"; + "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-dom" = dontDistribute super."reflex-dom"; + "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; + "reflex-gloss" = dontDistribute super."reflex-gloss"; + "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-array" = dontDistribute super."repa-array"; + "repa-bytestring" = dontDistribute super."repa-bytestring"; + "repa-convert" = dontDistribute super."repa-convert"; + "repa-eval" = dontDistribute super."repa-eval"; + "repa-examples" = dontDistribute super."repa-examples"; + "repa-fftw" = dontDistribute super."repa-fftw"; + "repa-flow" = dontDistribute super."repa-flow"; + "repa-linear-algebra" = dontDistribute super."repa-linear-algebra"; + "repa-plugin" = dontDistribute super."repa-plugin"; + "repa-scalar" = dontDistribute super."repa-scalar"; + "repa-series" = dontDistribute super."repa-series"; + "repa-sndfile" = dontDistribute super."repa-sndfile"; + "repa-stream" = dontDistribute super."repa-stream"; + "repa-v4l2" = dontDistribute super."repa-v4l2"; + "repl" = dontDistribute super."repl"; + "repl-toolkit" = dontDistribute super."repl-toolkit"; + "repline" = dontDistribute super."repline"; + "repo-based-blog" = dontDistribute super."repo-based-blog"; + "repr" = dontDistribute super."repr"; + "repr-tree-syb" = dontDistribute super."repr-tree-syb"; + "representable-functors" = dontDistribute super."representable-functors"; + "representable-profunctors" = dontDistribute super."representable-profunctors"; + "representable-tries" = dontDistribute super."representable-tries"; + "request-monad" = dontDistribute super."request-monad"; + "reserve" = dontDistribute super."reserve"; + "resistor-cube" = dontDistribute super."resistor-cube"; + "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-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"; + "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-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"; + "scientific" = doDistribute super."scientific_0_3_4_0"; + "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"; + "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" = doDistribute super."servant_0_4_4_4"; + "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; + "servant-blaze" = dontDistribute super."servant-blaze"; + "servant-client" = doDistribute super."servant-client_0_4_4_4"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_4"; + "servant-ede" = dontDistribute super."servant-ede"; + "servant-examples" = dontDistribute super."servant-examples"; + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_4"; + "servant-lucid" = dontDistribute super."servant-lucid"; + "servant-mock" = dontDistribute super."servant-mock"; + "servant-pool" = dontDistribute super."servant-pool"; + "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-response" = dontDistribute super."servant-response"; + "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_4"; + "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-language-c" = doDistribute super."shake-language-c_0_8_1"; + "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"; + "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"; + "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-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-haskell" = dontDistribute super."stripe-haskell"; + "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"; + "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-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"; + "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"; + "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-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"; + "typedquery" = dontDistribute super."typedquery"; + "typehash" = dontDistribute super."typehash"; + "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"; + "unix-time" = doDistribute super."unix-time_0_3_5"; + "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-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-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"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; + "verbalexpressions" = dontDistribute super."verbalexpressions"; + "verbosity" = dontDistribute super."verbosity"; + "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-digestive-functors" = dontDistribute super."wai-digestive-functors"; + "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-extra" = doDistribute super."wai-extra_3_0_10"; + "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-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-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-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" = doDistribute super."websockets_0_9_6_0"; + "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" = doDistribute super."yesod-auth_1_4_6_1"; + "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-oauth2" = doDistribute super."yesod-auth-oauth2_0_1_3"; + "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-core" = doDistribute super."yesod-core_1_4_15"; + "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-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.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix new file mode 100644 index 00000000000..ea7dd04fa31 --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -0,0 +1,7621 @@ +{ 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.9 packages + "3d-graphics-examples" = dontDistribute super."3d-graphics-examples"; + "3dmodels" = dontDistribute super."3dmodels"; + "4Blocks" = dontDistribute super."4Blocks"; + "AAI" = dontDistribute super."AAI"; + "ABList" = dontDistribute super."ABList"; + "AC-Angle" = dontDistribute super."AC-Angle"; + "AC-Boolean" = dontDistribute super."AC-Boolean"; + "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform"; + "AC-Colour" = dontDistribute super."AC-Colour"; + "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK"; + "AC-HalfInteger" = dontDistribute super."AC-HalfInteger"; + "AC-MiniTest" = dontDistribute super."AC-MiniTest"; + "AC-PPM" = dontDistribute super."AC-PPM"; + "AC-Random" = dontDistribute super."AC-Random"; + "AC-Terminal" = dontDistribute super."AC-Terminal"; + "AC-VanillaArray" = dontDistribute super."AC-VanillaArray"; + "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy"; + "ACME" = dontDistribute super."ACME"; + "ADPfusion" = dontDistribute super."ADPfusion"; + "AERN-Basics" = dontDistribute super."AERN-Basics"; + "AERN-Net" = dontDistribute super."AERN-Net"; + "AERN-Real" = dontDistribute super."AERN-Real"; + "AERN-Real-Double" = dontDistribute super."AERN-Real-Double"; + "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval"; + "AERN-RnToRm" = dontDistribute super."AERN-RnToRm"; + "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot"; + "AES" = dontDistribute super."AES"; + "AGI" = dontDistribute super."AGI"; + "ALUT" = dontDistribute super."ALUT"; + "AMI" = dontDistribute super."AMI"; + "ANum" = dontDistribute super."ANum"; + "ASN1" = dontDistribute super."ASN1"; + "AVar" = dontDistribute super."AVar"; + "AWin32Console" = dontDistribute super."AWin32Console"; + "AbortT-monadstf" = dontDistribute super."AbortT-monadstf"; + "AbortT-mtl" = dontDistribute super."AbortT-mtl"; + "AbortT-transformers" = dontDistribute super."AbortT-transformers"; + "ActionKid" = dontDistribute super."ActionKid"; + "Adaptive" = dontDistribute super."Adaptive"; + "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade"; + "Advgame" = dontDistribute super."Advgame"; + "AesonBson" = dontDistribute super."AesonBson"; + "Agata" = dontDistribute super."Agata"; + "Agda-executable" = dontDistribute super."Agda-executable"; + "AhoCorasick" = dontDistribute super."AhoCorasick"; + "AlgorithmW" = dontDistribute super."AlgorithmW"; + "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms"; + "Allure" = dontDistribute super."Allure"; + "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter"; + "Animas" = dontDistribute super."Animas"; + "Annotations" = dontDistribute super."Annotations"; + "Ansi2Html" = dontDistribute super."Ansi2Html"; + "ApplePush" = dontDistribute super."ApplePush"; + "AppleScript" = dontDistribute super."AppleScript"; + "ApproxFun-hs" = dontDistribute super."ApproxFun-hs"; + "ArrayRef" = dontDistribute super."ArrayRef"; + "ArrowVHDL" = dontDistribute super."ArrowVHDL"; + "AspectAG" = dontDistribute super."AspectAG"; + "AttoBencode" = dontDistribute super."AttoBencode"; + "AttoJson" = dontDistribute super."AttoJson"; + "Attrac" = dontDistribute super."Attrac"; + "Aurochs" = dontDistribute super."Aurochs"; + "AutoForms" = dontDistribute super."AutoForms"; + "AvlTree" = dontDistribute super."AvlTree"; + "BASIC" = dontDistribute super."BASIC"; + "BCMtools" = dontDistribute super."BCMtools"; + "BNFC" = dontDistribute super."BNFC"; + "BNFC-meta" = dontDistribute super."BNFC-meta"; + "Baggins" = dontDistribute super."Baggins"; + "Bang" = dontDistribute super."Bang"; + "Barracuda" = dontDistribute super."Barracuda"; + "Befunge93" = dontDistribute super."Befunge93"; + "BenchmarkHistory" = dontDistribute super."BenchmarkHistory"; + "BerkeleyDB" = dontDistribute super."BerkeleyDB"; + "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; + "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BigPixel" = dontDistribute super."BigPixel"; + "Binpack" = dontDistribute super."Binpack"; + "Biobase" = dontDistribute super."Biobase"; + "BiobaseBlast" = dontDistribute super."BiobaseBlast"; + "BiobaseDotP" = dontDistribute super."BiobaseDotP"; + "BiobaseFR3D" = dontDistribute super."BiobaseFR3D"; + "BiobaseFasta" = dontDistribute super."BiobaseFasta"; + "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; + "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "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"; + "Cascade" = dontDistribute super."Cascade"; + "Catana" = dontDistribute super."Catana"; + "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"; + "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"; + "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"; + "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"; + "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"; + "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"; + "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"; + "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"; + "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-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-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"; + "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-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-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"; + "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-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"; + "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-handle" = dontDistribute super."bytestring-handle"; + "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"; + "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"; + "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"; + "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-sa" = dontDistribute super."concurrent-sa"; + "concurrent-split" = dontDistribute super."concurrent-split"; + "concurrent-state" = dontDistribute super."concurrent-state"; + "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"; + "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"; + "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"; + "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-rev" = dontDistribute super."data-rev"; + "data-rope" = dontDistribute super."data-rope"; + "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"; + "dns" = doDistribute super."dns_2_0_0"; + "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"; + "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"; + "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"; + "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-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"; + "gnuplot" = dontDistribute super."gnuplot"; + "goa" = dontDistribute super."goa"; + "goatee" = dontDistribute super."goatee"; + "goatee-gtk" = dontDistribute super."goatee-gtk"; + "gofer-prelude" = dontDistribute super."gofer-prelude"; + "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" = doDistribute super."happstack-server_7_4_4"; + "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-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-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-vty" = dontDistribute super."hledger-vty"; + "hlibBladeRF" = dontDistribute super."hlibBladeRF"; + "hlibev" = dontDistribute super."hlibev"; + "hlibfam" = dontDistribute super."hlibfam"; + "hlogger" = dontDistribute super."hlogger"; + "hlongurl" = dontDistribute super."hlongurl"; + "hls" = dontDistribute super."hls"; + "hlwm" = dontDistribute super."hlwm"; + "hly" = dontDistribute super."hly"; + "hmark" = dontDistribute super."hmark"; + "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix-banded" = dontDistribute super."hmatrix-banded"; + "hmatrix-csv" = dontDistribute super."hmatrix-csv"; + "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; + "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; + "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp"; + "hmatrix-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"; + "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"; + "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"; + "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-api-data" = dontDistribute super."http-api-data"; + "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"; + "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"; + "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"; + "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-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"; + "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-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" = doDistribute super."monad-parallel_0_7_1_4"; + "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"; + "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-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"; + "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-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-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"; + "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"; + "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"; + "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palindromes" = dontDistribute super."palindromes"; + "pam" = dontDistribute super."pam"; + "panda" = dontDistribute super."panda"; + "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; + "pandoc-crossref" = dontDistribute super."pandoc-crossref"; + "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; + "pandoc-lens" = dontDistribute super."pandoc-lens"; + "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "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-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"; + "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"; + "pathfinding" = dontDistribute super."pathfinding"; + "pathfindingcore" = dontDistribute super."pathfindingcore"; + "pathtype" = dontDistribute super."pathtype"; + "patronscraper" = dontDistribute super."patronscraper"; + "patterns" = dontDistribute super."patterns"; + "paymill" = dontDistribute super."paymill"; + "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops"; + "paypal-api" = dontDistribute super."paypal-api"; + "pb" = dontDistribute super."pb"; + "pbc4hs" = dontDistribute super."pbc4hs"; + "pbkdf" = dontDistribute super."pbkdf"; + "pcap" = 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"; + "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-gtk-ui" = dontDistribute super."plot-gtk-ui"; + "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"; + "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"; + "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-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"; + "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"; + "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"; + "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-dom" = dontDistribute super."reflex-dom"; + "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; + "reflex-gloss" = dontDistribute super."reflex-gloss"; + "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-array" = dontDistribute super."repa-array"; + "repa-bytestring" = dontDistribute super."repa-bytestring"; + "repa-convert" = dontDistribute super."repa-convert"; + "repa-eval" = dontDistribute super."repa-eval"; + "repa-examples" = dontDistribute super."repa-examples"; + "repa-fftw" = dontDistribute super."repa-fftw"; + "repa-flow" = dontDistribute super."repa-flow"; + "repa-linear-algebra" = dontDistribute super."repa-linear-algebra"; + "repa-plugin" = dontDistribute super."repa-plugin"; + "repa-scalar" = dontDistribute super."repa-scalar"; + "repa-series" = dontDistribute super."repa-series"; + "repa-sndfile" = dontDistribute super."repa-sndfile"; + "repa-stream" = dontDistribute super."repa-stream"; + "repa-v4l2" = dontDistribute super."repa-v4l2"; + "repl" = dontDistribute super."repl"; + "repl-toolkit" = dontDistribute super."repl-toolkit"; + "repline" = dontDistribute super."repline"; + "repo-based-blog" = dontDistribute super."repo-based-blog"; + "repr" = dontDistribute super."repr"; + "repr-tree-syb" = dontDistribute super."repr-tree-syb"; + "representable-functors" = dontDistribute super."representable-functors"; + "representable-profunctors" = dontDistribute super."representable-profunctors"; + "representable-tries" = dontDistribute super."representable-tries"; + "request-monad" = dontDistribute super."request-monad"; + "reserve" = dontDistribute super."reserve"; + "resistor-cube" = dontDistribute super."resistor-cube"; + "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-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"; + "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-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"; + "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" = doDistribute super."servant_0_4_4_4"; + "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; + "servant-blaze" = dontDistribute super."servant-blaze"; + "servant-client" = doDistribute super."servant-client_0_4_4_4"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_4"; + "servant-ede" = dontDistribute super."servant-ede"; + "servant-examples" = dontDistribute super."servant-examples"; + "servant-jquery" = doDistribute super."servant-jquery_0_4_4_4"; + "servant-lucid" = dontDistribute super."servant-lucid"; + "servant-mock" = dontDistribute super."servant-mock"; + "servant-pool" = dontDistribute super."servant-pool"; + "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-response" = dontDistribute super."servant-response"; + "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_4"; + "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"; + "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"; + "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-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-haskell" = dontDistribute super."stripe-haskell"; + "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"; + "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-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"; + "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"; + "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-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"; + "typedquery" = dontDistribute super."typedquery"; + "typehash" = dontDistribute super."typehash"; + "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"; + "unix-time" = doDistribute super."unix-time_0_3_5"; + "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-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-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"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; + "verbalexpressions" = dontDistribute super."verbalexpressions"; + "verbosity" = dontDistribute super."verbosity"; + "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-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-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-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-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" = doDistribute super."websockets_0_9_6_0"; + "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" = doDistribute super."yesod-auth_1_4_7"; + "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-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/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index e5122b92a6c..c9c4b5b2575 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -3344,12 +3344,12 @@ self: { }) {}; "CoreDump" = callPackage - ({ mkDerivation, base, ghc, haskell-src-exts }: + ({ mkDerivation, base, ghc, pretty, pretty-show }: mkDerivation { pname = "CoreDump"; - version = "0.1.0.1"; - sha256 = "dfa9a8c9e727949a1b9b4d7031dbabafbdf44142ef7f01883428724b72e73dcf"; - libraryHaskellDepends = [ base ghc haskell-src-exts ]; + version = "0.1.1.0"; + sha256 = "15ea46cd71654079a42d2839d7161429c5e58ba6a12b3cf6deb34d98d16a3308"; + libraryHaskellDepends = [ base ghc pretty pretty-show ]; description = "A GHC plugin for printing GHC's internal Core data structures"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -4688,8 +4688,8 @@ self: { ({ mkDerivation, base, mtl }: mkDerivation { pname = "EdisonAPI"; - version = "1.2.2.1"; - sha256 = "d7e1eaab8785b778d97a46b2ebcc939a4fb99853327b23c0e946a3f2b1761de5"; + version = "1.3"; + sha256 = "a369d5c9b412bafb16a023121a72470a6fed0116b3d6d143a03dd54cb854154f"; libraryHaskellDepends = [ base mtl ]; homepage = "http://rwd.rdockins.name/edison/home/"; description = "A library of efficent, purely-functional data structures (API)"; @@ -4702,8 +4702,8 @@ self: { }: mkDerivation { pname = "EdisonCore"; - version = "1.2.2.1"; - sha256 = "ff1ea484d08d07c3f47c337c04202d8baf597cc107433899b0138382e943467a"; + version = "1.3"; + sha256 = "ccdf7a5c47baad82c9a9bdcaa848ec36de4818a9cd5ac063e2e1046ca6cfcc4a"; libraryHaskellDepends = [ array base containers EdisonAPI mtl QuickCheck ]; @@ -5567,8 +5567,8 @@ self: { ({ mkDerivation, base, containers, HUnit, parsec }: mkDerivation { pname = "Folly"; - version = "0.2.0.0"; - sha256 = "47ceb0db6bbfe935e0d931a5d6d4425e46fd059657398ae0be67f2f0e714ee05"; + version = "0.2.0.1"; + sha256 = "6ae5a4c048262e89a653d04f7e56fa7f44499bcff681780f263f790c6c2a92a3"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base containers parsec ]; @@ -5748,6 +5748,23 @@ self: { license = "LGPL"; }) {}; + "Fractaler" = callPackage + ({ mkDerivation, base, FTGL, GLFW-b, OpenGLRaw, parallel, random + , time + }: + mkDerivation { + pname = "Fractaler"; + version = "3"; + sha256 = "ae0c81e8b34cac290c08fefa7d30c5172fb41edbb51c8fa7bc807c5e5aa6d240"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base FTGL GLFW-b OpenGLRaw parallel random time + ]; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "Frames" = callPackage ({ mkDerivation, base, ghc-prim, pipes, primitive, readable , template-haskell, text, transformers, vector, vinyl @@ -5969,14 +5986,14 @@ self: { }: mkDerivation { pname = "GLM"; - version = "0.5.0.0"; - sha256 = "cf0e0a4e3e0f05a700158adf48e470c9bb77a820219000bf91a29ac0c3725a0f"; + version = "0.7.0.0"; + sha256 = "2af28493755e53164ffcfe236fd5e071a2591ab3130ec1645cee1fe6dec0035c"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base bytestring interpolate lens mtl parsec pureMD5 QuickCheck - test-framework test-framework-quickcheck2 test-framework-th - transformers + aeson base bytestring interpolate lens mtl parsec pureMD5 + QuickCheck test-framework test-framework-quickcheck2 + test-framework-th transformers ]; executableHaskellDepends = [ aeson base bytestring interpolate lens mtl parsec pureMD5 @@ -6048,7 +6065,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;}; - "GLURaw" = callPackage + "GLURaw_1_5_0_1" = callPackage ({ mkDerivation, base, freeglut, mesa, OpenGLRaw, transformers }: mkDerivation { pname = "GLURaw"; @@ -6059,6 +6076,20 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Opengl"; description = "A raw binding for the OpenGL graphics system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;}; + + "GLURaw" = callPackage + ({ mkDerivation, base, freeglut, mesa, OpenGLRaw, transformers }: + mkDerivation { + pname = "GLURaw"; + version = "1.5.0.2"; + sha256 = "dd24af039bef7f44dc580692b57a7a16a36a44b7261c8d3008aba60b696a4c3f"; + libraryHaskellDepends = [ base OpenGLRaw transformers ]; + librarySystemDepends = [ freeglut mesa ]; + homepage = "http://www.haskell.org/haskellwiki/Opengl"; + description = "A raw binding for the OpenGL graphics system"; + license = stdenv.lib.licenses.bsd3; }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;}; "GLUT_2_5_1_1" = callPackage @@ -6176,8 +6207,8 @@ self: { }: mkDerivation { pname = "GPipe"; - version = "2.1"; - sha256 = "610f42cc26b6bffc168df9f681e532aea4f6cb94c6b705a512cd2a0f23186d17"; + version = "2.1.2"; + sha256 = "44efc37ca3adf9457dfa07a46e10ff7887d004a887dd403b874549f296982888"; libraryHaskellDepends = [ base Boolean containers exception-transformers gl hashtables linear transformers @@ -6187,24 +6218,6 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "GPipe_2_1_1" = callPackage - ({ mkDerivation, base, Boolean, containers, exception-transformers - , gl, hashtables, linear, transformers - }: - mkDerivation { - pname = "GPipe"; - version = "2.1.1"; - sha256 = "5af935da8bcf914b8b72d8b073733f8b60571bece9781caa1189281c58378e30"; - libraryHaskellDepends = [ - base Boolean containers exception-transformers gl hashtables linear - transformers - ]; - homepage = "http://tobbebex.blogspot.se/"; - description = "Typesafe functional GPU graphics programming"; - license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "GPipe-Collada" = callPackage ({ mkDerivation, array, base, containers, GPipe, HaXml, mtl, Vec }: mkDerivation { @@ -7338,22 +7351,22 @@ self: { "HGamer3D" = callPackage ({ mkDerivation, base, bytestring, cereal, clock, containers - , directory, filepath, hgamer3d061, messagepack, text, Urho3D, vect + , directory, filepath, hgamer3d062, messagepack, text, Urho3D, vect }: mkDerivation { pname = "HGamer3D"; - version = "0.6.1"; - sha256 = "e902e52501152a49c6a74246c1e68e0e1597b87999b29c05917209be2dc627cd"; + version = "0.6.2"; + sha256 = "28076dcd6bf141b4d88939be49f3e2f370eae02d53e3845521715dfa36aac1ba"; libraryHaskellDepends = [ base bytestring cereal clock containers directory filepath messagepack text vect ]; - librarySystemDepends = [ hgamer3d061 Urho3D ]; + librarySystemDepends = [ hgamer3d062 Urho3D ]; homepage = "http://www.hgamer3d.org"; description = "Toolset for the Haskell Game Programmer"; license = "unknown"; hydraPlatforms = stdenv.lib.platforms.none; - }) {Urho3D = null; hgamer3d061 = null;}; + }) {Urho3D = null; hgamer3d062 = null;}; "HGamer3D-API" = callPackage ({ mkDerivation, base, haskell98, HGamer3D-Data @@ -8831,39 +8844,42 @@ self: { }) {}; "HaRe" = callPackage - ({ mkDerivation, array, base, containers, deepseq, Diff, directory - , dual-tree, filepath, ghc, ghc-mod, ghc-paths, ghc-prim - , ghc-syb-utils, haskell-token-utils, hslogger, hspec, HUnit - , monoid-extras, mtl, old-time, parsec, pretty, process, QuickCheck - , rosezipper, semigroups, silently, Strafunski-StrategyLib - , stringbuilder, syb, syz, time, transformers + ({ mkDerivation, array, base, Cabal, cabal-helper, containers + , deepseq, Diff, directory, filepath, ghc, ghc-exactprint, ghc-mod + , ghc-paths, ghc-prim, ghc-syb-utils, hslogger, hspec, HUnit + , monad-control, monoid-extras, mtl, old-time, parsec, pretty + , process, QuickCheck, rosezipper, semigroups, silently + , Strafunski-StrategyLib, stringbuilder, syb, syz, time + , transformers, transformers-base }: mkDerivation { pname = "HaRe"; - version = "0.7.2.8"; - sha256 = "66346a89296d720c03a3daa442d96634a73f604c6f06e60b786698403d6c74a7"; + version = "0.8.2.0"; + sha256 = "4d4e4dd05f579a0a588f307f5a87bb57456d8ea846e1c81e989607794dbf46e1"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base containers directory dual-tree filepath ghc ghc-mod ghc-paths - ghc-prim ghc-syb-utils haskell-token-utils hslogger monoid-extras - mtl old-time pretty rosezipper semigroups Strafunski-StrategyLib - syb syz time transformers + base Cabal cabal-helper containers directory filepath ghc + ghc-exactprint ghc-mod ghc-paths ghc-prim ghc-syb-utils hslogger + monad-control monoid-extras mtl old-time pretty rosezipper + semigroups Strafunski-StrategyLib syb syz time transformers + transformers-base ]; executableHaskellDepends = [ - array base containers directory dual-tree filepath ghc ghc-mod - ghc-paths ghc-prim ghc-syb-utils haskell-token-utils hslogger - monoid-extras mtl old-time parsec pretty rosezipper semigroups - Strafunski-StrategyLib syb syz time transformers + array base Cabal cabal-helper containers directory filepath ghc + ghc-exactprint ghc-mod ghc-paths ghc-prim ghc-syb-utils hslogger + monad-control monoid-extras mtl old-time parsec pretty rosezipper + semigroups Strafunski-StrategyLib syb syz time transformers + transformers-base ]; testHaskellDepends = [ - base containers deepseq Diff directory dual-tree filepath ghc - ghc-mod ghc-paths ghc-prim ghc-syb-utils haskell-token-utils - hslogger hspec HUnit monoid-extras mtl old-time process QuickCheck - rosezipper semigroups silently Strafunski-StrategyLib stringbuilder - syb syz time transformers + base Cabal cabal-helper containers deepseq Diff directory filepath + ghc ghc-exactprint ghc-mod ghc-paths ghc-prim ghc-syb-utils + hslogger hspec HUnit monad-control monoid-extras mtl old-time + process QuickCheck rosezipper semigroups silently + Strafunski-StrategyLib stringbuilder syb syz time transformers + transformers-base ]; - jailbreak = true; homepage = "https://github.com/RefactoringTools/HaRe/wiki"; description = "the Haskell Refactorer"; license = stdenv.lib.licenses.bsd3; @@ -8914,7 +8930,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "HaTeX" = callPackage + "HaTeX_3_16_1_1" = callPackage ({ mkDerivation, base, bytestring, containers, matrix, parsec , QuickCheck, tasty, tasty-quickcheck, text, transformers , wl-pprint-extras @@ -8933,6 +8949,28 @@ self: { homepage = "http://wrongurl.net/haskell/HaTeX"; description = "The Haskell LaTeX library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "HaTeX" = callPackage + ({ mkDerivation, base, bytestring, containers, matrix, parsec + , QuickCheck, tasty, tasty-quickcheck, text, transformers + , wl-pprint-extras + }: + mkDerivation { + pname = "HaTeX"; + version = "3.16.2.0"; + sha256 = "e829ab2354d0647142bacc16edb56802e427a1f12c018550a7ff8989ac3a5b5b"; + libraryHaskellDepends = [ + base bytestring containers matrix parsec QuickCheck text + transformers wl-pprint-extras + ]; + testHaskellDepends = [ + base QuickCheck tasty tasty-quickcheck text + ]; + homepage = "https://github.com/Daniel-Diaz/HaTeX/blob/master/README.md"; + description = "The Haskell LaTeX library"; + license = stdenv.lib.licenses.bsd3; }) {}; "HaTeX-meta" = callPackage @@ -10596,8 +10634,8 @@ self: { }: mkDerivation { pname = "JsonGrammar"; - version = "1.0.2"; - sha256 = "ae317e199a0a2e97d5b73c009982260150fd5628f397da5d1e2703d970e35e2d"; + version = "1.0.3"; + sha256 = "0d3879f9735dce25bdd52b01d0fb07c92eaf32a79aed1a16a67429cae3b297ee"; libraryHaskellDepends = [ aeson attoparsec base bytestring containers hashable language-typescript mtl semigroups stack-prism template-haskell @@ -11319,6 +11357,17 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "Lambdaya" = callPackage + ({ mkDerivation, base, mtl, unix }: + mkDerivation { + pname = "Lambdaya"; + version = "0.1.0.0"; + sha256 = "99107e7588c63f173c085c6310ab122cee45ce55f16f6ded2eed7b279f0c7301"; + libraryHaskellDepends = [ base mtl unix ]; + description = "Library for RedPitaya"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "LargeCardinalHierarchy" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -11487,7 +11536,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "ListLike" = callPackage + "ListLike_4_2_0" = callPackage ({ mkDerivation, array, base, bytestring, containers, dlist, fmlist , HUnit, QuickCheck, random, text, vector }: @@ -11505,6 +11554,27 @@ self: { homepage = "http://software.complete.org/listlike"; description = "Generic support for list-like structures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ListLike" = callPackage + ({ mkDerivation, array, base, bytestring, containers, dlist, fmlist + , HUnit, QuickCheck, random, text, vector + }: + mkDerivation { + pname = "ListLike"; + version = "4.2.1"; + sha256 = "d6542ae5bef685e3571cd46b018c5adac2b6c854f72777ddd35a6823bcf08859"; + libraryHaskellDepends = [ + array base bytestring containers dlist fmlist text vector + ]; + testHaskellDepends = [ + array base bytestring containers dlist fmlist HUnit QuickCheck + random text vector + ]; + homepage = "http://software.complete.org/listlike"; + description = "Generic support for list-like structures"; + license = stdenv.lib.licenses.bsd3; }) {}; "ListTree" = callPackage @@ -11830,19 +11900,29 @@ self: { }) {}; "MagicHaskeller" = callPackage - ({ mkDerivation, array, base, bytestring, containers, directory - , ghc, ghc-paths, haskell-src, html, mtl, network, old-time, pretty - , random, syb, template-haskell + ({ mkDerivation, abstract-par, array, base, bytestring, cgi + , containers, directory, extensible-exceptions, ghc, ghc-paths + , hashable, haskell-src, hint, html, monad-par, mtl, mueval + , network, network-uri, old-time, pretty, process, random, syb + , template-haskell, transformers, unix }: mkDerivation { pname = "MagicHaskeller"; - version = "0.9.1"; - sha256 = "53cdbe2a683794a1ca35c0608c3e57164eb406a8151a4a5004916304d07d21e7"; + version = "0.9.6.4.3"; + sha256 = "6faf49eaf1585691166907501fc066a1e3dbfa0419c67237e07a997c01b144d6"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ - array base bytestring containers directory ghc ghc-paths - haskell-src html mtl network old-time pretty random syb + array base bytestring containers directory ghc ghc-paths hashable + haskell-src html mtl network network-uri old-time pretty random syb template-haskell ]; + executableHaskellDepends = [ + abstract-par array base bytestring cgi containers directory + extensible-exceptions ghc ghc-paths hashable haskell-src hint html + monad-par mtl mueval network network-uri old-time pretty process + random syb template-haskell transformers unix + ]; homepage = "http://nautilus.cs.miyazaki-u.ac.jp/~skata/MagicHaskeller.html"; description = "Automatic inductive functional programmer by systematic search"; license = stdenv.lib.licenses.bsd3; @@ -12304,6 +12384,8 @@ self: { pname = "MonadRandom"; version = "0.3.0.1"; sha256 = "40e6a19cecf9c72a5281e813c982e037104c287eef3e4b49a03b4fdd6736722d"; + revision = "1"; + editedCabalFile = "aef6c8f98c9f4c1fc09753192ec83a6c259087dd098ca2e6cacd3219872f071c"; libraryHaskellDepends = [ base mtl random transformers ]; description = "Random-number generation monad"; license = "unknown"; @@ -12318,6 +12400,8 @@ self: { pname = "MonadRandom"; version = "0.3.0.2"; sha256 = "71afdea34f7836678d989cef3373f76a62cca5f47440aa0185c85fff5694eaa1"; + revision = "1"; + editedCabalFile = "1b96fa21489194e7d5634e42f1f4efef26c5e0f9c0cea47c0ea0ca86dc4fd2e6"; libraryHaskellDepends = [ base mtl random transformers transformers-compat ]; @@ -12334,6 +12418,8 @@ self: { pname = "MonadRandom"; version = "0.4"; sha256 = "d32f3f7a8390125f43a67b78741c6655452dfc4388009ab4ca5a265ab5b86f93"; + revision = "1"; + editedCabalFile = "d913e82863e6b10963cc9f48a74e70739336e17debbcccef66f7e5068cdf7f1d"; libraryHaskellDepends = [ base mtl random transformers transformers-compat ]; @@ -13613,19 +13699,6 @@ self: { }) {inherit (pkgs) mesa;}; "OpenGLRaw" = callPackage - ({ mkDerivation, base, mesa, transformers }: - mkDerivation { - pname = "OpenGLRaw"; - version = "2.5.4.0"; - sha256 = "3b03d032875fd4b65c61d271c418e4e32a7b3f8a51a330c55c8c3f4661bb6712"; - libraryHaskellDepends = [ base transformers ]; - librarySystemDepends = [ mesa ]; - homepage = "http://www.haskell.org/haskellwiki/Opengl"; - description = "A raw binding for the OpenGL graphics system"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) mesa;}; - - "OpenGLRaw_2_5_5_0" = callPackage ({ mkDerivation, base, bytestring, containers, mesa, text , transformers }: @@ -13640,6 +13713,23 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Opengl"; description = "A raw binding for the OpenGL graphics system"; license = stdenv.lib.licenses.bsd3; + }) {inherit (pkgs) mesa;}; + + "OpenGLRaw_2_6_0_0" = callPackage + ({ mkDerivation, base, bytestring, containers, half, mesa, text + , transformers + }: + mkDerivation { + pname = "OpenGLRaw"; + version = "2.6.0.0"; + sha256 = "e962c18eb40d6e1ef7c2c3a877b0be14c35dbf533612d33074d5011bd266cc0d"; + libraryHaskellDepends = [ + base bytestring containers half text transformers + ]; + librarySystemDepends = [ mesa ]; + homepage = "http://www.haskell.org/haskellwiki/Opengl"; + description = "A raw binding for the OpenGL graphics system"; + license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) mesa;}; @@ -14958,7 +15048,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "RSA" = callPackage + "RSA_2_1_0_3" = callPackage ({ mkDerivation, base, binary, bytestring, crypto-api , crypto-pubkey-types, DRBG, pureMD5, QuickCheck, SHA, tagged , test-framework, test-framework-quickcheck2 @@ -14976,6 +15066,27 @@ self: { ]; description = "Implementation of RSA, using the padding schemes of PKCS#1 v2.1."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "RSA" = callPackage + ({ mkDerivation, base, binary, bytestring, crypto-api + , crypto-pubkey-types, DRBG, pureMD5, QuickCheck, SHA, tagged + , test-framework, test-framework-quickcheck2 + }: + mkDerivation { + pname = "RSA"; + version = "2.2.0"; + sha256 = "293056d43352716d7f9501aac7ac9871c338f00d40c97a54c927a798f8a4f2d7"; + libraryHaskellDepends = [ + base binary bytestring crypto-api crypto-pubkey-types pureMD5 SHA + ]; + testHaskellDepends = [ + base binary bytestring crypto-api crypto-pubkey-types DRBG pureMD5 + QuickCheck SHA tagged test-framework test-framework-quickcheck2 + ]; + description = "Implementation of RSA, using the padding schemes of PKCS#1 v2.1."; + license = stdenv.lib.licenses.bsd3; }) {}; "Raincat" = callPackage @@ -17890,8 +18001,8 @@ self: { pname = "UTFTConverter"; version = "0.1.0.0"; sha256 = "5679130800bbb11e3a67ab638e97e733b4824edff8b8a6b2e88b7daaf56b934e"; - revision = "8"; - editedCabalFile = "a787e368d195b091b26df9422117495772cfa008d7011a25ae2e6a49d2bfbe17"; + revision = "10"; + editedCabalFile = "abbfdf9c3e4816c0f010740a21d3360ceb55d2591329c92d6b163015fd581e01"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -19021,7 +19132,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "Yampa" = callPackage + "Yampa_0_10_2" = callPackage ({ mkDerivation, base, deepseq, random }: mkDerivation { pname = "Yampa"; @@ -19031,6 +19142,19 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Yampa"; description = "Library for programming hybrid systems"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "Yampa" = callPackage + ({ mkDerivation, base, deepseq, random }: + mkDerivation { + pname = "Yampa"; + version = "0.10.3"; + sha256 = "d72259ee589a1c838d5349c08b585c5b77c939c42e22c99e4d5c91f25ea607ad"; + libraryHaskellDepends = [ base deepseq random ]; + homepage = "http://www.haskell.org/haskellwiki/Yampa"; + description = "Library for programming hybrid systems"; + license = stdenv.lib.licenses.bsd3; }) {}; "Yampa-core" = callPackage @@ -19124,8 +19248,9 @@ self: { pname = "ZEBEDDE"; version = "0.1.0.0"; sha256 = "27b4f25adda6a500627a9311fe4c74c92dae0a18789cc7ea8e828c74a0ba05c5"; + revision = "3"; + editedCabalFile = "bd302015dbeab652042fed7c86f942d1cdf28d365de82e742290d5aac13d97c2"; libraryHaskellDepends = [ base vect ]; - jailbreak = true; description = "Polymer growth simulation method"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -19520,8 +19645,8 @@ self: { pname = "accelerate-cuda"; version = "0.15.0.0"; sha256 = "bec5de97e2a621d8eab3da2598143e34c4145fb10adad6d4164ed4ce237316fd"; - revision = "2"; - editedCabalFile = "5ed199c4c1d360ed3eaee24df7016462ed1fb1313ff47d6828be546eec8708fc"; + revision = "3"; + editedCabalFile = "14c5a52cc4989793c20d22d81dec4aa91e4c64be122fde0453b0bd6cd790af82"; libraryHaskellDepends = [ accelerate array base binary bytestring cryptohash cuda directory fclabels filepath hashable hashtables language-c-quote @@ -19661,14 +19786,11 @@ self: { }: mkDerivation { pname = "accelerate-io"; - version = "0.15.0.0"; - sha256 = "66a48e417e353f6daad24e7ca385370764d6a0a1979066c1e890fba77b95e802"; - revision = "1"; - editedCabalFile = "5c3f8f7ebc03117652646329743ea251d281f72d81454e55538c27e87e8c0ecc"; + version = "0.15.1.0"; + sha256 = "d531fc6c950a6fcf0bdd72c65438c27fbffe2f3043444128979490d53fc7677c"; libraryHaskellDepends = [ accelerate array base bmp bytestring repa vector ]; - jailbreak = true; homepage = "https://github.com/AccelerateHS/accelerate-io"; description = "Read and write Accelerate arrays in various formats"; license = stdenv.lib.licenses.bsd3; @@ -20981,21 +21103,22 @@ self: { "aeson-extra" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, containers - , exceptions, hashable, quickcheck-instances, scientific, tasty - , tasty-hunit, tasty-quickcheck, text, unordered-containers, vector + , exceptions, hashable, quickcheck-instances, scientific, tagged + , tasty, tasty-hunit, tasty-quickcheck, text, unordered-containers + , vector }: mkDerivation { pname = "aeson-extra"; - version = "0.2.0.0"; - sha256 = "0c30a45f493d887247dc4c2935a4e288de35457e12c20f51944171456ca38dcd"; + version = "0.2.1.0"; + sha256 = "d46ac20994321ee480ec9ec4b4714943af9121b55d5ef45f25a51932eec63f91"; libraryHaskellDepends = [ aeson attoparsec base bytestring containers exceptions hashable - scientific text unordered-containers vector + scientific tagged text unordered-containers vector ]; testHaskellDepends = [ aeson attoparsec base bytestring containers exceptions hashable - quickcheck-instances scientific tasty tasty-hunit tasty-quickcheck - text unordered-containers vector + quickcheck-instances scientific tagged tasty tasty-hunit + tasty-quickcheck text unordered-containers vector ]; homepage = "https://github.com/phadej/aeson-extra#readme"; description = "Extra goodies for aeson"; @@ -21327,6 +21450,8 @@ self: { pname = "aeson-utils"; version = "0.3.0.2"; sha256 = "71814b1be8849f945395eb81217a2ad464f2943134c50c09afd8a3126add4b1f"; + revision = "1"; + editedCabalFile = "effc944d02b274ca2688671ac16fe1a8c87b6d036b0ba11d06dd404da47a8634"; libraryHaskellDepends = [ aeson attoparsec base bytestring scientific text ]; @@ -22473,8 +22598,8 @@ self: { }: mkDerivation { pname = "amazonka"; - version = "1.3.2"; - sha256 = "9053dcbd209bfad9be683ef768a0e4f433a2d1ba99aff4bd2fd8bab73332c48a"; + version = "1.3.3.1"; + sha256 = "27d9a615e8a92c8ced1c15519881632ccc4cceb33c6bb3a3a196fbe4fe18211e"; libraryHaskellDepends = [ amazonka-core base bytestring conduit conduit-extra directory exceptions http-conduit ini lens mmorph monad-control mtl resourcet @@ -22486,28 +22611,6 @@ self: { license = "unknown"; }) {}; - "amazonka_1_3_2_1" = callPackage - ({ mkDerivation, amazonka-core, base, bytestring, conduit - , conduit-extra, directory, exceptions, http-conduit, ini, lens - , mmorph, monad-control, mtl, resourcet, retry, tasty, tasty-hunit - , text, time, transformers, transformers-base, transformers-compat - }: - mkDerivation { - pname = "amazonka"; - version = "1.3.2.1"; - sha256 = "a2f3f3c3f3c5ddbfbfb2b988aa293e620bf03afd0776bbcd01a25a955e882704"; - libraryHaskellDepends = [ - amazonka-core base bytestring conduit conduit-extra directory - exceptions http-conduit ini lens mmorph monad-control mtl resourcet - retry text time transformers transformers-base transformers-compat - ]; - testHaskellDepends = [ base tasty tasty-hunit ]; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Comprehensive Amazon Web Services SDK"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "amazonka-autoscaling_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -22556,8 +22659,8 @@ self: { }: mkDerivation { pname = "amazonka-autoscaling"; - version = "1.3.2"; - sha256 = "a3b2fe18285a88407e615fa84d43b5e13a4a02981ecc96c39e2c9da73ba3e0be"; + version = "1.3.3.1"; + sha256 = "041574babec4fc0a203ac406e94bcbaca58aaf0b85675c96559c1f12f4151908"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -22616,8 +22719,8 @@ self: { }: mkDerivation { pname = "amazonka-cloudformation"; - version = "1.3.2"; - sha256 = "1f4137bd919888f48bf799314687c10791b6bf26a0615c59747f5e55abb8204b"; + version = "1.3.3.1"; + sha256 = "f3bab8e79227fefacbf57026df6458d390ebef26b4614080bdf19109c281ca57"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -22676,8 +22779,8 @@ self: { }: mkDerivation { pname = "amazonka-cloudfront"; - version = "1.3.2"; - sha256 = "4f9a2771c209b18d06aeadb09e2ba27306be86ab3c19afa7c4d0694d9b1546f3"; + version = "1.3.3.1"; + sha256 = "0e9aaba03d4cc1376531f733a8420fbeb152bbf02c93f87380e9acafe7e29d9a"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -22736,8 +22839,8 @@ self: { }: mkDerivation { pname = "amazonka-cloudhsm"; - version = "1.3.2"; - sha256 = "61689abecadea5daf9180167c196c84923faa08e8a901ed71bf4b2258a22cec6"; + version = "1.3.3.1"; + sha256 = "08f6a0753b99bae50dd180d148f922ab6a9ec7dcac63d03b7be927f25d5fd3ed"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -22796,8 +22899,8 @@ self: { }: mkDerivation { pname = "amazonka-cloudsearch"; - version = "1.3.2"; - sha256 = "30f3fe563cdd99c9ed54c1eb1f0232ba1f811f86afde90d7af1bf7fd4b945333"; + version = "1.3.3.1"; + sha256 = "dc28e155c14c9d3c2a80fdd678022572141b95e0d046413f02576af37d6c3448"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -22856,8 +22959,8 @@ self: { }: mkDerivation { pname = "amazonka-cloudsearch-domains"; - version = "1.3.2"; - sha256 = "335007f8e9b8e0cce2aa7ff5e67f084eb1988d75b478a8d6ea1c1305586fed82"; + version = "1.3.3.1"; + sha256 = "59107a12c03c4141756c528149d5de75a979b49292eae19ec2e283abab32af19"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -22916,8 +23019,8 @@ self: { }: mkDerivation { pname = "amazonka-cloudtrail"; - version = "1.3.2"; - sha256 = "4098c3e1a482ec8849fe7f0bf69d35ae5d468e7c08509130a409d01c0b10d8af"; + version = "1.3.3.1"; + sha256 = "198dc20a1952fad99ea4f9a889de6bed901581aa89dd49ba37e0acd864cede3c"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -22976,8 +23079,8 @@ self: { }: mkDerivation { pname = "amazonka-cloudwatch"; - version = "1.3.2"; - sha256 = "a5549acb91707edb087864ab91afae05b6310b80ec95bcbeddb848e9aaed165e"; + version = "1.3.3.1"; + sha256 = "29cc7465272e0de75b87aaff10f04485801183502f0355c59f46041b7ae8bbe3"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -23036,8 +23139,8 @@ self: { }: mkDerivation { pname = "amazonka-cloudwatch-logs"; - version = "1.3.2"; - sha256 = "2f4df966c2f6c64bb535601835edd70fbe3d255b29199938f9ac0dcbe5b7b481"; + version = "1.3.3.1"; + sha256 = "c368fdeb5196f880c168bc611f4e2dbd5a7287d1c1001a71d5f132280faacb65"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -23054,8 +23157,8 @@ self: { }: mkDerivation { pname = "amazonka-codecommit"; - version = "1.3.2"; - sha256 = "6266925666ddd3e2b2999ed589303d000340a91398c1aec01e2330f77d41f6c2"; + version = "1.3.3.1"; + sha256 = "3491e980696cb106c4d2fc6d154b1d9d10909e9bd4550edfa017e4b4ae8ba4e4"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -23114,8 +23217,8 @@ self: { }: mkDerivation { pname = "amazonka-codedeploy"; - version = "1.3.2"; - sha256 = "8d8da39a232b9a2d723c8fb70c5df3e5dd186b7d52855c22f680b57ac34f77ff"; + version = "1.3.3.1"; + sha256 = "107082997acf929b39299ba2e0f469ea57bdf75aef8430269c396199d0e961ad"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -23132,8 +23235,8 @@ self: { }: mkDerivation { pname = "amazonka-codepipeline"; - version = "1.3.2"; - sha256 = "30693141f4f1df8a9b70434f22e080fe2571adda0a40badcd2a4e99d24f71300"; + version = "1.3.3.1"; + sha256 = "fb56978365d97a1cf8d663639b909394df035726ec988564c9aa5a271539683a"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -23192,8 +23295,8 @@ self: { }: mkDerivation { pname = "amazonka-cognito-identity"; - version = "1.3.2"; - sha256 = "44c0e8072764d879d7bf86c9df4f8d8ab2a4d312c0061d5c9dfe50fdf286e742"; + version = "1.3.3.1"; + sha256 = "f85a01b2559ea16185513c1882067eae2749083667aefdaf2e56df9855fac2ef"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -23252,8 +23355,8 @@ self: { }: mkDerivation { pname = "amazonka-cognito-sync"; - version = "1.3.2"; - sha256 = "abfe58c62ec55f7fe1979d1d3fad0091eb9b800180e2aee80bcbf9af51bc0110"; + version = "1.3.3.1"; + sha256 = "f7295b707efc5b2df6936df227021b10dd13b79537038073897b919b0df10e8e"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -23312,8 +23415,8 @@ self: { }: mkDerivation { pname = "amazonka-config"; - version = "1.3.2"; - sha256 = "54e68f187a3023c06f831ede63ef1e05df01c81e699d73072f39de50894060f7"; + version = "1.3.3.1"; + sha256 = "8959b2d5f38cb04015e82a30bb898be619f39114103b98e629baeb18dd12708c"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -23426,8 +23529,8 @@ self: { }: mkDerivation { pname = "amazonka-core"; - version = "1.3.2"; - sha256 = "cf51156498ed0ac956b9448c9cdc3cff6330ee67542ef5a2aa3a757c075e288c"; + version = "1.3.3.1"; + sha256 = "97cff5c193b02afc6b71e058bce76577382f52894f88f3b66344c2531d72db68"; libraryHaskellDepends = [ aeson attoparsec base bifunctors bytestring case-insensitive conduit conduit-extra cryptonite exceptions hashable http-conduit @@ -23493,8 +23596,8 @@ self: { }: mkDerivation { pname = "amazonka-datapipeline"; - version = "1.3.2"; - sha256 = "5c9e97ace29cfbf2193aa9da79d0ab861c8e05a81d7c08f2537ebcaac9c812a7"; + version = "1.3.3.1"; + sha256 = "de5692b7d72e3eb66a29a5b10c4e8a83fc4014121d4a1478281601c130ea4647"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -23511,8 +23614,8 @@ self: { }: mkDerivation { pname = "amazonka-devicefarm"; - version = "1.3.2"; - sha256 = "d26047cbb12c44d3e8f06c0d392d464dd8acd049038f98023093e739a7b728c6"; + version = "1.3.3.1"; + sha256 = "3b341f588739d82556b092f8f2a96321be321a30d4450d905a168baf8899122a"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -23571,8 +23674,8 @@ self: { }: mkDerivation { pname = "amazonka-directconnect"; - version = "1.3.2"; - sha256 = "d76e47b983e29da82d15f1bfed7912c0d890c07ffbff00de531d6a58768e7c78"; + version = "1.3.3.1"; + sha256 = "6fbbecc0263e1a734fd22c93aeede32912f10ba7cd2cf660d6fcae05d8d8de03"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -23589,8 +23692,8 @@ self: { }: mkDerivation { pname = "amazonka-ds"; - version = "1.3.2"; - sha256 = "51a43787780f5342070ab606287d91f519bf9d9d105d9bf5aaa633511638e8ba"; + version = "1.3.3.1"; + sha256 = "8260c4fbc7c4e37d6b1aa8dbf1e6fb32562e5930754a9e3609bcde398eec5ca5"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -23649,8 +23752,8 @@ self: { }: mkDerivation { pname = "amazonka-dynamodb"; - version = "1.3.2"; - sha256 = "da7cd796e9f8ff95cc63563d151ef91a9d4939603c906ea649d3418b1140e8b6"; + version = "1.3.3.1"; + sha256 = "cb80a5fecc7bdb35c87aff89438e1c64352cb19942acca100b09d74eacbd9895"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -23667,8 +23770,8 @@ self: { }: mkDerivation { pname = "amazonka-dynamodb-streams"; - version = "1.3.2"; - sha256 = "9afbe3ad9179d9ea7a9c09285c80186138c5f7d1c7783d9a7fc6aa565e9c916d"; + version = "1.3.3.1"; + sha256 = "415e1b4608ed2ca9b9a26570020ac503511b16a06503e3aa26274bdec1fd2780"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -23741,8 +23844,8 @@ self: { }: mkDerivation { pname = "amazonka-ec2"; - version = "1.3.2"; - sha256 = "2c8b13a979537e328257dc8f54d9a517ca63a29fd8514cf7969ac208842f53c0"; + version = "1.3.3.1"; + sha256 = "4988024f87f5c8f4b2c19ace1d2b33c782f580cb662ca6e1b3e747350eadd94e"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -23802,8 +23905,8 @@ self: { }: mkDerivation { pname = "amazonka-ecs"; - version = "1.3.2"; - sha256 = "9502857611b8027a4d0a5a0a80d5947f3facdcffdd71841daa9d4d2f46a5255d"; + version = "1.3.3.1"; + sha256 = "f9a6baa97c182c497c41c0eb3a1805e5d5e376deee17c069ae15173d176b6c62"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -23820,8 +23923,8 @@ self: { }: mkDerivation { pname = "amazonka-efs"; - version = "1.3.2"; - sha256 = "cecae3833adb15b608fd756153eecc132127ee8b05fb605430944e13d4cc8489"; + version = "1.3.3.1"; + sha256 = "658728b594a32a5071acf085b1db2323cff6ed76161447c30ee9df9acd57e6e5"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -23880,8 +23983,8 @@ self: { }: mkDerivation { pname = "amazonka-elasticache"; - version = "1.3.2"; - sha256 = "ca3029ceb1bf8548725fcff48a4b29a53e44d505be8f21c4ad2e751d67058cf5"; + version = "1.3.3.1"; + sha256 = "6bdc54b61a918e326079d76bfda045da725ff68236b22fcae40454eb0b32ee1f"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -23940,8 +24043,8 @@ self: { }: mkDerivation { pname = "amazonka-elasticbeanstalk"; - version = "1.3.2"; - sha256 = "b87a247d690531aff99d972cf57544aa7110a3112942d5731712d798245d3235"; + version = "1.3.3.1"; + sha256 = "5f04dd638e81b3f878776b9c9df514e53281600e208b09932054a528c62edbee"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -23952,6 +24055,24 @@ self: { license = "unknown"; }) {}; + "amazonka-elasticsearch" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , lens, tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-elasticsearch"; + version = "1.3.3.1"; + sha256 = "22349ad33c4cc7c445a2e6945fbbdb375f906d222bb3336bacef16d9c9a8f06b"; + 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 Elasticsearch Service SDK"; + license = "unknown"; + }) {}; + "amazonka-elastictranscoder_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -24000,8 +24121,8 @@ self: { }: mkDerivation { pname = "amazonka-elastictranscoder"; - version = "1.3.2"; - sha256 = "88f3175585a6a5b88152cf00ba1a0c8e96bf3348cfe40b0b5b68f2c333644ed4"; + version = "1.3.3.1"; + sha256 = "ca7a8c367e09a283e6bcb0d428b6b58c55f24d9f05374fd6ee51de21abb8a5b5"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -24060,8 +24181,8 @@ self: { }: mkDerivation { pname = "amazonka-elb"; - version = "1.3.2"; - sha256 = "296ac4d7e1d289887b3bc7f364541226289b8692b85138fa8a5fbbbe972fb562"; + version = "1.3.3.1"; + sha256 = "a346dfb8a16e3324da285695dd35fc84a1c7327151b99990dab07ff0c51c729a"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -24120,8 +24241,8 @@ self: { }: mkDerivation { pname = "amazonka-emr"; - version = "1.3.2"; - sha256 = "b291a06f12afc10024dbf65d68d1c2e70f603a3fbaedcfdfe432f2d4e1322520"; + version = "1.3.3.1"; + sha256 = "b5ae30499d2f1b8e7538015143b13164ccf853a20913e95054ed2110d38ad790"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -24180,8 +24301,8 @@ self: { }: mkDerivation { pname = "amazonka-glacier"; - version = "1.3.2"; - sha256 = "f4454c571590f2e7821880059feb809d325c58c4e922188301f4886a990fc1c4"; + version = "1.3.3.1"; + sha256 = "f1f3b1c37774f96ee6c528a4799e706ae09e8d5ab0d8004d201903775943ad72"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -24240,8 +24361,8 @@ self: { }: mkDerivation { pname = "amazonka-iam"; - version = "1.3.2"; - sha256 = "65675f2e6119e82176bf6cc9654506cd06b868d7e798ea0d724dafcfdc593053"; + version = "1.3.3.1"; + sha256 = "5cacaf7c2ae198f1441e4c6a3ae026f5c34c7d6b22685342a453e3207fffc8e2"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -24300,8 +24421,8 @@ self: { }: mkDerivation { pname = "amazonka-importexport"; - version = "1.3.2"; - sha256 = "97ae0adc639adb1a7e7d9de4d63feddba1ff9cb446d26b7f5be1b4b86b97bd01"; + version = "1.3.3.1"; + sha256 = "78f0970f803bd2898268ef9aa93b977325d8b12d7bb2710bbdc33b2268483974"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -24312,6 +24433,42 @@ self: { license = "unknown"; }) {}; + "amazonka-inspector" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , lens, tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-inspector"; + version = "1.3.3.1"; + sha256 = "f954450339f70ad4865c1f1936eefa4537596f70b77cf02c44a77eeb99a702ef"; + 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 Inspector SDK"; + license = "unknown"; + }) {}; + + "amazonka-iot" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , lens, tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-iot"; + version = "1.3.3.1"; + sha256 = "203fcecd3c6b01d4979a565f7a8202533b589e8907fd4c627823a190cd7e2c98"; + 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 SDK"; + license = "unknown"; + }) {}; + "amazonka-kinesis_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -24360,8 +24517,8 @@ self: { }: mkDerivation { pname = "amazonka-kinesis"; - version = "1.3.2"; - sha256 = "00765efb921cf0edcba4b344e18e8e891d42b88731d3983ebe53bcd6fb2d3f2b"; + version = "1.3.3.1"; + sha256 = "5309e46a928d3220ae7bfe59469b81589d2cc779456af20d1a4e0d5d80ab0008"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -24372,6 +24529,24 @@ self: { license = "unknown"; }) {}; + "amazonka-kinesis-firehose" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , lens, tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-kinesis-firehose"; + version = "1.3.3.1"; + sha256 = "ab9fc9aa1e0d8909aacee7647a03e6c49a6fe85e90b0df8bf62a2c0a8769c7d3"; + 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 Kinesis Firehose SDK"; + license = "unknown"; + }) {}; + "amazonka-kms_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -24420,8 +24595,8 @@ self: { }: mkDerivation { pname = "amazonka-kms"; - version = "1.3.2"; - sha256 = "e9b6f038ad6eac69d5211e1097b28f69c90b0847b8d46b49541e474d62249ff6"; + version = "1.3.3.1"; + sha256 = "1903e0712f83495b03ecf83556b5d637d7dd654e2d92bddc41710d7c77708781"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -24480,8 +24655,8 @@ self: { }: mkDerivation { pname = "amazonka-lambda"; - version = "1.3.2"; - sha256 = "b53e3c9433596e84988447d342fb7b657aad0bcaa5a3cd7bec22808f1e79efa7"; + version = "1.3.3.1"; + sha256 = "042b8a6faf4beaa4f73477e276a30426b0dbe86cd334246171b82b126846f35f"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -24492,6 +24667,24 @@ self: { license = "unknown"; }) {}; + "amazonka-marketplace-analytics" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , lens, tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-marketplace-analytics"; + version = "1.3.3.1"; + sha256 = "0658b545153116a6a0ec3afaf04bf3a7e4f0c76c2a3dcb1f9c02efcee186a06f"; + 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 Marketplace Commerce Analytics SDK"; + license = "unknown"; + }) {}; + "amazonka-ml_0_3_6" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -24512,8 +24705,8 @@ self: { }: mkDerivation { pname = "amazonka-ml"; - version = "1.3.2"; - sha256 = "2a9f0c29d5e827248e1fb9684a33d9431f7949bd52e95171b0323c9b0caecfa2"; + version = "1.3.3.1"; + sha256 = "a7937abccfa33d09deb09087cef856fad1540874926123defa3ce293fa5faae5"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -24572,8 +24765,8 @@ self: { }: mkDerivation { pname = "amazonka-opsworks"; - version = "1.3.2"; - sha256 = "26392a57cde6b15e59a5f6b96ff7088beb2003674ce125b058dcd66cc6cbd20d"; + version = "1.3.3.1"; + sha256 = "23a3c5eefcbcf31aecb7900a8d5e05377f22a4588241221bdf47283aa38f0e24"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -24632,8 +24825,8 @@ self: { }: mkDerivation { pname = "amazonka-rds"; - version = "1.3.2"; - sha256 = "49c2e70130d6bca50208792df74836617754287a6cbc2324be70260a91e803d3"; + version = "1.3.3.1"; + sha256 = "9b0f5edd0bc807700cfceda7f5be95fc0883e65dac719dd52dda55c630f4fe45"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -24693,8 +24886,8 @@ self: { }: mkDerivation { pname = "amazonka-redshift"; - version = "1.3.2"; - sha256 = "d8447bf5bfe77358f1518ca421c04dbb62cb5a256e14df780284b75f926eba63"; + version = "1.3.3.1"; + sha256 = "c15130b57a9bda8b568d3fa6c90618ca4eb1e79b731f3620e6f10acebbe4cb02"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -24767,8 +24960,8 @@ self: { }: mkDerivation { pname = "amazonka-route53"; - version = "1.3.2"; - sha256 = "42c3a39705146c48a2fd124f0cb7c1a55f11dfd7c49971b661292c7a58dcc432"; + version = "1.3.3.1"; + sha256 = "6d976169fba413b11e650fbeec8321cfed44cdf5088741a7e045fb08c6020b3e"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -24827,8 +25020,8 @@ self: { }: mkDerivation { pname = "amazonka-route53-domains"; - version = "1.3.2"; - sha256 = "b11cfb87ae8d9697250efa8b8726d6a92c4747f5f27fbaaa84baaef298e6bd6e"; + version = "1.3.3.1"; + sha256 = "b036a6473ad435cab9f1c395abefd88186413c5f2d76f0e98ad7c74f3cad979e"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -24887,8 +25080,8 @@ self: { }: mkDerivation { pname = "amazonka-s3"; - version = "1.3.2"; - sha256 = "be84c3c26fbc260544b2bdff623430ad055f02430f553ebc84f9122f2fae8c92"; + version = "1.3.3.1"; + sha256 = "e4b6fbbda81a900f7fd4d4a97136de2742b284a6e55454ebd6b7364a854b07a0"; libraryHaskellDepends = [ amazonka-core base lens text ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -24948,8 +25141,8 @@ self: { }: mkDerivation { pname = "amazonka-sdb"; - version = "1.3.2"; - sha256 = "40352be6e23eb5c1caaf12c349a624579ac48b88bc365f526303524c0f4449c9"; + version = "1.3.3.1"; + sha256 = "81bd1e1a2e4f7a37e7169822b304e7af936c6c0e0a5b2c4812e9bcb28c5a2e30"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -25008,8 +25201,8 @@ self: { }: mkDerivation { pname = "amazonka-ses"; - version = "1.3.2"; - sha256 = "3a7dc098cf9d2c29cf8518ebee47c90de0bb2785671787f9aa2f1ebf06d4fbcd"; + version = "1.3.3.1"; + sha256 = "74b126cbaad5f3a6cfb452e2ee852f95d41e2c1ae7f6ab9049a02059d345c10f"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -25068,8 +25261,8 @@ self: { }: mkDerivation { pname = "amazonka-sns"; - version = "1.3.2"; - sha256 = "cce7089e0ffa056c9062ca044e02df17ba6ceb47301d939ca34bf149eb35d031"; + version = "1.3.3.1"; + sha256 = "960f73f959c1444894ab765a3bda8912f1ccb60f1d266543f846174428af7c1c"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -25128,8 +25321,8 @@ self: { }: mkDerivation { pname = "amazonka-sqs"; - version = "1.3.2"; - sha256 = "504c25301b137cb654d7051febb497e476ae4dfa4d79e3e2b22c656d0ab86728"; + version = "1.3.3.1"; + sha256 = "5cbd2e7078b563a362af6017f4c96c62f4e8cc5564a46dbce1ac1b7e460ac155"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -25189,8 +25382,8 @@ self: { }: mkDerivation { pname = "amazonka-ssm"; - version = "1.3.2"; - sha256 = "81e09bd6589385acfbadd26c2672f8511eeb595fb232688c66dd3dc0050c4866"; + version = "1.3.3.1"; + sha256 = "b6f057a5f796f9ceb764a2978e726bf10ac68cc04ad7af1da450819fb86b49d1"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -25249,8 +25442,8 @@ self: { }: mkDerivation { pname = "amazonka-storagegateway"; - version = "1.3.2"; - sha256 = "d63959ae893d92cada69173db45d922a415e758ecc40059fb10b4ef97136bc8a"; + version = "1.3.3.1"; + sha256 = "e903a341a72484e16c75913b3c8f23b7428956e8997026bac7bb5976fed12cac"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -25309,8 +25502,8 @@ self: { }: mkDerivation { pname = "amazonka-sts"; - version = "1.3.2"; - sha256 = "6ce779acdf481d9e664761e35c9e68a0fee28512df90a2eb72ee4751611713ac"; + version = "1.3.3.1"; + sha256 = "45d967ee5ec2a6bec32e02aeb052508932135104ca35e0dfe7d7b7a8734f3c19"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -25369,8 +25562,8 @@ self: { }: mkDerivation { pname = "amazonka-support"; - version = "1.3.2"; - sha256 = "1482189908a0aa6f145fa2d3a5cf72d9c664f051ad0e437c6c9850e872019915"; + version = "1.3.3.1"; + sha256 = "cfd5e1b0d1255e1287167ee1f6ced8ae047a334d33ef87bbc87f2de8f6144b80"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -25429,8 +25622,8 @@ self: { }: mkDerivation { pname = "amazonka-swf"; - version = "1.3.2"; - sha256 = "2a2c6cda710f4b94a4ebeee36a4f56819982fe590c80eaabcd1d712582e4b3b4"; + version = "1.3.3.1"; + sha256 = "6a44f8338b400aa7cb58d4eac72c1223f94aa1a9b0bb73cf79efd0f9e80060d8"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -25451,8 +25644,8 @@ self: { }: mkDerivation { pname = "amazonka-test"; - version = "1.3.2"; - sha256 = "bf1052c75332990522cf4aebe3894c68c9c910b74bda415ac41a51374f212e8b"; + version = "1.3.3.1"; + sha256 = "88dfa3021f346e0c8149752597535abf5d3f8ebc05818b3f6e227fbcb642cc53"; libraryHaskellDepends = [ aeson amazonka-core base bifunctors bytestring case-insensitive conduit conduit-extra groom http-client http-types lens process @@ -25464,6 +25657,24 @@ self: { license = "unknown"; }) {}; + "amazonka-waf" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , lens, tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-waf"; + version = "1.3.3.1"; + sha256 = "9a62d01fe19d6134b33a66bc2df6c7b1b05fe5ca10dfcb60beba6f839e33b7e2"; + 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 WAF SDK"; + license = "unknown"; + }) {}; + "amazonka-workspaces_0_3_6" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -25484,8 +25695,8 @@ self: { }: mkDerivation { pname = "amazonka-workspaces"; - version = "1.3.2"; - sha256 = "2148ace8434fffe1a5b59f20fb5350c0bb6dd8ba3579cd6e9eaa8d21ed083fcf"; + version = "1.3.3.1"; + sha256 = "5a4f303b9ccb9dd17ba9fca7893f110b1e668ee7c77569d650ed3851fa38cf4d"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -25497,28 +25708,32 @@ self: { }) {}; "ampersand" = callPackage - ({ mkDerivation, base, bytestring, containers, csv, directory - , filepath, graphviz, hashable, HDBC, HDBC-odbc, HStringTemplate - , mtl, old-locale, old-time, pandoc, pandoc-types, process - , simple-sql-parser, split, SpreadsheetML, text, time, utf8-string - , uulib + ({ mkDerivation, base, bytestring, conduit, containers, csv + , directory, filepath, graphviz, hashable, HStringTemplate, lens + , MissingH, mtl, old-locale, old-time, pandoc, pandoc-types, parsec + , process, QuickCheck, simple-sql-parser, split, SpreadsheetML + , text, time, transformers, utf8-string, wl-pprint, xlsx, zlib }: mkDerivation { pname = "ampersand"; - version = "3.0.3"; - sha256 = "0c73dda8bedc5c6cbcacefbb581892de88582f0b6dca8207777edbac59ab5a75"; - revision = "1"; - editedCabalFile = "42a4a0f82e5c10b76a8412ba625df82da44d7e28353a9efa5aad2b10e7cc9d2a"; + version = "3.1.0"; + sha256 = "f52e3339321a5bac4539c4e5ab8cc91190499db43520bfdc2b63e8093df36744"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ base bytestring containers csv directory filepath graphviz hashable - HDBC HDBC-odbc HStringTemplate mtl old-locale old-time pandoc - pandoc-types process simple-sql-parser split SpreadsheetML text - time utf8-string uulib + HStringTemplate lens MissingH mtl old-locale old-time pandoc + pandoc-types parsec process simple-sql-parser split SpreadsheetML + text time utf8-string wl-pprint xlsx zlib + ]; + testHaskellDepends = [ + base bytestring conduit containers directory filepath hashable lens + MissingH mtl old-locale pandoc pandoc-types parsec QuickCheck + simple-sql-parser text time transformers utf8-string wl-pprint xlsx + zlib ]; jailbreak = true; - homepage = "ampersand.sourceforge.net"; + homepage = "http://wiki.tarski.nl"; description = "Toolsuite for automated design of business processes"; license = "GPL"; hydraPlatforms = stdenv.lib.platforms.none; @@ -26026,6 +26241,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "ansigraph" = callPackage + ({ mkDerivation, ansi-terminal, base }: + mkDerivation { + pname = "ansigraph"; + version = "0.1.0.0"; + sha256 = "ba653a0c6fe36488714fce8a77e553b1c3cadbcbd5e6c6fe53449f25bdae8a40"; + libraryHaskellDepends = [ ansi-terminal base ]; + homepage = "https://github.com/BlackBrane/ansigraph"; + description = "Terminal-based graphing via ANSI and Unicode"; + license = stdenv.lib.licenses.mit; + }) {}; + "antagonist" = callPackage ({ mkDerivation, antisplice, base, chatty, chatty-utils, ironforge , mtl, shakespeare, text, time, time-locale-compat, yesod @@ -26380,6 +26607,7 @@ self: { base bytestring http-types HUnit mtl tasty tasty-hunit tasty-quickcheck wai wai-extra ]; + jailbreak = true; homepage = "https://github.com/philopon/apiary"; description = "Simple and type safe web framework that generate web API documentation"; license = stdenv.lib.licenses.mit; @@ -26399,8 +26627,8 @@ self: { pname = "apiary"; version = "1.4.5"; sha256 = "6c6f898924b6209f33ef81bc0e2c7ceb166fc04825a8ffb4d6c5732f41429313"; - revision = "1"; - editedCabalFile = "cb16e7fbe6f23c07b72eced0abbba8f2b771f5322f2ebf6250322c344e420fdc"; + revision = "2"; + editedCabalFile = "4cf36ea7883196978930d9aa0e51a6918234a2da98bbd7d31f0da5ff083d988d"; libraryHaskellDepends = [ base blaze-builder blaze-html blaze-markup bytestring bytestring-read case-insensitive data-default-class exceptions @@ -26428,8 +26656,8 @@ self: { pname = "apiary-authenticate"; version = "1.4.0"; sha256 = "40dbdb0d6799ba7091ae9b72929c7d62a74dd251b5a6e01f8979314d75dbd107"; - revision = "1"; - editedCabalFile = "724a8cbf0f2e57cd497b54de4401acda2877437053f13164dd23ba7b6c7d119b"; + revision = "2"; + editedCabalFile = "bc95b4d109ba8dabede930aadcce9540b3376f4679ac96a91b6af0cd0c5ced9e"; libraryHaskellDepends = [ apiary apiary-session authenticate base blaze-builder bytestring cereal data-default-class http-client http-client-tls http-types @@ -26724,15 +26952,14 @@ self: { }: mkDerivation { pname = "app-settings"; - version = "0.2.0.5"; - sha256 = "d3e49d1b2ea4a7e7636a2d78531dd4cb3b8778329cc3b93bae4ff1304f44219d"; + version = "0.2.0.7"; + sha256 = "bd6a675de64863a61459670cb8469c629273d3d43b515b6f7e34cc146a07f9f8"; libraryHaskellDepends = [ base containers directory mtl parsec text ]; testHaskellDepends = [ base containers directory hspec HUnit mtl parsec text ]; - jailbreak = true; homepage = "https://github.com/emmanueltouzery/app-settings"; description = "A library to manage application settings (INI file-like)"; license = stdenv.lib.licenses.bsd3; @@ -27153,6 +27380,7 @@ self: { pcre-light process-extras tasty tasty-golden tasty-hunit time transformers unix utf8-string ]; + jailbreak = true; homepage = "http://arbtt.nomeata.de/"; description = "Automatic Rule-Based Time Tracker"; license = "GPL"; @@ -29068,8 +29296,8 @@ self: { }: mkDerivation { pname = "aur"; - version = "3.0.0"; - sha256 = "9675ee432fc0026e20aa9520f30a8b1d86c0337d444174aa87aca3ab3d35c7e9"; + version = "4.0.0"; + sha256 = "30377f1c8c7e8ccb96b3a5c37ecb6199c7b221961e6ed8baec08900bbedaa4a0"; libraryHaskellDepends = [ aeson aeson-pretty base filepath lens lens-aeson mtl text vector wreq @@ -29156,6 +29384,8 @@ self: { pname = "authenticate-oauth"; version = "1.5.1.1"; sha256 = "eb9f15ebc6eb4a9ce08115c729e3e6803b28e35edf0ab5bc19fed64f9a2fc30b"; + revision = "1"; + editedCabalFile = "aee0c275e41e83d208bdfbc6634ea463df5dfb3780218b73e1b5599a0c11476e"; libraryHaskellDepends = [ base base64-bytestring blaze-builder bytestring crypto-pubkey-types data-default http-client http-types random RSA SHA time @@ -30756,6 +30986,7 @@ 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; @@ -32370,7 +32601,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "binary-orphans" = callPackage + "binary-orphans_0_1_1_0" = callPackage ({ mkDerivation, aeson, base, binary, hashable , quickcheck-instances, scientific, tagged, tasty, tasty-quickcheck , text, text-binary, time, unordered-containers, vector @@ -32390,12 +32621,14 @@ self: { aeson base binary hashable quickcheck-instances scientific tagged tasty tasty-quickcheck text time unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/phadej/binary-orphans#readme"; description = "Orphan instances for binary"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "binary-orphans_0_1_2_0" = callPackage + "binary-orphans" = callPackage ({ mkDerivation, aeson, base, binary, hashable , quickcheck-instances, scientific, tagged, tasty, tasty-quickcheck , text, text-binary, time, unordered-containers, vector @@ -32416,7 +32649,6 @@ self: { homepage = "https://github.com/phadej/binary-orphans#readme"; description = "Orphan instances for binary"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "binary-protocol" = callPackage @@ -32543,7 +32775,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "binary-tagged" = callPackage + "binary-tagged_0_1_1_0" = callPackage ({ mkDerivation, aeson, array, base, bifunctors, binary , binary-orphans, bytestring, containers, generics-sop, hashable , quickcheck-instances, scientific, SHA, tagged, tasty @@ -32568,6 +32800,32 @@ self: { homepage = "https://github.com/phadej/binary-tagged#readme"; description = "Tagged binary serialisation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "binary-tagged" = 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 + ]; + homepage = "https://github.com/phadej/binary-tagged#readme"; + description = "Tagged binary serialisation"; + license = stdenv.lib.licenses.bsd3; }) {}; "binary-typed" = callPackage @@ -32688,7 +32946,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "bindings-DSL" = callPackage + "bindings-DSL_1_0_22" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "bindings-DSL"; @@ -32698,6 +32956,19 @@ self: { homepage = "https://github.com/jwiegley/bindings-dsl/wiki"; description = "FFI domain specific language, on top of hsc2hs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "bindings-DSL" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "bindings-DSL"; + version = "1.0.23"; + sha256 = "eb6c76448eeb2a9a17135b08eec0dd09e1917a9f6ab702cea0b2070bd19c10e7"; + libraryHaskellDepends = [ base ]; + homepage = "https://github.com/jwiegley/bindings-dsl/wiki"; + description = "FFI domain specific language, on top of hsc2hs"; + license = stdenv.lib.licenses.bsd3; }) {}; "bindings-EsounD" = callPackage @@ -37455,8 +37726,8 @@ self: { }: mkDerivation { pname = "cabal-graphdeps"; - version = "0.1.2"; - sha256 = "2a896aaf7ccc2aaaaaf525aebad363ff2e8deb4a19a819dc4d4928bb4201b880"; + version = "0.1.3"; + sha256 = "2a419ca25fe5f8c346d520ccbce0b43701be976edf736bf3b046287ca6db75c8"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -37475,8 +37746,8 @@ self: { }: mkDerivation { pname = "cabal-helper"; - version = "0.6.0.0"; - sha256 = "5baad0b239fce05bf61fc576afe6db3ba67bed312c7163e98a143a70c6af222c"; + version = "0.6.1.0"; + sha256 = "57e81db2036ae1781e1002d448a1f7abe7fef2b689cf3a3c61689a89c30929df"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -37983,7 +38254,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cabal-rpm" = callPackage + "cabal-rpm_0_9_7" = callPackage ({ mkDerivation, base, Cabal, directory, filepath, process, time , unix }: @@ -37999,6 +38270,25 @@ self: { homepage = "https://github.com/juhp/cabal-rpm"; description = "RPM packaging tool for Haskell Cabal-based packages"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "cabal-rpm" = callPackage + ({ mkDerivation, base, Cabal, directory, filepath, process, time + , unix + }: + mkDerivation { + pname = "cabal-rpm"; + version = "0.9.8"; + sha256 = "dc004170b056dd899e2f4e5ebf725a6532aa21989e89465114e248674124a590"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base Cabal directory filepath process time unix + ]; + homepage = "https://github.com/juhp/cabal-rpm"; + description = "RPM packaging tool for Haskell Cabal-based packages"; + license = stdenv.lib.licenses.gpl3; }) {}; "cabal-scripts" = callPackage @@ -39150,6 +39440,7 @@ self: { base directory filepath multiarg QuickCheck random tasty tasty-quickcheck tasty-th time transformers ]; + jailbreak = true; homepage = "http://www.github.com/massysett/cartel"; description = "Specify Cabal files in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -39350,7 +39641,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "case-insensitive" = callPackage + "case-insensitive_1_2_0_4" = callPackage ({ mkDerivation, base, bytestring, deepseq, hashable, HUnit , test-framework, test-framework-hunit, text }: @@ -39365,6 +39656,24 @@ self: { homepage = "https://github.com/basvandijk/case-insensitive"; description = "Case insensitive string comparison"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "case-insensitive" = callPackage + ({ mkDerivation, base, bytestring, deepseq, hashable, HUnit + , test-framework, test-framework-hunit, text + }: + mkDerivation { + pname = "case-insensitive"; + version = "1.2.0.5"; + sha256 = "c450d04e018a027747592482d7b4d8725e334bde38e903d4f2c03f99583d3700"; + libraryHaskellDepends = [ base bytestring deepseq hashable text ]; + testHaskellDepends = [ + base bytestring HUnit test-framework test-framework-hunit text + ]; + homepage = "https://github.com/basvandijk/case-insensitive"; + description = "Case insensitive string comparison"; + license = stdenv.lib.licenses.bsd3; }) {}; "cased" = callPackage @@ -40039,8 +40348,8 @@ self: { }: mkDerivation { pname = "cef"; - version = "0.1.2"; - sha256 = "9191a449057e8889c3626f8e625b85a27af059cc43c74d6202dad30a7b91b838"; + version = "0.1.3"; + sha256 = "9918fb0b19e23aefe90ed914e30498011f1fa6ea0c8ffdc9e8f8a90337ac41d4"; libraryHaskellDepends = [ base bytestring text time ]; testHaskellDepends = [ base directory doctest filepath ]; homepage = "http://github.com/picussecurity/haskell-cef.git"; @@ -40413,8 +40722,8 @@ self: { }: mkDerivation { pname = "cgrep"; - version = "6.5.6"; - sha256 = "f29b3909944fc13b5563bcbb32aa3970cf70e6dadfd7253e5934e4bfca6e0f35"; + version = "6.5.7"; + sha256 = "cd999c309e53f6c8a37243f43812e95d8430b56d87188fccc816747c67646e56"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -41700,6 +42009,7 @@ self: { process text transformers unbound-generics unix unordered-containers ]; + jailbreak = true; homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware"; license = stdenv.lib.licenses.bsd2; @@ -41726,6 +42036,7 @@ self: { process text transformers unbound-generics unix unordered-containers ]; + jailbreak = true; homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware"; license = stdenv.lib.licenses.bsd2; @@ -41752,6 +42063,34 @@ self: { process text transformers unbound-generics unix unordered-containers ]; + jailbreak = true; + homepage = "http://www.clash-lang.org/"; + description = "CAES Language for Synchronous Hardware"; + license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "clash-ghc_0_5_15" = 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 + }: + mkDerivation { + pname = "clash-ghc"; + version = "0.5.15"; + sha256 = "54799a12bd0a01e0a1814caef51504301c843c4f745b7110a3542cc6043215e3"; + 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 + unordered-containers + ]; + jailbreak = true; homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware"; license = stdenv.lib.licenses.bsd2; @@ -41767,8 +42106,8 @@ self: { }: mkDerivation { pname = "clash-ghc"; - version = "0.5.15"; - sha256 = "54799a12bd0a01e0a1814caef51504301c843c4f745b7110a3542cc6043215e3"; + version = "0.6"; + sha256 = "aace7ed491332ffbbada8475d25f0c18f3cae0b1ecabecfff877252de278e25e"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -41852,7 +42191,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clash-lib" = callPackage + "clash-lib_0_5_13" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, clash-prelude , concurrent-supply, containers, deepseq, directory, errors, fgl , filepath, hashable, lens, mtl, pretty, process, template-haskell @@ -41872,6 +42211,29 @@ self: { homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - As a Library"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "clash-lib" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring, clash-prelude + , concurrent-supply, containers, deepseq, directory, errors, fgl + , filepath, hashable, lens, mtl, pretty, process, template-haskell + , text, time, transformers, unbound-generics, unordered-containers + , uu-parsinglib, wl-pprint-text + }: + mkDerivation { + pname = "clash-lib"; + version = "0.6"; + sha256 = "1329b252c4ae8acd13fdfe65437987d791e2eff0a317ed5a3c0ef2e0ccdcaf77"; + libraryHaskellDepends = [ + aeson attoparsec base bytestring clash-prelude concurrent-supply + containers deepseq directory errors fgl filepath hashable lens mtl + pretty process template-haskell text time transformers + unbound-generics unordered-containers uu-parsinglib wl-pprint-text + ]; + homepage = "http://www.clash-lang.org/"; + description = "CAES Language for Synchronous Hardware - As a Library"; + license = stdenv.lib.licenses.bsd2; }) {}; "clash-prelude_0_9_2" = callPackage @@ -41896,7 +42258,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clash-prelude" = callPackage + "clash-prelude_0_9_3" = callPackage ({ mkDerivation, array, base, data-default, doctest, ghc-prim , ghc-typelits-natnormalise, Glob, integer-gmp, lens, QuickCheck , singletons, template-haskell, th-lift @@ -41913,6 +42275,26 @@ self: { homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - Prelude library"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "clash-prelude" = callPackage + ({ mkDerivation, array, base, data-default, doctest, ghc-prim + , ghc-typelits-natnormalise, Glob, integer-gmp, lens, QuickCheck + , singletons, template-haskell, th-lift + }: + mkDerivation { + pname = "clash-prelude"; + version = "0.10"; + sha256 = "a1781f1a2ac5714f5467d697612d679508fd9847dc32463a05fd29394d1fa682"; + libraryHaskellDepends = [ + array base data-default ghc-prim ghc-typelits-natnormalise + integer-gmp lens QuickCheck singletons template-haskell th-lift + ]; + testHaskellDepends = [ base doctest Glob ]; + homepage = "http://www.clash-lang.org/"; + description = "CAES Language for Synchronous Hardware - Prelude library"; + license = stdenv.lib.licenses.bsd2; }) {}; "clash-prelude-quickcheck" = callPackage @@ -41982,7 +42364,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clash-systemverilog" = callPackage + "clash-systemverilog_0_5_10" = callPackage ({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl , text, unordered-containers, wl-pprint-text }: @@ -41997,6 +42379,24 @@ self: { homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - SystemVerilog backend"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "clash-systemverilog" = callPackage + ({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl + , text, unordered-containers, wl-pprint-text + }: + mkDerivation { + pname = "clash-systemverilog"; + version = "0.6"; + sha256 = "4504a1f6b0e5921d1f04ea0aa50ff938751f32a03f9fde01367734c85da88e2c"; + libraryHaskellDepends = [ + base clash-lib clash-prelude fgl lens mtl text unordered-containers + wl-pprint-text + ]; + homepage = "http://www.clash-lang.org/"; + description = "CAES Language for Synchronous Hardware - SystemVerilog backend"; + license = stdenv.lib.licenses.bsd2; }) {}; "clash-verilog_0_5_7" = callPackage @@ -42053,7 +42453,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clash-verilog" = callPackage + "clash-verilog_0_5_10" = callPackage ({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl , text, unordered-containers, wl-pprint-text }: @@ -42068,6 +42468,24 @@ self: { homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - Verilog backend"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "clash-verilog" = callPackage + ({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl + , text, unordered-containers, wl-pprint-text + }: + mkDerivation { + pname = "clash-verilog"; + version = "0.6"; + sha256 = "b34e9cd42c8558e9b9b780b5499c8ceb9ffab92bf2e3136124b7e34b84902fb4"; + libraryHaskellDepends = [ + base clash-lib clash-prelude fgl lens mtl text unordered-containers + wl-pprint-text + ]; + homepage = "http://www.clash-lang.org/"; + description = "CAES Language for Synchronous Hardware - Verilog backend"; + license = stdenv.lib.licenses.bsd2; }) {}; "clash-vhdl_0_5_8" = callPackage @@ -42124,7 +42542,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clash-vhdl" = callPackage + "clash-vhdl_0_5_12" = callPackage ({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl , text, unordered-containers, wl-pprint-text }: @@ -42139,6 +42557,24 @@ self: { homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - VHDL backend"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "clash-vhdl" = callPackage + ({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl + , text, unordered-containers, wl-pprint-text + }: + mkDerivation { + pname = "clash-vhdl"; + version = "0.6"; + sha256 = "7d2d5e2d3f52f8474ada33594073c9e74500c1988cb13f0beb4674c1f5bb784c"; + libraryHaskellDepends = [ + base clash-lib clash-prelude fgl lens mtl text unordered-containers + wl-pprint-text + ]; + homepage = "http://www.clash-lang.org/"; + description = "CAES Language for Synchronous Hardware - VHDL backend"; + license = stdenv.lib.licenses.bsd2; }) {}; "classify" = callPackage @@ -42816,8 +43252,8 @@ self: { }: mkDerivation { pname = "clckwrks"; - version = "0.23.10"; - sha256 = "7e85091501c7a91a51c17920b415e764f20b730f1bf59ad0e0cc5be9b777cbe7"; + version = "0.23.11"; + sha256 = "65868751cc51e409a000edc5fb26e25f3c151f8a792ca80006ae87813cc9ea6e"; libraryHaskellDepends = [ acid-state aeson aeson-qq attoparsec base blaze-html bytestring cereal containers directory filepath happstack-authenticate @@ -42841,14 +43277,13 @@ self: { }: mkDerivation { pname = "clckwrks-cli"; - version = "0.2.14"; - sha256 = "2336de23aed5c6cb2dafdafbd42581c43db3313835a91ad70a664a2d7ecf9bb7"; + version = "0.2.15"; + sha256 = "8a7fad8590c6c1297b7076a7e4cc03689f37cd9371171748f351967cbb91b7f2"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ acid-state base clckwrks haskeline mtl network parsec ]; - jailbreak = true; homepage = "http://www.clckwrks.com/"; description = "a command-line interface for adminstrating some aspects of clckwrks"; license = stdenv.lib.licenses.bsd3; @@ -42980,13 +43415,12 @@ self: { }: mkDerivation { pname = "clckwrks-theme-bootstrap"; - version = "0.4.0"; - sha256 = "9f4e43b58b2a8ec3d9a8d33663c3cad8121981e72d69cada7c76467b329d4d23"; + version = "0.4.1"; + sha256 = "59399a42c5d928e9aa332e0901d023e00f6add27c03b95cddf405e392885f852"; libraryHaskellDepends = [ base clckwrks happstack-authenticate hsp hsx-jmacro hsx2hs jmacro mtl text web-plugins ]; - jailbreak = true; homepage = "http://www.clckwrks.com/"; description = "simple bootstrap based template for clckwrks"; license = stdenv.lib.licenses.bsd3; @@ -42998,8 +43432,8 @@ self: { }: mkDerivation { pname = "clckwrks-theme-clckwrks"; - version = "0.5.1"; - sha256 = "93540dc0dafbf1e9bc6863c215391905201bc4653133fd01c0f0c6a9bacd6858"; + version = "0.5.2"; + sha256 = "53182128e49924132191d6d607e7088f92367a10ab31d38b5e4a1d8a2471ed1c"; libraryHaskellDepends = [ base clckwrks containers happstack-authenticate hsp hsx2hs mtl text web-plugins @@ -43106,8 +43540,8 @@ self: { ({ mkDerivation, base, containers }: mkDerivation { pname = "cli"; - version = "0.0.4"; - sha256 = "3dd98cc5a7d4e8bcd0db17dca4960273b1e541f5fdbab3cee69edaba3a87cc47"; + version = "0.0.5"; + sha256 = "2d514d8c7b17566c4cd5b9ae8f50dfad4af81fa5a81f547becb5b20faed714b2"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base containers ]; @@ -44300,8 +44734,8 @@ self: { ({ mkDerivation, array, base, containers, random, transformers }: mkDerivation { pname = "combinat"; - version = "0.2.7.1"; - sha256 = "690588b4cbfb9d92053fed70be71732bcb2b43b3cb091a0209565ec7d3d766f8"; + version = "0.2.7.2"; + sha256 = "ea1d24754fe24c13ea02441ad6e15bd5612227d72ff61db2aac8e18c3354e931"; libraryHaskellDepends = [ array base containers random transformers ]; @@ -44987,6 +45421,19 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "compose-ltr" = callPackage + ({ mkDerivation, base, hspec, QuickCheck }: + mkDerivation { + pname = "compose-ltr"; + version = "0.1.1"; + sha256 = "b30225b7dfa3909aefc2373e1338de8a3fc02c9de154639a83289b7b1edabbab"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base hspec QuickCheck ]; + description = "More intuitive, left-to-right function composition"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "compose-trans" = callPackage ({ mkDerivation, base, mtl }: mkDerivation { @@ -45011,7 +45458,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "composition" = callPackage + "composition_1_0_1_1" = callPackage ({ mkDerivation }: mkDerivation { pname = "composition"; @@ -45019,9 +45466,10 @@ self: { sha256 = "3728762c3d433f3194f433eb75c5b7780a3982126e6120a716314ffd75bf5e84"; description = "Combinators for unorthodox function composition"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "composition_1_0_2" = callPackage + "composition" = callPackage ({ mkDerivation }: mkDerivation { pname = "composition"; @@ -45029,7 +45477,6 @@ self: { sha256 = "0db6b7579db9a96dc47cfcb30e7835d4742bfab9b46518f00244e168b32405cd"; description = "Combinators for unorthodox function composition"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "composition-extra_1_1_0" = callPackage @@ -45059,8 +45506,8 @@ self: { ({ mkDerivation, base, doctest, QuickCheck }: mkDerivation { pname = "composition-tree"; - version = "0.1.1.0"; - sha256 = "c9272752122468297cd8212bad4b75dbb5c534a7cbedce08b603e118d0119c8c"; + version = "0.2.0.1"; + sha256 = "6452868a10df2e5ac564a2c3ae53eafa746a3c8f8791e064b49b9b54d4746502"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base doctest QuickCheck ]; homepage = "https://github.com/liamoc/composition-tree"; @@ -46614,8 +47061,8 @@ self: { }: mkDerivation { pname = "connection-pool"; - version = "0.1.3"; - sha256 = "0570c457c2d633487ab44edaaea9ebd117259e770048c4e26edd9504f65cbcfa"; + version = "0.2"; + sha256 = "a6c3ba5f1905832cefdf9afc55cbf46a6c6a321ecac19254f20f091402b440fa"; libraryHaskellDepends = [ base between data-default-class monad-control network resource-pool streaming-commons time transformers-base @@ -47961,6 +48408,7 @@ self: { homepage = "https://github.com/mdorman/couch-simple"; description = "A modern, lightweight, complete client for CouchDB"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) couchdb;}; "couchdb-conduit" = callPackage @@ -48462,20 +48910,19 @@ self: { }) {}; "cpython" = callPackage - ({ mkDerivation, base, bytestring, c2hs, python3, text }: + ({ mkDerivation, base, bytestring, c2hs, python34, text }: mkDerivation { pname = "cpython"; - version = "3.3.0"; - sha256 = "529eb0b3931d3a18deaa6b0e026a6c0156efeb3518b7b4e4d89e45fb5c035598"; + version = "3.4.0"; + sha256 = "75424a6d82ca641a2d95eb25c298ee6ec40d974957d75056bb98b5757fe0c7c8"; libraryHaskellDepends = [ base bytestring text ]; - libraryPkgconfigDepends = [ python3 ]; + libraryPkgconfigDepends = [ python34 ]; libraryToolDepends = [ c2hs ]; - jailbreak = true; homepage = "https://john-millikin.com/software/haskell-python/"; description = "Bindings for libpython"; license = stdenv.lib.licenses.gpl3; hydraPlatforms = stdenv.lib.platforms.none; - }) {inherit (pkgs) python3;}; + }) {python34 = null;}; "cql" = callPackage ({ mkDerivation, base, bytestring, cereal, Decimal, iproute @@ -48837,6 +49284,8 @@ self: { pname = "crf-chain1"; version = "0.2.2"; sha256 = "18f2686ac1187fb1a0012e0b08f5ef9f959b26f72368917e1faae264f7ad156c"; + revision = "1"; + editedCabalFile = "a28bf6d6103c13301f352b2042eff9f7447ef623b5bbfd34c2d37121e049029a"; libraryHaskellDepends = [ array base binary containers data-lens logfloat monad-codec parallel random sgd vector vector-binary vector-th-unbox @@ -49299,12 +49748,14 @@ self: { }) {}; "crypto-enigma" = callPackage - ({ mkDerivation, base, containers, MissingH, split }: + ({ mkDerivation, base, containers, HUnit, MissingH, split }: mkDerivation { pname = "crypto-enigma"; - version = "0.0.1.6"; - sha256 = "f37113b80911c71eae48d730f514dcaacb9322631ee5cf9defb2009c31fdc9be"; + version = "0.0.2.0"; + sha256 = "193d3240a18db9d09ec1dc6d02612f034dd9e364083949adf8feb9e17c10a80f"; libraryHaskellDepends = [ base containers MissingH split ]; + testHaskellDepends = [ base HUnit ]; + jailbreak = true; homepage = "https://github.com/orome/crypto-enigma"; description = "An Enigma machine simulator with display"; license = stdenv.lib.licenses.bsd3; @@ -49706,7 +50157,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cryptol" = callPackage + "cryptol_2_2_4" = callPackage ({ mkDerivation, alex, ansi-terminal, array, async, base , containers, deepseq, directory, filepath, gitrev, GraphSCC, happy , haskeline, heredoc, monadLib, old-time, presburger, pretty @@ -49733,6 +50184,36 @@ self: { homepage = "http://www.cryptol.net/"; description = "Cryptol: The Language of Cryptography"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "cryptol" = callPackage + ({ mkDerivation, alex, ansi-terminal, array, async, base + , containers, deepseq, directory, filepath, gitrev, GraphSCC, happy + , haskeline, heredoc, monadLib, old-time, presburger, pretty + , process, QuickCheck, random, sbv, smtLib, syb, template-haskell + , text, tf-random, transformers, utf8-string + }: + mkDerivation { + pname = "cryptol"; + version = "2.2.5"; + sha256 = "805b80aefc23144eccdb37884a1597f3047d360efdc23094dd98441f12790282"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array async base containers deepseq directory filepath gitrev + GraphSCC heredoc monadLib old-time presburger pretty process + QuickCheck random sbv smtLib syb template-haskell text tf-random + transformers utf8-string + ]; + libraryToolDepends = [ alex happy ]; + executableHaskellDepends = [ + ansi-terminal base containers deepseq directory filepath haskeline + monadLib process random sbv tf-random transformers + ]; + homepage = "http://www.cryptol.net/"; + description = "Cryptol: The Language of Cryptography"; + license = stdenv.lib.licenses.bsd3; }) {}; "cryptonite_0_6" = callPackage @@ -49764,8 +50245,8 @@ self: { }: mkDerivation { pname = "cryptonite"; - version = "0.7"; - sha256 = "6cd4d9ff100b06a08ceac56eb12153633957797b309032a963cdf3841f92ecd9"; + version = "0.8"; + sha256 = "6401745cab3b83e81b84c09336215f3f80f532b3cfd948c4c53e891aa9b69b07"; libraryHaskellDepends = [ base bytestring deepseq ghc-prim integer-gmp memory ]; @@ -49773,7 +50254,7 @@ self: { base byteable bytestring memory tasty tasty-hunit tasty-kat tasty-quickcheck ]; - homepage = "https://github.com/vincenthz/cryptonite"; + homepage = "https://github.com/haskell-crypto/cryptonite"; description = "Cryptography Primitives sink"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -50575,8 +51056,8 @@ self: { }: mkDerivation { pname = "d-bus"; - version = "0.1.3.2"; - sha256 = "3054ece77fbffbea72e698164cdefd677f6ea1e6bc50f49d058a5d382e048fbe"; + version = "0.1.3.3"; + sha256 = "81d22b29f72c77c8a8ffb89e14801adbd6b7730c7f24d3c24a311c028b9b624a"; libraryHaskellDepends = [ async attoparsec base binary blaze-builder bytestring conduit conduit-extra containers data-binary-ieee754 data-default @@ -52561,7 +53042,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "dbus" = callPackage + "dbus_0_10_10" = callPackage ({ mkDerivation, base, bytestring, cereal, chell, chell-quickcheck , containers, directory, filepath, libxml-sax, network, parsec , process, QuickCheck, random, text, transformers, unix, vector @@ -52580,6 +53061,33 @@ self: { filepath libxml-sax network parsec process QuickCheck random text transformers unix vector xml-types ]; + doCheck = false; + homepage = "https://john-millikin.com/software/haskell-dbus/"; + description = "A client library for the D-Bus IPC system"; + license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "dbus" = callPackage + ({ mkDerivation, base, bytestring, cereal, chell, chell-quickcheck + , containers, directory, filepath, libxml-sax, network, parsec + , process, QuickCheck, random, text, transformers, unix, vector + , xml-types + }: + mkDerivation { + pname = "dbus"; + version = "0.10.11"; + sha256 = "73e6b2b2021215dd8b9540d770e5cc353427f37083c7d84ebc244ac48e630482"; + libraryHaskellDepends = [ + base bytestring cereal containers libxml-sax network parsec random + text transformers unix vector xml-types + ]; + testHaskellDepends = [ + base bytestring cereal chell chell-quickcheck containers directory + filepath libxml-sax network parsec process QuickCheck random text + transformers unix vector xml-types + ]; + doCheck = false; homepage = "https://john-millikin.com/software/haskell-dbus/"; description = "A client library for the D-Bus IPC system"; license = stdenv.lib.licenses.gpl3; @@ -53145,6 +53653,25 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "declarative" = callPackage + ({ mkDerivation, base, hasty-hamiltonian, lens, mcmc-types + , mighty-metropolis, mwc-probability, pipes, primitive + , speedy-slice, transformers + }: + mkDerivation { + pname = "declarative"; + version = "0.1.0.1"; + sha256 = "22bc7bed888b083c289ce027f3c545718e853736a8d19e9fe32a91da61355bad"; + libraryHaskellDepends = [ + base hasty-hamiltonian lens mcmc-types mighty-metropolis + mwc-probability pipes primitive speedy-slice transformers + ]; + testHaskellDepends = [ base mwc-probability ]; + homepage = "http://github.com/jtobin/declarative"; + description = "DIY Markov Chains"; + license = stdenv.lib.licenses.mit; + }) {}; + "decode-utf8" = callPackage ({ mkDerivation, api-opentheory-unicode, base, opentheory-unicode }: @@ -53199,6 +53726,22 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "deepcontrol" = callPackage + ({ mkDerivation, base, doctest, HUnit, mtl, QuickCheck + , transformers + }: + mkDerivation { + pname = "deepcontrol"; + version = "0.2.0.0"; + sha256 = "7df441135b4a219ca7d912f97a3b4fb6adc8ce3c5d5c9a7b5458ce421bc157ec"; + libraryHaskellDepends = [ base mtl transformers ]; + testHaskellDepends = [ base doctest HUnit QuickCheck ]; + jailbreak = true; + homepage = "https://github.com/ocean0yohsuke/deepcontrol"; + description = "Enable more deeper level style of programming than the usual Control.xxx modules express"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "deeplearning-hs" = callPackage ({ mkDerivation, accelerate, base, mtl, QuickCheck, repa , repa-algorithms, test-framework, test-framework-quickcheck2 @@ -54595,7 +55138,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-cairo" = callPackage + "diagrams-cairo_1_3_0_4" = callPackage ({ mkDerivation, base, bytestring, cairo, colour, containers , data-default-class, diagrams-core, diagrams-lib, filepath , hashable, JuicyPixels, lens, mtl, optparse-applicative, pango @@ -54614,9 +55157,10 @@ self: { homepage = "http://projects.haskell.org/diagrams"; description = "Cairo backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-cairo_1_3_0_5" = callPackage + "diagrams-cairo" = callPackage ({ mkDerivation, base, bytestring, cairo, colour, containers , data-default-class, diagrams-core, diagrams-lib, filepath , hashable, JuicyPixels, lens, mtl, optparse-applicative, pango @@ -54635,7 +55179,6 @@ self: { homepage = "http://projects.haskell.org/diagrams"; description = "Cairo backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-canvas_0_3_0_3" = callPackage @@ -55124,6 +55667,7 @@ self: { base containers haskell-src-exts lens parsec QuickCheck tasty tasty-quickcheck ]; + jailbreak = true; doCheck = false; homepage = "http://projects.haskell.org/diagrams/"; description = "Preprocessor for embedding diagrams in Haddock documentation"; @@ -55202,7 +55746,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-html5" = callPackage + "diagrams-html5_1_3_0_3" = callPackage ({ mkDerivation, base, cmdargs, containers, data-default-class , diagrams-core, diagrams-lib, lens, mtl, NumInstances , optparse-applicative, split, statestack, static-canvas, text @@ -55219,9 +55763,10 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "HTML5 canvas backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-html5_1_3_0_4" = callPackage + "diagrams-html5" = callPackage ({ mkDerivation, base, cmdargs, containers, data-default-class , diagrams-core, diagrams-lib, lens, mtl, NumInstances , optparse-applicative, split, statestack, static-canvas, text @@ -55238,7 +55783,6 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "HTML5 canvas backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-lib_1_2_0_7" = callPackage @@ -55337,7 +55881,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "diagrams-lib_1_3_0_6" = callPackage + "diagrams-lib_1_3_0_7" = callPackage ({ mkDerivation, active, adjunctions, array, base, colour , containers, data-default-class, diagrams-core, diagrams-solve , directory, distributive, dual-tree, exceptions, filepath @@ -55347,8 +55891,8 @@ self: { }: mkDerivation { pname = "diagrams-lib"; - version = "1.3.0.6"; - sha256 = "708ba36525cea74cc12f710da6ee466dc17b60b31f402424cae43fb9c1908b0a"; + version = "1.3.0.7"; + sha256 = "2c491d234d9ce8b358bcd29b3349bfb5e852380e5c1ed74d437e7d9d64d75a01"; libraryHaskellDepends = [ active adjunctions array base colour containers data-default-class diagrams-core diagrams-solve directory distributive dual-tree @@ -55370,10 +55914,14 @@ self: { }: mkDerivation { pname = "diagrams-pandoc"; - version = "0.1"; - sha256 = "645d84d47ff347ef1bc667bd5b9ac35b4636a86dd38759f63106991a0507bf09"; - isLibrary = false; + version = "0.2"; + sha256 = "03bc32e95873000bae33d837319367febc2efad073671677afa3fdd59d246459"; + isLibrary = true; isExecutable = true; + libraryHaskellDepends = [ + base diagrams-builder diagrams-cairo diagrams-lib directory + filepath linear pandoc-types + ]; executableHaskellDepends = [ base diagrams-builder diagrams-cairo diagrams-lib directory filepath linear optparse-applicative pandoc-types @@ -55530,12 +56078,11 @@ self: { }: mkDerivation { pname = "diagrams-qrcode"; - version = "1.2"; - sha256 = "94a2a7ab0c072f3a30ebd6454b3498eddc3bc1ab6d6064c32a87c4fe23808195"; + version = "1.3"; + sha256 = "fd7f571bbdc392b1fb1872546b5980913efde1e3604fd1bc94225e7fd8b2a7dd"; libraryHaskellDepends = [ array base colour diagrams-core diagrams-lib ]; - jailbreak = true; homepage = "https://github.com/prowdsponsor/diagrams-qrcode"; description = "Draw QR codes to SVG, PNG, PDF or PS files"; license = stdenv.lib.licenses.bsd3; @@ -55609,7 +56156,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-rasterific" = callPackage + "diagrams-rasterific_1_3_1_4" = callPackage ({ mkDerivation, base, bytestring, containers, data-default-class , diagrams-core, diagrams-lib, filepath, FontyFruity, hashable , JuicyPixels, lens, mtl, optparse-applicative, Rasterific, split @@ -55627,9 +56174,10 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "Rasterific backend for diagrams"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-rasterific_1_3_1_5" = callPackage + "diagrams-rasterific" = callPackage ({ mkDerivation, base, bytestring, containers, data-default-class , diagrams-core, diagrams-lib, filepath, FontyFruity, hashable , JuicyPixels, lens, mtl, optparse-applicative, Rasterific, split @@ -55647,7 +56195,6 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "Rasterific backend for diagrams"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-rubiks-cube" = callPackage @@ -55770,7 +56317,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-svg" = callPackage + "diagrams-svg_1_3_1_5" = callPackage ({ mkDerivation, base, base64-bytestring, bytestring, colour , containers, diagrams-core, diagrams-lib, directory, filepath , hashable, JuicyPixels, lens, lucid-svg, monoid-extras, mtl @@ -55790,9 +56337,10 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "SVG backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-svg_1_3_1_6" = callPackage + "diagrams-svg" = callPackage ({ mkDerivation, base, base64-bytestring, bytestring, colour , containers, diagrams-core, diagrams-lib, directory, filepath , hashable, JuicyPixels, lens, lucid-svg, monoid-extras, mtl @@ -55812,7 +56360,6 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "SVG backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-tikz" = callPackage @@ -56203,7 +56750,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "digestive-functors-aeson" = callPackage + "digestive-functors-aeson_1_1_16" = callPackage ({ mkDerivation, aeson, base, bytestring, containers , digestive-functors, HUnit, lens, lens-aeson, mtl, safe , scientific, tasty, tasty-hunit, text, vector @@ -56223,9 +56770,10 @@ self: { homepage = "http://github.com/ocharles/digestive-functors-aeson"; description = "Run digestive-functors forms against JSON"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "digestive-functors-aeson_1_1_18" = callPackage + "digestive-functors-aeson" = callPackage ({ mkDerivation, aeson, base, bytestring, containers , digestive-functors, HUnit, lens, lens-aeson, mtl, safe , scientific, tasty, tasty-hunit, text, vector @@ -56245,7 +56793,6 @@ self: { homepage = "http://github.com/ocharles/digestive-functors-aeson"; description = "Run digestive-functors forms against JSON"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "digestive-functors-blaze" = callPackage @@ -57026,6 +57573,7 @@ self: { distributed-static ghc-prim hashable mtl network-transport random rank1dynamic stm syb template-haskell time transformers ]; + doCheck = false; homepage = "http://haskell-distributed.github.com/"; description = "Cloud Haskell: Erlang-style concurrency in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -57085,6 +57633,7 @@ 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; @@ -57174,6 +57723,7 @@ self: { network-transport network-transport-tcp rematch stm test-framework test-framework-hunit transformers ]; + doCheck = false; homepage = "http://github.com/haskell-distributed/distributed-process-client-server"; description = "The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; @@ -57245,6 +57795,7 @@ self: { QuickCheck rematch stm test-framework test-framework-hunit test-framework-quickcheck2 time transformers unordered-containers ]; + doCheck = false; homepage = "http://github.com/haskell-distributed/distributed-process-execution"; description = "Execution Framework for The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; @@ -57309,6 +57860,7 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 time transformers unordered-containers ]; + doCheck = false; homepage = "http://github.com/haskell-distributed/distributed-process-extras"; description = "Cloud Haskell Extras"; license = stdenv.lib.licenses.bsd3; @@ -57547,6 +58099,7 @@ self: { rematch stm test-framework test-framework-hunit time transformers unordered-containers ]; + doCheck = false; homepage = "http://github.com/haskell-distributed/distributed-process-supervisor"; description = "Supervisors for The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; @@ -57620,6 +58173,7 @@ self: { QuickCheck rematch stm test-framework test-framework-hunit test-framework-quickcheck2 time transformers unordered-containers ]; + doCheck = false; homepage = "http://github.com/haskell-distributed/distributed-process-task"; description = "Task Framework for The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; @@ -57634,8 +58188,8 @@ self: { }: mkDerivation { pname = "distributed-process-tests"; - version = "0.4.3.1"; - sha256 = "df2b69250b339baa5180cd46d1d045f33665474f13c1903bb2ff3f2f39e105b6"; + version = "0.4.3.2"; + sha256 = "ee44041cdfca0712f45b279534ee646eb4a51a70f91a26484dd234d1b0ef4251"; libraryHaskellDepends = [ ansi-terminal base binary bytestring distributed-process distributed-static HUnit network network-transport random rematch @@ -57788,6 +58342,30 @@ self: { license = stdenv.lib.licenses.gpl2; }) {}; + "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, transformers + , vector, warp, yaml + }: + mkDerivation { + pname = "dixi"; + version = "0.1.0.0"; + sha256 = "85d7bfd8dc4b0789900ccbdc0b7da330b7d613c9b2a991a02396aafd27d01686"; + 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 transformers vector warp yaml + ]; + homepage = "https://github.com/liamoc/dixi"; + description = "A wiki implemented with a firm theoretical foundation"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "djinn" = callPackage ({ mkDerivation, array, base, containers, haskeline, mtl, pretty }: mkDerivation { @@ -57916,7 +58494,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "dns" = callPackage + "dns_2_0_0" = callPackage ({ mkDerivation, attoparsec, base, binary, blaze-builder , bytestring, conduit, conduit-extra, containers, doctest, hspec , iproute, mtl, network, random, resourcet, word8 @@ -57938,6 +58516,31 @@ self: { testTarget = "spec"; description = "DNS library in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "dns" = callPackage + ({ mkDerivation, attoparsec, base, binary, blaze-builder + , bytestring, conduit, conduit-extra, containers, doctest, hspec + , iproute, mtl, network, random, resourcet, word8 + }: + mkDerivation { + pname = "dns"; + version = "2.0.1"; + sha256 = "3d11e14bbfd07b46bba9c676dd970731be190d6dc9c5e95089c4da60565e47d2"; + libraryHaskellDepends = [ + attoparsec base binary blaze-builder bytestring conduit + conduit-extra containers iproute mtl network random resourcet + ]; + testHaskellDepends = [ + attoparsec base binary blaze-builder bytestring conduit + conduit-extra containers doctest hspec iproute mtl network random + resourcet word8 + ]; + doCheck = false; + testTarget = "spec"; + description = "DNS library in Haskell"; + license = stdenv.lib.licenses.bsd3; }) {}; "dnscache" = callPackage @@ -58561,8 +59164,9 @@ self: { pname = "download-curl"; version = "0.1.4"; sha256 = "950ede497ff41d72875337861fa41ca3e151b691ad53a9ddddd2443285bbc3f1"; + revision = "1"; + editedCabalFile = "7e6df1d4f39879e9b031c8ff5e2f6fd5be3729cc40f7515e117ac0b47ed3f675"; libraryHaskellDepends = [ base bytestring curl feed tagsoup xml ]; - jailbreak = true; homepage = "http://code.haskell.org/~dons/code/download-curl"; description = "High-level file download based on URLs"; license = stdenv.lib.licenses.bsd3; @@ -59635,6 +60239,17 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "dywapitchtrack" = callPackage + ({ mkDerivation, base, bytestring, transformers }: + mkDerivation { + pname = "dywapitchtrack"; + version = "0.1.0.1"; + sha256 = "ee7d3dab776e190aa16c9403580597e5128ca7f32837a0dd5d75b377bd42b6ba"; + libraryHaskellDepends = [ base bytestring transformers ]; + description = "Bindings to the dywapitchtrack pitch tracking library"; + license = stdenv.lib.licenses.mit; + }) {}; + "dzen-utils" = callPackage ({ mkDerivation, base, colour, process }: mkDerivation { @@ -59858,13 +60473,17 @@ self: { }) {canlib = null;}; "ed25519" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, hlint, QuickCheck }: + ({ mkDerivation, base, bytestring, directory, doctest, filepath + , ghc-prim, hlint, QuickCheck + }: mkDerivation { pname = "ed25519"; - version = "0.0.4.0"; - sha256 = "8d22bcb592814f96b5335824a2b2930ad1c50811f950609d054d1a5228ae298d"; + version = "0.0.5.0"; + sha256 = "d8a5958ebfa9309790efade64275dc5c441b568645c45ceed1b0c6ff36d6156d"; libraryHaskellDepends = [ base bytestring ghc-prim ]; - testHaskellDepends = [ base bytestring hlint QuickCheck ]; + testHaskellDepends = [ + base bytestring directory doctest filepath hlint QuickCheck + ]; homepage = "http://thoughtpolice.github.com/hs-ed25519"; description = "Ed25519 cryptographic signatures"; license = stdenv.lib.licenses.mit; @@ -59927,7 +60546,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "ede" = callPackage + "ede_0_2_8_2" = callPackage ({ mkDerivation, aeson, ansi-wl-pprint, base, bifunctors , bytestring, comonad, directory, filepath, free, lens, mtl , parsers, scientific, semigroups, tasty, tasty-golden, text @@ -59949,6 +60568,56 @@ self: { homepage = "http://github.com/brendanhay/ede"; description = "Templating language with similar syntax and features to Liquid or Jinja2"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ede_0_2_8_3" = callPackage + ({ mkDerivation, aeson, ansi-wl-pprint, base, bifunctors + , bytestring, comonad, directory, filepath, free, lens, mtl + , parsers, scientific, semigroups, tasty, tasty-golden, text + , text-format, text-manipulate, trifecta, unordered-containers + , vector + }: + mkDerivation { + pname = "ede"; + version = "0.2.8.3"; + sha256 = "3433a901fc1fe54d14690a65366f3edcab9cff8934557fef29bdd520c3083ad7"; + libraryHaskellDepends = [ + aeson ansi-wl-pprint base bifunctors bytestring comonad directory + filepath free lens mtl parsers scientific semigroups text + text-format text-manipulate trifecta unordered-containers vector + ]; + testHaskellDepends = [ + aeson base bifunctors bytestring directory tasty tasty-golden text + ]; + homepage = "http://github.com/brendanhay/ede"; + description = "Templating language with similar syntax and features to Liquid or Jinja2"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ede" = callPackage + ({ mkDerivation, aeson, ansi-wl-pprint, base, bifunctors + , bytestring, comonad, directory, filepath, free, lens, mtl + , parsers, scientific, semigroups, tasty, tasty-golden, text + , text-format, text-manipulate, trifecta, unordered-containers + , vector + }: + mkDerivation { + pname = "ede"; + version = "0.2.8.4"; + sha256 = "f7fda7bc2d28b87fe7042adfca9fa9f7484c546142ad649dcae1d2ad4af5ae72"; + libraryHaskellDepends = [ + aeson ansi-wl-pprint base bifunctors bytestring comonad directory + filepath free lens mtl parsers scientific semigroups text + text-format text-manipulate trifecta unordered-containers vector + ]; + testHaskellDepends = [ + aeson base bifunctors bytestring directory tasty tasty-golden text + ]; + homepage = "http://github.com/brendanhay/ede"; + description = "Templating language with similar syntax and features to Liquid or Jinja2"; + license = "unknown"; }) {}; "edenmodules" = callPackage @@ -60670,8 +61339,8 @@ self: { }: mkDerivation { pname = "ekg-log"; - version = "0.1.0.3"; - sha256 = "1c6ac96631e6fc826a31b086eb4f2385eaefe1bf3d4d3252c8bdebc940bbf2e5"; + version = "0.1.0.4"; + sha256 = "10827eaf0ba809fe1ea2f05e2a31e584f19354982436af8b73a2d7b422dbfbed"; libraryHaskellDepends = [ aeson base bytestring directory ekg-core fast-logger filepath text time unix unordered-containers @@ -61203,6 +61872,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "elo" = callPackage + ({ mkDerivation, base, tasty }: + mkDerivation { + pname = "elo"; + version = "0.1.0"; + sha256 = "2bdb18075718f17a84f1fa0190855f84fa5105b164c94d2fb4ac49447c5fca2d"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base tasty ]; + homepage = "http://github.com/mfine/elo"; + description = "Elo Rating Library"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "elocrypt" = callPackage ({ mkDerivation, base, MonadRandom, proctest, QuickCheck, random , tasty, tasty-quickcheck, tasty-th @@ -61238,6 +61920,7 @@ self: { testHaskellDepends = [ base doctest tasty tasty-hspec tasty-quickcheck xkbcommon ]; + jailbreak = true; homepage = "https://github.com/cocreature/emacs-keys"; description = "library to parse emacs style keybinding into the modifiers and the chars"; license = stdenv.lib.licenses.isc; @@ -61610,8 +62293,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "engineering-units"; - version = "0.0.1"; - sha256 = "3de5c1edad2c793b6ea8a0e27c3bcb36ec7acde6a3d4d2e891abdb3fb6baf1ca"; + version = "0.0.2"; + sha256 = "d2c640271c9ec07026eb76bb56c09f69988367c444886e46032c584b700973aa"; libraryHaskellDepends = [ base ]; description = "A numeric type for managing and automating engineering units"; license = stdenv.lib.licenses.bsd3; @@ -62061,11 +62744,13 @@ self: { ({ mkDerivation, base, singletons, template-haskell, void }: mkDerivation { pname = "equational-reasoning"; - version = "0.2.0.5"; - sha256 = "3388d77104f327b96f71f69e74600163bdbf73154c989bbeb5719d0f2c1f0cc5"; + 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; }) {}; "equivalence" = callPackage @@ -62134,16 +62819,16 @@ self: { "erlang" = callPackage ({ mkDerivation, base, binary, bytestring, directory, filepath - , nano-md5, network, random + , MissingH, network, random }: mkDerivation { pname = "erlang"; - version = "0.1"; - sha256 = "44d1b970899dbd756021be4e052763f545528f10b9373ee9dfaaab862ba25b92"; + version = "0.2"; + sha256 = "90c5c2081472ec2fdf7d7b1ac3d89169479590af7679a071a05dd7cbf6a14250"; libraryHaskellDepends = [ - base binary bytestring directory filepath nano-md5 network random + base binary bytestring directory filepath MissingH network random ]; - homepage = "http://github.com/esessoms/haskell-interface"; + homepage = "http://github.com/gombocarti/erlang-ffi"; description = "FFI interface to Erlang"; license = "GPL"; hydraPlatforms = stdenv.lib.platforms.none; @@ -63001,8 +63686,8 @@ self: { }: mkDerivation { pname = "eventloop"; - version = "0.4.1.1"; - sha256 = "4fa2aa6754b23da42e660abdc776d19f600fe28a6eb6fc2c601781c5fe040735"; + version = "0.4.1.2"; + sha256 = "41a059f249f7fed1b61cd8e6afd6c878b64dad7cb41a076acb499f83aee57804"; libraryHaskellDepends = [ aeson base bytestring network suspend text timers websockets ]; @@ -63196,7 +63881,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "exception-transformers" = callPackage + "exception-transformers_0_4_0_1" = callPackage ({ mkDerivation, base, HUnit, stm, test-framework , test-framework-hunit, transformers, transformers-compat }: @@ -63213,6 +63898,26 @@ self: { ]; description = "Type classes and monads for unchecked extensible exceptions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "exception-transformers" = callPackage + ({ mkDerivation, base, HUnit, stm, test-framework + , test-framework-hunit, transformers, transformers-compat + }: + mkDerivation { + pname = "exception-transformers"; + version = "0.4.0.2"; + sha256 = "d24ba7d2d96688f867cce18bb58d073515c679d083f7c900dcdef02333000452"; + libraryHaskellDepends = [ + base stm transformers transformers-compat + ]; + testHaskellDepends = [ + base HUnit test-framework test-framework-hunit transformers + transformers-compat + ]; + description = "Type classes and monads for unchecked extensible exceptions"; + license = stdenv.lib.licenses.bsd3; }) {}; "exceptional" = callPackage @@ -63342,22 +64047,25 @@ self: { }) {}; "exherbo-cabal" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, doctest - , haddock-library, http-client, http-types, pcre-light, pretty + ({ mkDerivation, ansi-wl-pprint, base, bytestring, Cabal + , containers, data-default, doctest, haddock-library, http-client + , http-types, optparse-applicative, pcre-light, pretty }: mkDerivation { pname = "exherbo-cabal"; - version = "0.1.1.0"; - sha256 = "ae4f8c8f5a071e9f8df4ce79568b6078ae1cb5a55774f389c0a61e7ab6d78fd7"; + version = "0.2.0.0"; + sha256 = "f052683dc1c0ecd91dfae4c3c3200e6601615590b51549e756e8ccb5260a7d5f"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base Cabal containers haddock-library pretty + base Cabal containers data-default haddock-library pretty ]; executableHaskellDepends = [ - base bytestring Cabal http-client http-types pcre-light + ansi-wl-pprint base bytestring Cabal data-default http-client + http-types optparse-applicative pcre-light ]; testHaskellDepends = [ base doctest ]; + jailbreak = true; description = "Exheres generator for cabal packages"; license = stdenv.lib.licenses.gpl2; }) {}; @@ -64348,16 +65056,17 @@ self: { }) {}; "fasta" = callPackage - ({ mkDerivation, base, bytestring, containers, foldl, lens, parsec - , pipes, pipes-bytestring, pipes-group, pipes-text, split, text + ({ mkDerivation, attoparsec, base, bytestring, containers, foldl + , lens, parsec, pipes, pipes-attoparsec, pipes-bytestring + , pipes-group, pipes-text, split, text }: mkDerivation { pname = "fasta"; - version = "0.8.0.2"; - sha256 = "3399b07d0ca4a1aaffbcebce624aed5f44e370e5241af6b109b3a8839ad81591"; + version = "0.9.0.0"; + sha256 = "85d7358b4f20b54cfbb9f6241ad1d5c8c238230898fe377f80c6ba65bb1990bd"; libraryHaskellDepends = [ - base bytestring containers foldl lens parsec pipes pipes-bytestring - pipes-group pipes-text split text + attoparsec base bytestring containers foldl lens parsec pipes + pipes-attoparsec pipes-bytestring pipes-group pipes-text split text ]; homepage = "https://github.com/GregorySchwartz/fasta"; description = "A simple, mindless parser for fasta files"; @@ -65358,7 +66067,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "feed" = callPackage + "feed_0_3_10_1" = callPackage ({ mkDerivation, base, HUnit, old-locale, old-time, test-framework , test-framework-hunit, time, time-locale-compat, utf8-string, xml }: @@ -65376,6 +66085,27 @@ self: { homepage = "https://github.com/bergmark/feed"; description = "Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "feed" = callPackage + ({ mkDerivation, base, HUnit, old-locale, old-time, test-framework + , test-framework-hunit, time, time-locale-compat, utf8-string, xml + }: + mkDerivation { + pname = "feed"; + version = "0.3.10.2"; + sha256 = "763c6ed7a7cfa2ebb61ca3bf84fe3bcce4f2b1a8681acca7b004fa06e2fd3159"; + libraryHaskellDepends = [ + base old-locale old-time time time-locale-compat utf8-string xml + ]; + testHaskellDepends = [ + base HUnit old-locale old-time test-framework test-framework-hunit + time time-locale-compat utf8-string xml + ]; + homepage = "https://github.com/bergmark/feed"; + description = "Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds."; + license = stdenv.lib.licenses.bsd3; }) {}; "feed-cli" = callPackage @@ -65406,6 +66136,8 @@ self: { pname = "feed-collect"; version = "0.1.0.1"; sha256 = "e442e5999c34c998a7b15189af564730360effb3e5dbaa4d99f65076de445204"; + revision = "1"; + editedCabalFile = "0383f41e89586ae747cdb892d9404ae0c9a1fed72bb06dbc0fa9bd585885084d"; libraryHaskellDepends = [ base feed http-client http-client-tls time time-units timerep transformers utf8-string @@ -66547,6 +67279,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "first-and-last" = callPackage + ({ mkDerivation, base, Cabal }: + mkDerivation { + pname = "first-and-last"; + version = "0.1.0.0"; + sha256 = "d3d54fb686d09717501eed65a1ae21fdd5434ad73f958ff57d7ae849b1519653"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base Cabal ]; + homepage = "https://github.com/markandrus/first-and-last"; + description = "First and Last generalized to return up to n values"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "first-class-patterns" = callPackage ({ mkDerivation, base, transformers }: mkDerivation { @@ -67062,6 +67807,20 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "flat-tex" = callPackage + ({ mkDerivation, base, directory, parsec }: + mkDerivation { + pname = "flat-tex"; + version = "0.3.1"; + sha256 = "574f88448cac7d5a0399e5e7518f5c7003dacf16a2767a6d925cd3606a224ed7"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ base directory parsec ]; + homepage = "https://github.com/jwaldmann/flat-tex"; + description = "flatten a latex multi-file latex document"; + license = stdenv.lib.licenses.gpl2; + }) {}; + "flexible-defaults" = callPackage ({ mkDerivation, base, containers, template-haskell, th-extras , transformers @@ -67262,7 +68021,7 @@ self: { license = "unknown"; }) {}; - "flow" = callPackage + "flow_1_0_1" = callPackage ({ mkDerivation, base, doctest, QuickCheck, template-haskell }: mkDerivation { pname = "flow"; @@ -67273,6 +68032,20 @@ self: { homepage = "http://taylor.fausak.me/flow/"; description = "Write more understandable Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "flow" = callPackage + ({ mkDerivation, base, doctest, QuickCheck, template-haskell }: + mkDerivation { + pname = "flow"; + version = "1.0.2"; + sha256 = "20f09c7841b72a90f4dd986f0dd68b0f71f96f12ba84b2097c29eb8f16d256d0"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base doctest QuickCheck template-haskell ]; + homepage = "http://taylor.fausak.me/flow/"; + description = "Write more understandable Haskell"; + license = stdenv.lib.licenses.mit; }) {}; "flow2dot" = callPackage @@ -67434,22 +68207,40 @@ self: { }) {}; "fltkhs" = callPackage - ({ mkDerivation, base, bytestring, c2hs, directory, process }: + ({ mkDerivation, base, bytestring, c2hs, directory, filepath, mtl + , parsec, process + }: mkDerivation { pname = "fltkhs"; - version = "0.1.0.2"; - sha256 = "43c6eca250adf2e54c07171fa9a06dce8cd3249cc27d737272794711da29e986"; + version = "0.2.0.1"; + sha256 = "90f88822a01ce585217f1115aa99c705fdf0984443c68aef24cd93f3c2850c43"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base bytestring ]; libraryToolDepends = [ c2hs ]; - executableHaskellDepends = [ base bytestring directory process ]; + executableHaskellDepends = [ + base bytestring directory filepath mtl parsec process + ]; homepage = "http://github.com/deech/fltkhs"; description = "FLTK bindings"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "fltkhs-fluid-examples" = callPackage + ({ mkDerivation, base, bytestring, fltkhs }: + mkDerivation { + pname = "fltkhs-fluid-examples"; + version = "0.0.0.1"; + sha256 = "fefb4146e1140c6e8f00b8004ce6bb5a7b903bd6942b1eb85ce70abbd6ef6fca"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ base bytestring fltkhs ]; + homepage = "http://github.com/deech/fltkhs-fluid-examples"; + description = "Fltkhs Fluid Examples"; + license = stdenv.lib.licenses.mit; + }) {}; + "fluent-logger" = callPackage ({ mkDerivation, attoparsec, base, bytestring, cereal , cereal-conduit, conduit, conduit-extra, containers, exceptions @@ -67745,8 +68536,8 @@ self: { }: mkDerivation { pname = "foldl-transduce"; - version = "0.4.4.0"; - sha256 = "241b200d8af92ec1011cd8c26fd2993372fd6699baf9e0588ee66b1840d96ba1"; + version = "0.4.5.0"; + sha256 = "a18a354ec6d8e7be3563ac400af331ff8d928a038b8ea7b3dc8c8e0bf5417564"; libraryHaskellDepends = [ base bifunctors bytestring comonad containers foldl free monoid-subclasses profunctors semigroupoids text transformers void @@ -68923,21 +69714,25 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "freenect" = callPackage + "freenect_1_2" = callPackage ({ mkDerivation, base, freenect, freenect_sync, vector }: mkDerivation { pname = "freenect"; version = "1.2"; sha256 = "afd0a04d4cea2740007bf04768a2a54002fa052153c28f5c6dceb76b41baef85"; + configureFlags = [ + "--extra-include-dirs=${pkgs.freenect}/include/libfreenect" + "--extra-lib-dirs=${pkgs.freenect}/lib" + ]; libraryHaskellDepends = [ base vector ]; librarySystemDepends = [ freenect freenect_sync ]; homepage = "https://github.com/chrisdone/freenect"; description = "Interface to the Kinect device"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) freenect; freenect_sync = null;}; - "freenect_1_2_1" = callPackage + "freenect" = callPackage ({ mkDerivation, base, freenect, freenect_sync, libfreenect, vector }: mkDerivation { @@ -68950,7 +69745,7 @@ self: { homepage = "https://github.com/chrisdone/freenect"; description = "Interface to the Kinect device"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) freenect; freenect_sync = null; libfreenect = null;}; @@ -69863,6 +70658,7 @@ self: { homepage = "https://github.com/tlaitinen/fuzzy-timings"; description = "Translates high-level definitions of \"fuzzily\" scheduled objects (e.g. play this commercial 10 times per hour between 9:00-13:00) to a list of accurately scheduled objects using glpk-hs."; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fuzzytime" = callPackage @@ -70269,6 +71065,30 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "gelatin" = callPackage + ({ mkDerivation, async, base, bytestring, containers, directory + , file-embed, FontyFruity, gl, GLFW-b, JuicyPixels, lens, linear + , time, vector + }: + mkDerivation { + pname = "gelatin"; + version = "0.0.0.3"; + sha256 = "181525849ef7b34b051906d333659623a1be4f981197ea185a0f3bfc60b63d1e"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + async base bytestring containers directory file-embed FontyFruity + gl GLFW-b JuicyPixels lens linear time vector + ]; + executableHaskellDepends = [ + async base bytestring containers directory file-embed FontyFruity + gl GLFW-b JuicyPixels lens linear time vector + ]; + description = "An experimental real time renderer"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "gemstone" = callPackage ({ mkDerivation, array, base, bitmap, bitmap-opengl, containers , FTGL, lens, linear, OpenGL, random, SDL, SDL-image, stb-image @@ -70991,6 +71811,30 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "geo-resolver" = callPackage + ({ mkDerivation, aeson, base, base64-bytestring, blaze-builder + , bytestring, http-conduit, http-types, HUnit, QuickCheck + , test-framework, test-framework-hunit, test-framework-quickcheck2 + , text, unordered-containers + }: + mkDerivation { + pname = "geo-resolver"; + version = "0.1.0.1"; + sha256 = "b877048487a553e2c0ab8f698ac90e5facb24169d5f0c8cc11f36131a837af1a"; + libraryHaskellDepends = [ + aeson base blaze-builder bytestring http-conduit http-types text + unordered-containers + ]; + testHaskellDepends = [ + base base64-bytestring bytestring HUnit QuickCheck test-framework + test-framework-hunit test-framework-quickcheck2 + ]; + homepage = "https://github.com/markenwerk/haskell-geo-resolver/"; + description = "Performs geo location lookups and parses the results"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "geocalc" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -71002,6 +71846,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "geocode-google" = callPackage + ({ mkDerivation, base, containers, hjson, HTTP, network + , network-uri + }: + mkDerivation { + pname = "geocode-google"; + version = "0.3"; + sha256 = "9dbdde3c68564bfaf4f1fd9844e9d1119eaef4833eaf6fd6348d9eb0c71cc468"; + libraryHaskellDepends = [ + base containers hjson HTTP network network-uri + ]; + homepage = "http://github.com/mrd/geocode-google"; + description = "Geocoding using the Google Web API"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "geodetic" = callPackage ({ mkDerivation, base, coordinate, directory, doctest, filepath , lens, optional, QuickCheck, radian, template-haskell @@ -71163,8 +72023,8 @@ self: { }: mkDerivation { pname = "getopt-generics"; - version = "0.11.0.1"; - sha256 = "b3f49f80af9e7eba12260f772c8b2b85cea4be80c7f33fc363c28f5f9d7f9eca"; + version = "0.11.0.2"; + sha256 = "d1d989bbf86df719c57cb01db59a554f3b07c475644dd3cecc48bfc29d885010"; libraryHaskellDepends = [ base base-compat base-orphans generics-sop tagged ]; @@ -71173,7 +72033,7 @@ self: { QuickCheck safe silently tagged ]; doCheck = false; - homepage = "https://github.com/zalora/getopt-generics#readme"; + homepage = "https://github.com/soenkehahn/getopt-generics#readme"; description = "Create command line interfaces with ease"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -71199,8 +72059,8 @@ self: { }: mkDerivation { pname = "gf"; - version = "3.7"; - sha256 = "cb9a44d216d77d60cd09175fbfeb20d0b53552ee9f8df5a53486e04b920ec08f"; + version = "3.7.1"; + sha256 = "150a9f40718689f7dafe962618a39066687b470dcc8aa6478cbe114a6a0094ab"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -71725,8 +72585,8 @@ self: { }: mkDerivation { pname = "ghc-pkg-lib"; - version = "0.3"; - sha256 = "aab46954ba339e617120eec0f2db5ff9bf008efcf7c50df0dd308658dcf056d4"; + version = "0.3.1"; + sha256 = "b3e106581e474cb32eb049bc8b49eedce82c8645b80fdf508a21d2c6ce5c7fce"; libraryHaskellDepends = [ base Cabal directory filepath ghc ghc-paths ]; @@ -71774,12 +72634,12 @@ self: { }) {}; "ghc-simple" = callPackage - ({ mkDerivation, base, ghc, ghc-paths }: + ({ mkDerivation, base, directory, filepath, ghc, ghc-paths }: mkDerivation { pname = "ghc-simple"; - version = "0.1.2.1"; - sha256 = "0e26fa3ba8693a3002668334dd6016286ac30aa137aa8784cfb29a5662d46342"; - libraryHaskellDepends = [ base ghc ghc-paths ]; + version = "0.1.3"; + sha256 = "1e33b4ca680b2444697961d9cb504531b7ce65c2a0143e07c75907408c4e7d38"; + libraryHaskellDepends = [ base directory filepath ghc ghc-paths ]; homepage = "https://github.com/valderman/ghc-simple"; description = "Simplified interface to the GHC API"; license = stdenv.lib.licenses.mit; @@ -72108,8 +72968,8 @@ self: { }: mkDerivation { pname = "ghcjs-dom"; - version = "0.2.1.0"; - sha256 = "a99e19252bb56f4dc56a3778d81af006ce1f403e770ec0bc3f1ff409a37a7e81"; + version = "0.2.2.0"; + sha256 = "f3093b809eb6bac841614261354e9e90135f9b25b121a2b4bf1f781387cc24e5"; libraryHaskellDepends = [ base glib gtk3 text transformers webkitgtk3 ]; @@ -72520,7 +73380,7 @@ self: { inherit (pkgs) perl; inherit (pkgs) rsync; inherit (pkgs) wget; inherit (pkgs) which;}; - "git-annex_5_20150916" = callPackage + "git-annex_5_20150930" = callPackage ({ mkDerivation, aeson, async, aws, base, blaze-builder , bloomfilter, bup, byteable, bytestring, case-insensitive , clientsession, conduit, conduit-extra, containers, crypto-api @@ -72541,8 +73401,8 @@ self: { }: mkDerivation { pname = "git-annex"; - version = "5.20150916"; - sha256 = "b6f00d6894eb50b469b1898d19f2e138666c732e8d003598dce85cd804f8fadd"; + version = "5.20150930"; + sha256 = "5544d0bdda452ba3ee36a3c0228d39cb3a6e26d96f60dd0886383e4b7ba73be5"; configureFlags = [ "-fassistant" "-fproduction" ]; isLibrary = false; isExecutable = true; @@ -74106,8 +74966,8 @@ self: { }: mkDerivation { pname = "glue-common"; - version = "0.4.3"; - sha256 = "3c0301fcce01da7db94fdb3b18465bdcdd941d47bafeea420c42c03a4b6d28c3"; + version = "0.4.5"; + sha256 = "41a041eb0d6e11e64ffdbb1a1c47d3ee859f921dc710041ed39537899acad80b"; libraryHaskellDepends = [ base hashable lifted-base monad-control text time transformers transformers-base unordered-containers @@ -74129,8 +74989,8 @@ self: { }: mkDerivation { pname = "glue-core"; - version = "0.4.3"; - sha256 = "1e9c6c917bc02d8fd3a6ac9559216f152aa3fe25f5bc80ec517994675efc7e94"; + version = "0.4.5"; + sha256 = "1f7cf0f3f2b0e7f309a3d40e70bf3e37641a3615f07281b59ca0aa1e30fc83b7"; libraryHaskellDepends = [ base glue-common hashable lifted-base monad-control text time transformers transformers-base unordered-containers @@ -74152,8 +75012,8 @@ self: { }: mkDerivation { pname = "glue-ekg"; - version = "0.4.3"; - sha256 = "13a4031b6053820e3b08969fa67977a8bcb607e9ca2072bd9baeab02655c0a0c"; + version = "0.4.5"; + sha256 = "94bc32dd0fa581d20933a3075a925141258fc42f080dd58279e7a347fe8b58ef"; libraryHaskellDepends = [ base ekg-core glue-common hashable lifted-base monad-control text time transformers transformers-base unordered-containers @@ -74174,8 +75034,8 @@ self: { }: mkDerivation { pname = "glue-example"; - version = "0.4.3"; - sha256 = "75a8d8e47acf938421fb6ba53bd9117c5405556e1db552cacec218fa7218d545"; + version = "0.4.5"; + sha256 = "8fbb89e9fb0531f6e397cec0d9ec3ecc49b58fc1ae630e71062155ed5586402f"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -74405,6 +75265,17 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "gooey" = callPackage + ({ mkDerivation, base, renderable, transformers, varying }: + mkDerivation { + pname = "gooey"; + version = "0.1.0.0"; + sha256 = "f224cc55134f260e9b5edd908f4534a41a2c47a63388c9b34022d58fe95e545a"; + libraryHaskellDepends = [ base renderable transformers varying ]; + description = "Graphical user interfaces that are renderable, change over time and eventually produce a value"; + license = stdenv.lib.licenses.mit; + }) {}; + "google-cloud" = callPackage ({ mkDerivation, aeson, base, bytestring, http-client , http-client-tls, http-types, mtl, random, scientific, stm, text @@ -75898,6 +76769,18 @@ self: { license = stdenv.lib.licenses.asl20; }) {}; + "grouped-list" = callPackage + ({ mkDerivation, base, containers, deepseq, pointed }: + mkDerivation { + pname = "grouped-list"; + version = "0.1.2.0"; + sha256 = "77aa60756373ca42065568fb5c57c8cb9b5f85e89ed3d35192b8df4c48ae390f"; + libraryHaskellDepends = [ base containers deepseq pointed ]; + homepage = "https://github.com/Daniel-Diaz/grouped-list/blob/master/README.md"; + description = "Grouped lists. Equal consecutive elements are grouped."; + license = stdenv.lib.licenses.bsd3; + }) {}; + "groupoid" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -75952,6 +76835,7 @@ self: { regex-compat text transformers transformers-base unordered-containers vector wai wai-extra warp ]; + doHaddock = false; homepage = "http://github.com/iand675/growler"; description = "A revised version of the scotty library that attempts to be simpler and more performant"; license = stdenv.lib.licenses.mit; @@ -78584,8 +79468,8 @@ self: { }: mkDerivation { pname = "haddocset"; - version = "0.4.0"; - sha256 = "dfecc6d53c74108f4ada154cd1593dc271cb0b715e2dfd6f4b17d01416147338"; + version = "0.4.1"; + sha256 = "b2e17cb5fc695b28cb036e524e1f58fce30953cf4f3de6fdac88e61142ae9c3e"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -79174,6 +80058,7 @@ self: { 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; @@ -79912,24 +80797,25 @@ self: { "happstack-authenticate" = callPackage ({ mkDerivation, acid-state, aeson, authenticate, base , base64-bytestring, boomerang, bytestring, containers - , data-default, filepath, happstack-hsp, happstack-jmacro - , happstack-server, hsp, hsx-jmacro, hsx2hs, http-conduit - , http-types, ixset-typed, jmacro, jwt, lens, mime-mail, mtl - , pwstore-purehaskell, random, safecopy, shakespeare, text, time - , unordered-containers, userid, web-routes, web-routes-boomerang - , web-routes-happstack, web-routes-hsp, web-routes-th + , data-default, email-validate, filepath, happstack-hsp + , happstack-jmacro, happstack-server, hsp, hsx-jmacro, hsx2hs + , http-conduit, http-types, ixset-typed, jmacro, jwt, lens + , mime-mail, mtl, pwstore-purehaskell, random, safecopy + , shakespeare, text, time, unordered-containers, userid, web-routes + , web-routes-boomerang, web-routes-happstack, web-routes-hsp + , web-routes-th }: mkDerivation { pname = "happstack-authenticate"; - version = "2.2.0"; - sha256 = "7093ae69b6be698102f87df7851eafbdeb830f55467083aea06bd8b11adf5078"; + version = "2.3.0"; + sha256 = "d459a80c7c54a05e31a803f200233bb491350099e04f2fb27567735fe0dfe9c2"; libraryHaskellDepends = [ acid-state aeson authenticate base base64-bytestring boomerang - bytestring containers data-default filepath happstack-hsp - happstack-jmacro happstack-server hsp hsx-jmacro hsx2hs - http-conduit http-types ixset-typed jmacro jwt lens mime-mail mtl - pwstore-purehaskell random safecopy shakespeare text time - unordered-containers userid web-routes web-routes-boomerang + bytestring containers data-default email-validate filepath + happstack-hsp happstack-jmacro happstack-server hsp hsx-jmacro + hsx2hs http-conduit http-types ixset-typed jmacro jwt lens + mime-mail mtl pwstore-purehaskell random safecopy shakespeare text + time unordered-containers userid web-routes web-routes-boomerang web-routes-happstack web-routes-hsp web-routes-th ]; homepage = "http://www.happstack.com/"; @@ -80362,7 +81248,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "happstack-server" = callPackage + "happstack-server_7_4_4" = callPackage ({ mkDerivation, base, base64-bytestring, blaze-html, bytestring , containers, directory, exceptions, extensible-exceptions , filepath, hslogger, html, HUnit, monad-control, mtl, network @@ -80389,6 +81275,36 @@ self: { homepage = "http://happstack.com"; description = "Web related tools and services"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "happstack-server" = callPackage + ({ mkDerivation, base, base64-bytestring, blaze-html, bytestring + , containers, directory, exceptions, extensible-exceptions + , filepath, hslogger, html, HUnit, monad-control, mtl, network + , network-uri, old-locale, parsec, process, sendfile, syb + , system-filepath, template-haskell, text, threads, time + , time-compat, transformers, transformers-base, transformers-compat + , unix, utf8-string, xhtml, zlib + }: + mkDerivation { + pname = "happstack-server"; + version = "7.4.5"; + sha256 = "704a11b50604e57bd960633a73baa77fe23993f41b35202a0e26f4af2f91dc96"; + libraryHaskellDepends = [ + base base64-bytestring blaze-html bytestring containers directory + exceptions extensible-exceptions filepath hslogger html + monad-control mtl network network-uri old-locale parsec process + sendfile syb system-filepath template-haskell text threads time + time-compat transformers transformers-base transformers-compat unix + utf8-string xhtml zlib + ]; + testHaskellDepends = [ + base bytestring containers HUnit parsec zlib + ]; + homepage = "http://happstack.com"; + description = "Web related tools and services"; + license = stdenv.lib.licenses.bsd3; }) {}; "happstack-server-tls" = callPackage @@ -81102,14 +82018,14 @@ self: { }: mkDerivation { pname = "hashabler"; - version = "1.0"; - sha256 = "fb778350f955188fd7348fc85e3709502432e7290e6cfd1799e3d65f51b982bf"; + version = "1.1"; + sha256 = "93944c783631977f3927db9b3888012325f72c5e4d90fba24055f4e3cc5ffaeb"; libraryHaskellDepends = [ array base bytestring ghc-prim integer-gmp primitive template-haskell text ]; homepage = "https://github.com/jberryman/hashabler"; - description = "Principled, cross-platform & extensible hashing of types, including an implementation of the FNV-1a and SipHash algorithms"; + description = "Principled, portable & extensible hashing of data and types, including an implementation of the FNV-1a and SipHash algorithms"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -81734,6 +82650,26 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "haskell-import-graph" = callPackage + ({ mkDerivation, base, classy-prelude, ghc, graphviz, process, text + , transformers + }: + mkDerivation { + pname = "haskell-import-graph"; + version = "1.0.0"; + sha256 = "af555336b7e734dae263e5f68b439d6c4234d7b2da493917fadfe132a7034dee"; + revision = "1"; + editedCabalFile = "4c2ba0b2c6d5649842b1f124e4183662cdc4db66810017775ce450cf84223d50"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base classy-prelude ghc graphviz process text transformers + ]; + executableHaskellDepends = [ base ]; + description = "create haskell import graph for graphviz"; + license = stdenv.lib.licenses.mit; + }) {}; + "haskell-in-space" = callPackage ({ mkDerivation, base, HGL, random }: mkDerivation { @@ -82268,7 +83204,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "haskell-src-meta" = callPackage + "haskell-src-meta_0_6_0_10" = callPackage ({ mkDerivation, base, haskell-src-exts, pretty, syb , template-haskell, th-orphans }: @@ -82281,9 +83217,10 @@ self: { ]; description = "Parse source to template-haskell abstract syntax"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "haskell-src-meta_0_6_0_11" = callPackage + "haskell-src-meta" = callPackage ({ mkDerivation, base, haskell-src-exts, pretty, syb , template-haskell, th-orphans }: @@ -82296,7 +83233,6 @@ self: { ]; description = "Parse source to template-haskell abstract syntax"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-src-meta-mwotton" = callPackage @@ -83009,7 +83945,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "haskintex" = callPackage + "haskintex_0_5_0_3" = callPackage ({ mkDerivation, base, binary, bytestring, containers, directory , filepath, haskell-src-exts, HaTeX, hint, parsec, process, text , transformers @@ -83028,6 +83964,50 @@ self: { homepage = "http://daniel-diaz.github.io/projects/haskintex"; description = "Haskell Evaluation inside of LaTeX code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "haskintex_0_5_1_0" = callPackage + ({ mkDerivation, base, binary, bytestring, containers, directory + , filepath, haskell-src-exts, HaTeX, hint, parsec, process, text + , transformers + }: + mkDerivation { + pname = "haskintex"; + version = "0.5.1.0"; + sha256 = "1c65a350e2cebce1117ce59fab5749ab7796cf36476e03c882f91cf7a46cb0df"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base binary bytestring containers directory filepath + haskell-src-exts HaTeX hint parsec process text transformers + ]; + executableHaskellDepends = [ base ]; + homepage = "http://daniel-diaz.github.io/projects/haskintex"; + description = "Haskell Evaluation inside of LaTeX code"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "haskintex" = callPackage + ({ mkDerivation, base, binary, bytestring, containers, directory + , filepath, haskell-src-exts, HaTeX, hint, parsec, process, text + , transformers + }: + mkDerivation { + pname = "haskintex"; + version = "0.6.0.0"; + sha256 = "229a817b9a688f23d2e394a7e76aff80973707df86fe628214577e863072914f"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base binary bytestring containers directory filepath + haskell-src-exts HaTeX hint parsec process text transformers + ]; + executableHaskellDepends = [ base ]; + homepage = "http://daniel-diaz.github.io/projects/haskintex"; + description = "Haskell Evaluation inside of LaTeX code"; + license = stdenv.lib.licenses.bsd3; }) {}; "haskmon" = callPackage @@ -83333,19 +84313,19 @@ self: { "haskore-synthesizer" = callPackage ({ mkDerivation, base, data-accessor, event-list, haskore , non-negative, numeric-prelude, random, synthesizer-core - , utility-ht + , synthesizer-filter, utility-ht }: mkDerivation { pname = "haskore-synthesizer"; - version = "0.0.3.1"; - sha256 = "c8d7fd1cfba21621c09bf6955523feeca308594f71f791f38869c87734b2ae2d"; + version = "0.0.3.2"; + sha256 = "071de904ab39fd812a25395b51fbb6991dc5e22a3b9d2213067a884c0e08f705"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base data-accessor event-list haskore non-negative numeric-prelude - random synthesizer-core utility-ht + random synthesizer-core synthesizer-filter utility-ht ]; - jailbreak = true; + executableHaskellDepends = [ base synthesizer-core utility-ht ]; homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Music rendering coded in Haskell"; license = "GPL"; @@ -83356,8 +84336,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "haskore-vintage"; - version = "0.2"; - sha256 = "d618cd63ca221c980b61fde864e8a024bfefba0318984d92a270c3b1fbd1f8b6"; + version = "0.3"; + sha256 = "0bd49a041c73292d195897a1e8a73713669b09b1a73f3e29251f72223da708ab"; libraryHaskellDepends = [ base ]; homepage = "http://haskell.org/haskore/"; description = "The February 2000 version of Haskore"; @@ -84208,8 +85188,8 @@ self: { }: mkDerivation { pname = "haste-compiler"; - version = "0.5.1.3"; - sha256 = "5413178f27e4519e80680aebe534db2576e983411af3bfb1c60d7c2c2f201e38"; + version = "0.5.2"; + sha256 = "26e5d5961717e1a9f1d2a41475f9d40ac180bba3eea0ee90e003420fe6fd7c54"; configureFlags = [ "-fportable" ]; isLibrary = true; isExecutable = true; @@ -84261,6 +85241,49 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "hastily" = callPackage + ({ mkDerivation, aeson, base, bytestring, concurrent-extra + , containers, directory, directory-tree, exceptions, filepath + , http-client, http-types, hxt, parsec, string-conversions, text + , unbounded-delays, zip-archive + }: + mkDerivation { + pname = "hastily"; + version = "0.1.0.6"; + sha256 = "d001119682dc0389bbac946793401209c7286a01d9b157fab638ac8fda78a72e"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring concurrent-extra containers directory + directory-tree exceptions filepath http-client http-types hxt + parsec string-conversions text unbounded-delays zip-archive + ]; + executableHaskellDepends = [ + base directory string-conversions text + ]; + testHaskellDepends = [ base ]; + homepage = "http://bitbucket.org/sras/hastily"; + description = "A program to download subtitle files"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "hasty-hamiltonian" = callPackage + ({ mkDerivation, ad, base, lens, mcmc-types, mwc-probability, pipes + , primitive, transformers + }: + mkDerivation { + pname = "hasty-hamiltonian"; + version = "1.1.2"; + sha256 = "479b6a4bf1d9a7af857b584178f75df5460c714f40a2777ebda6079a6c11a93d"; + libraryHaskellDepends = [ + base lens mcmc-types mwc-probability pipes primitive transformers + ]; + testHaskellDepends = [ ad base mwc-probability ]; + homepage = "http://jtobin.github.com/hasty-hamiltonian"; + description = "Speedy traversal through parameter space"; + license = stdenv.lib.licenses.mit; + }) {}; + "hat" = callPackage ({ mkDerivation, base, bytestring, containers, directory, filepath , haskeline, haskell-src-exts, old-locale, old-time, polyparse @@ -84290,13 +85313,12 @@ self: { }: mkDerivation { pname = "hatex-guide"; - version = "1.3.1.0"; - sha256 = "be8897c8872803219c52553df8aced434de03d63aef1a130e0cbcff446019187"; + version = "1.3.1.1"; + sha256 = "19bdc6cd223514e0066fa3d74f8a86817f756245838437e9ba4e50faedb21acd"; libraryHaskellDepends = [ base blaze-html directory filepath HaTeX parsec text time transformers ]; - jailbreak = true; description = "HaTeX User's Guide"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -84396,18 +85418,21 @@ self: { }) {}; "haxl" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, directory - , filepath, hashable, HUnit, pretty, text, time + ({ mkDerivation, aeson, base, bytestring, containers, deepseq + , directory, filepath, hashable, HUnit, pretty, text, time , unordered-containers, vector }: mkDerivation { pname = "haxl"; - version = "0.2.0.0"; - sha256 = "1e1f7fe8d102cb771203078e63715aa45ed704e8473b064cf79e13a04312cd8e"; + version = "0.3.0.0"; + sha256 = "0b2c1e6fc052a665ef6faef14ed38d0732c281a8cd7abb3fa99957955e09378b"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ - aeson base bytestring containers directory filepath hashable HUnit - pretty text time unordered-containers vector + aeson base bytestring containers deepseq directory filepath + hashable HUnit pretty text time unordered-containers vector ]; + executableHaskellDepends = [ base hashable time ]; testHaskellDepends = [ aeson base bytestring containers hashable HUnit text unordered-containers @@ -87113,14 +88138,16 @@ self: { }) {}; "hgrib" = callPackage - ({ mkDerivation, base, c2hs, directory, grib_api, hspec }: + ({ mkDerivation, base, c2hs, directory, grib_api, hspec + , transformers + }: mkDerivation { pname = "hgrib"; - version = "0.2.0.0"; - sha256 = "0a695a9e165053c5244ad92808025633cbe7d7950b67278902bcbc3fea34c7d8"; + version = "0.3.0.0"; + sha256 = "4580e6bf46970286bbcc7300791b03b02623a068ec7094acac6782ce7055db54"; isLibrary = true; isExecutable = true; - libraryHaskellDepends = [ base ]; + libraryHaskellDepends = [ base transformers ]; librarySystemDepends = [ grib_api ]; libraryToolDepends = [ c2hs ]; executableHaskellDepends = [ base ]; @@ -88575,19 +89602,25 @@ self: { }) {}; "hjsonschema" = callPackage - ({ mkDerivation, aeson, async, base, bytestring, directory - , file-embed, filepath, hashable, hjsonpointer, http-client - , http-types, HUnit, regexpr, scientific, test-framework - , test-framework-hunit, text, unordered-containers, vector - , wai-app-static, warp + ({ mkDerivation, aeson, async, base, bytestring, containers + , directory, file-embed, filepath, hashable, hjsonpointer + , http-client, http-types, HUnit, mtl, regexpr, scientific + , test-framework, test-framework-hunit, text, transformers + , unordered-containers, vector, wai-app-static, warp }: mkDerivation { pname = "hjsonschema"; - version = "0.6.0.2"; - sha256 = "343836f8062337a61b6db1fee79b663e673c6cce7d185f9ceed4b1c7a994a2ef"; + version = "0.7.0.0"; + sha256 = "aa9b7bcf14c7f6c02949ffb7348ec208142b82a6ac1a75fde754c7a3f70f5d86"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ - aeson base bytestring file-embed hashable hjsonpointer http-client - http-types regexpr scientific text unordered-containers vector + aeson base bytestring containers file-embed hashable hjsonpointer + http-client http-types mtl regexpr scientific text transformers + unordered-containers vector + ]; + executableHaskellDepends = [ + aeson base text unordered-containers vector ]; testHaskellDepends = [ aeson async base bytestring directory filepath HUnit test-framework @@ -88596,7 +89629,7 @@ self: { ]; jailbreak = true; homepage = "https://github.com/seagreen/hjsonschema"; - description = "JSON Schema Draft 4 library"; + description = "JSON Schema library"; license = stdenv.lib.licenses.mit; }) {}; @@ -88607,8 +89640,8 @@ self: { }: mkDerivation { pname = "hlatex"; - version = "0.3"; - sha256 = "041c0b03f3e1b247a82658474c199a55c75be5b338fa4f881ba63a4fb8a2680f"; + version = "0.3.1"; + sha256 = "1ea8a1097244818b694afd3f71aa2e56e8873b3019d3dcc973885be491a28d8e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -89712,6 +90745,25 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gsl;}; + "hmatrix-gsl-stats_0_4_1_2" = callPackage + ({ mkDerivation, base, binary, gsl, hmatrix, storable-complex + , vector + }: + mkDerivation { + pname = "hmatrix-gsl-stats"; + version = "0.4.1.2"; + sha256 = "af2694c1f7477faf4cae13f650c6953b3ecf6838b4a28eb8804ef30cee8bffb7"; + libraryHaskellDepends = [ + base binary hmatrix storable-complex vector + ]; + libraryPkgconfigDepends = [ gsl ]; + jailbreak = true; + homepage = "http://code.haskell.org/hmatrix-gsl-stats"; + description = "GSL Statistics interface"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) gsl;}; + "hmatrix-mmap" = callPackage ({ mkDerivation, base, hmatrix, mmap }: mkDerivation { @@ -91156,7 +92208,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hoogle" = callPackage + "hoogle_4_2_41" = callPackage ({ mkDerivation, aeson, array, base, binary, blaze-builder , bytestring, Cabal, case-insensitive, cmdargs, conduit, containers , deepseq, directory, filepath, haskell-src-exts, http-types @@ -91188,6 +92240,41 @@ self: { homepage = "http://www.haskell.org/hoogle/"; description = "Haskell API Search"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hoogle" = callPackage + ({ mkDerivation, aeson, array, base, binary, blaze-builder + , bytestring, Cabal, case-insensitive, cmdargs, conduit, containers + , deepseq, directory, filepath, haskell-src-exts, http-types + , old-locale, parsec, process, QuickCheck, random, resourcet, safe + , shake, tagsoup, temporary, text, time, transformers, uniplate + , unix, vector, vector-algorithms, wai, warp + }: + mkDerivation { + pname = "hoogle"; + version = "4.2.42"; + sha256 = "32ed4637d53fe1c0ee032e3692b74a4a0bb5d38d30b302450631aa6f6805dccb"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base binary blaze-builder bytestring case-insensitive conduit + containers deepseq directory filepath haskell-src-exts http-types + parsec process QuickCheck random resourcet safe text transformers + uniplate unix vector vector-algorithms wai + ]; + executableHaskellDepends = [ + aeson array base binary blaze-builder bytestring Cabal + case-insensitive cmdargs conduit containers deepseq directory + filepath haskell-src-exts http-types old-locale parsec process + QuickCheck random resourcet safe shake tagsoup text time + transformers uniplate unix vector vector-algorithms wai warp + ]; + testHaskellDepends = [ base directory filepath process temporary ]; + doCheck = false; + homepage = "http://www.haskell.org/hoogle/"; + description = "Haskell API Search"; + license = stdenv.lib.licenses.bsd3; }) {}; "hoogle-index" = callPackage @@ -91483,27 +92570,29 @@ self: { "hops" = callPackage ({ mkDerivation, aeson, ansi-terminal, attoparsec, base, bytestring , conduit, conduit-extra, containers, deepseq, directory, filepath - , http-conduit, http-types, optparse-applicative, parallel - , QuickCheck, text, transformers, vector + , http-conduit, http-types, optparse-applicative, parallel, process + , QuickCheck, resourcet, text, transformers, vector }: mkDerivation { pname = "hops"; - version = "0.1.0"; - sha256 = "8524715071acfa0d7f1724b565e50ba5ccd11f395b3aec07b9c8cfae5c8115eb"; + version = "0.1.3"; + sha256 = "3a87efb934782a3769e7daf79ff5252bae58359701a8d1f829ce83a7436bcb13"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ aeson ansi-terminal attoparsec base bytestring conduit conduit-extra containers deepseq directory filepath http-conduit - http-types optparse-applicative parallel text transformers vector + http-types optparse-applicative parallel resourcet text + transformers vector ]; testHaskellDepends = [ - aeson attoparsec base bytestring containers deepseq QuickCheck text - vector + aeson attoparsec base bytestring containers deepseq process + QuickCheck text vector ]; homepage = "http://github.com/akc/hops"; - description = "Hackable Operations on Power Series"; + description = "Handy Operations on Power Series"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoq" = callPackage @@ -92038,8 +93127,8 @@ self: { }: mkDerivation { pname = "hpc-coveralls"; - version = "1.0.1"; - sha256 = "9fad1644415319762d298bcacd2e4d6f17c4b19e53025f4ba583f7ebbec27b6a"; + version = "1.0.2"; + sha256 = "e2ee0a3ac6bf15d772eea39b49e57c17de4b8e1e2312e87adc915a545a513e12"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -92165,8 +93254,8 @@ self: { }: mkDerivation { pname = "hpqtypes"; - version = "1.4.2"; - sha256 = "730e64ec84a848b31463ca2292ac3834f0ebe9c7f0fc269c85b5c577483dac4a"; + version = "1.4.3"; + sha256 = "7cacff688476d271f7ad9515d44a612f8c15e5e731e1eb9f9cb50e06cb5ae67f"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -92506,8 +93595,8 @@ self: { }: mkDerivation { pname = "hreader"; - version = "1.0.0"; - sha256 = "5562a53657c7b694fa68df13b15c9357521509d8d97b5ae19d96dc02dabf858a"; + version = "1.0.1"; + sha256 = "b642861d73193a7865fdeb006c8b36a8ba7cef83d83ba5e7922c3fbb4c26a417"; libraryHaskellDepends = [ base exceptions hset mmorph monad-control mtl tagged transformers-base @@ -94270,6 +95359,28 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) blas; inherit (pkgs) gsl; lapack = null;}; + "hsignal_0_2_7_2" = callPackage + ({ mkDerivation, array, base, binary, blas, bytestring, gsl + , hmatrix, hmatrix-gsl, hmatrix-gsl-stats, hstatistics, lapack, mtl + , storable-complex, vector + }: + mkDerivation { + pname = "hsignal"; + version = "0.2.7.2"; + sha256 = "287c864a0e375f9ebbfa52d5c0be13e94441cdb4b2c56f8105bef60426192934"; + libraryHaskellDepends = [ + array base binary bytestring hmatrix hmatrix-gsl hmatrix-gsl-stats + hstatistics mtl storable-complex vector + ]; + librarySystemDepends = [ blas lapack ]; + libraryPkgconfigDepends = [ gsl ]; + jailbreak = true; + 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;}; + "hsilop" = callPackage ({ mkDerivation, base, directory, filepath, haskeline, xdg-basedir }: @@ -95067,8 +96178,8 @@ self: { ({ mkDerivation, base, checkers, hspec }: mkDerivation { pname = "hspec-checkers"; - version = "0.1.0"; - sha256 = "cd4ceeed2d9b46f42d440914814162657264e541ad25232ae609b274e5fb7810"; + version = "0.1.0.1"; + sha256 = "9703ad134d1711b17301d760cebc36814c48a0e4e5712590514c93e6ec278dab"; libraryHaskellDepends = [ base checkers hspec ]; testHaskellDepends = [ base checkers hspec ]; description = "Allows to use checkers properties from hspec"; @@ -95793,8 +96904,8 @@ self: { }: mkDerivation { pname = "hspec-snap"; - version = "0.3.3.1"; - sha256 = "f29f569b422f95874cf1b69729c51cc5f6b40a5b202577b11d9e49097e237051"; + version = "0.4.0.0"; + sha256 = "8d18b945ce092f3848387099f2766d064d1815489a36518fe36f6f0efeab7d86"; libraryHaskellDepends = [ aeson base bytestring containers digestive-functors HandsomeSoup hspec hspec-core hxt lens mtl snap snap-core text transformers @@ -96182,6 +97293,7 @@ self: { libraryHaskellDepends = [ base exceptions hsqml-datamodel type-list vinyl ]; + jailbreak = true; homepage = "https://github.com/marcinmrotek/hsqml-datamodel-vinyl"; description = "HsQML DataModel instances for Vinyl Rec"; license = stdenv.lib.licenses.bsd3; @@ -96356,6 +97468,24 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "hstatistics_0_2_5_3" = callPackage + ({ mkDerivation, array, base, hmatrix, hmatrix-gsl-stats, random + , vector + }: + mkDerivation { + pname = "hstatistics"; + version = "0.2.5.3"; + sha256 = "d8a8bf9dcf6bd25ac5ca695ec1c4fc198310411cc87ab2a23ffe1d9116812a2d"; + libraryHaskellDepends = [ + array base hmatrix hmatrix-gsl-stats random vector + ]; + jailbreak = true; + homepage = "http://code.haskell.org/hstatistics"; + description = "Statistics"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hstats" = callPackage ({ mkDerivation, base, haskell98 }: mkDerivation { @@ -97097,6 +98227,23 @@ self: { license = "unknown"; }) {}; + "http-api-data" = callPackage + ({ mkDerivation, base, bytestring, doctest, Glob, hspec, HUnit + , QuickCheck, text, time + }: + mkDerivation { + pname = "http-api-data"; + version = "0.2.1"; + sha256 = "856138d79945770cdb4b522f58893a1c45014d39238cfc5b2eceeac089c56f71"; + libraryHaskellDepends = [ base bytestring text time ]; + testHaskellDepends = [ + base doctest Glob hspec HUnit QuickCheck text time + ]; + homepage = "http://github.com/fizruk/http-api-data"; + description = "Converting to/from HTTP API data like URL pieces, headers and query parameters"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "http-attoparsec" = callPackage ({ mkDerivation, attoparsec, base, bytestring, http-types }: mkDerivation { @@ -98329,8 +99476,8 @@ self: { pname = "http-listen"; version = "0.1.0.0"; sha256 = "e0eb0bb8898084fe07ddead700e42de294f70b6a62ee4c2e3c9c3d4b3f2595b1"; - revision = "1"; - editedCabalFile = "3fcb0a5c155c41513cf81c4cd5058be331d56aed083a3f42892feef452a0cd8b"; + revision = "2"; + editedCabalFile = "968de91e5c6c468a62f8f5bff6b465dea5fcd0d33b024dc81df1a9cea9beb2ef"; libraryHaskellDepends = [ base bytestring exceptions HTTP network transformers ]; @@ -98654,6 +99801,28 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "http-types_0_9" = callPackage + ({ mkDerivation, array, base, blaze-builder, bytestring + , case-insensitive, doctest, hspec, QuickCheck + , quickcheck-instances, text + }: + mkDerivation { + pname = "http-types"; + version = "0.9"; + sha256 = "8ca1cf90c21cad08abbef979f7248729709be908d96ad3bdd070ea529f2cc15b"; + libraryHaskellDepends = [ + array base blaze-builder bytestring case-insensitive text + ]; + testHaskellDepends = [ + base blaze-builder bytestring doctest hspec QuickCheck + quickcheck-instances text + ]; + homepage = "https://github.com/aristidb/http-types"; + description = "Generic HTTP types for Haskell (for both client and server code)"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "http-wget" = callPackage ({ mkDerivation, base, failure, process, transformers }: mkDerivation { @@ -101504,8 +102673,8 @@ self: { }: mkDerivation { pname = "ig"; - version = "0.5.1"; - sha256 = "1e97b3de79b9d78b32b74dbb1ab70451f7be544979fee90fb61d099b992b60e8"; + version = "0.6.1"; + sha256 = "ae2e0da4ebd3be77aac665b822191f0e4704d70cb9a73f2044494ea7f76065fe"; libraryHaskellDepends = [ aeson base base16-bytestring bytestring conduit conduit-extra crypto-api cryptohash cryptohash-cryptoapi data-default @@ -101938,8 +103107,8 @@ self: { }: mkDerivation { pname = "ihaskell-widgets"; - version = "0.2.2.0"; - sha256 = "38340ba45242b1088cd651e404a0c385b4379cefaa4b989e76f4bd87bd9f806a"; + version = "0.2.2.1"; + sha256 = "c085e47379547e61009d9ffc2c48f2b038a7bbd55d537e328d0e2cb064cf12d9"; libraryHaskellDepends = [ aeson base containers ihaskell ipython-kernel nats scientific singletons text unix unordered-containers vector vinyl @@ -102253,6 +103422,8 @@ self: { pname = "implicit"; version = "0.0.5"; sha256 = "aa5a5de53ad25517a9ce044c21572f42262e537c848a81fd2be5b32c88d2fc9e"; + revision = "1"; + editedCabalFile = "9f5c887aaa0c834171243bf2acdc5e6234e124c3ee3f55c8c10ce37a7690500a"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -102956,8 +104127,8 @@ self: { }: mkDerivation { pname = "inline-r"; - version = "0.7.1.0"; - sha256 = "d8918d1bb0d0feec2cc307d54a1e31a29ec61af0de3dabef21d13f894f5134fe"; + version = "0.7.1.2"; + sha256 = "0f3eeece3cb0f37243051fb05205bdecf61ce83a7bcbac6b8d2ca4ea8491f6c7"; libraryHaskellDepends = [ aeson base bytestring data-default-class deepseq exceptions mtl pretty primitive process setenv singletons template-haskell text @@ -103476,8 +104647,8 @@ self: { }: mkDerivation { pname = "intricacy"; - version = "0.5.7.1"; - sha256 = "b3fa9f8e1046cf3a967cd3d920d4cab5c959a010bd5048ccd19e1596b9e5c72a"; + version = "0.5.7.2"; + sha256 = "50482ec337ab24992a46e92df1263da65b7f1b2eb84f563de5f41d56f96a952a"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -103870,12 +105041,12 @@ self: { }) {inherit (pkgs) ipopt; nlopt = null;}; "ipprint" = callPackage - ({ mkDerivation, base, Extra, haskell-src }: + ({ mkDerivation, base, haskell-src, sr-extra }: mkDerivation { pname = "ipprint"; - version = "0.5"; - sha256 = "fac880daba0438acf1f1e9709edd37bd9d52548d1a0341cbdddf2eba8298e540"; - libraryHaskellDepends = [ base Extra haskell-src ]; + version = "0.6"; + sha256 = "1a241f79219fe0daac1b4c61d4fa14f2c8fd8a8bf5b9cd8e4f80d206bca3a823"; + libraryHaskellDepends = [ base haskell-src sr-extra ]; description = "Tiny helper for pretty-printing values in ghci console"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -104212,6 +105383,8 @@ self: { pname = "irc-fun-bot"; version = "0.3.0.0"; sha256 = "e6c6bb7419a53a778509d2e6d5366ab0c39910eceb8a36c6362663cdb25578a1"; + revision = "1"; + editedCabalFile = "472f2848b9c1c427b795970225b1c543f0588738a557376c6ea39353154067d3"; libraryHaskellDepends = [ aeson base fast-logger irc-fun-client irc-fun-messages json-state time time-interval time-units transformers unordered-containers @@ -104231,6 +105404,8 @@ self: { pname = "irc-fun-client"; version = "0.2.0.0"; sha256 = "032c59b494afa94637db7e7bc2257fa210527e4336279dd988647fbbec449b74"; + revision = "1"; + editedCabalFile = "52e1944cad0fdf0ba4ba1451bc81f55594a69b0a60df9c51115caa41bc5d6a87"; libraryHaskellDepends = [ auto-update base fast-logger irc-fun-messages network time time-units unordered-containers @@ -104246,6 +105421,8 @@ self: { pname = "irc-fun-color"; version = "0.1.0.1"; sha256 = "8b87a8c9e6325f6185b42c213bc56aa8bee080f20ef1fdf53c1c8b26031bf088"; + revision = "1"; + editedCabalFile = "91737e98e11349079179790b93588c5c52a6ef31eb96bf4dfc99eb7672b96696"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base ]; homepage = "http://rel4tion.org/projects/irc-fun-color/"; @@ -104259,6 +105436,8 @@ self: { pname = "irc-fun-messages"; version = "0.1.0.1"; sha256 = "8e011e44267849f81b2bb703aa2174bfc89fe6b5bb1b0b26baf5fdb113015ed8"; + revision = "1"; + editedCabalFile = "490742d798d69af070467e0e29ffd06fc05fd90041a6ae0cfa1f2f13a844fb71"; libraryHaskellDepends = [ base regex-applicative ]; homepage = "http://rel4tion.org/projects/irc-fun-messages/"; description = "Types and functions for working with the IRC protocol"; @@ -106500,6 +107679,7 @@ self: { aeson aeson-utils attoparsec base bytestring generic-aeson tasty tasty-hunit tasty-th text vector ]; + jailbreak = true; description = "Types and type classes for defining JSON schemas"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -106515,8 +107695,8 @@ self: { pname = "json-schema"; version = "0.7.4.0"; sha256 = "c549fa4b199efcd885334538cfa15cc77226a1c9c9afa30f5867d75b79d2701c"; - revision = "2"; - editedCabalFile = "7c40fcd8bc0386dde997f9b635d1f0c8d8251f38ce7b83c161235861fdb06e04"; + revision = "3"; + editedCabalFile = "931eff6aa28ef1dd184dd7a30ced84233b07da7293597875cb4bb812bc7a4699"; libraryHaskellDepends = [ aeson base containers generic-aeson generic-deriving mtl scientific text time unordered-containers vector @@ -106554,6 +107734,8 @@ self: { pname = "json-state"; version = "0.1.0.0"; sha256 = "852fe9fd9fb43c281faff5a33854639bf34daee81cf9ce76bb14192bbefc29db"; + revision = "1"; + editedCabalFile = "8cc980c70a4afc20585413ec8894673f768b80911ec864386ef8c6c3c0d7505a"; libraryHaskellDepends = [ aeson aeson-pretty base bytestring libgit time-units ]; @@ -107639,6 +108821,8 @@ self: { pname = "keter"; version = "1.3.6"; sha256 = "e9c4b16fc6dca967a6a10c82c5f5c89900df10e27f93316d1a730ef9d523e301"; + revision = "2"; + editedCabalFile = "793f63a47c529acca895b3ca0225b2058f6175cb83af62c169267e62f6c28f60"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -107680,6 +108864,8 @@ self: { pname = "keter"; version = "1.3.7"; sha256 = "a0710bf072a8829f5e696a6cf760554b26006d520f311ae29a53bf46e96f98c3"; + revision = "3"; + editedCabalFile = "97b84a04bdbef02b95c502f4a4e27791dc3a6e10f40a4797cf267311be1c6875"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -107721,6 +108907,8 @@ self: { pname = "keter"; version = "1.3.7.1"; sha256 = "003ce327d5b8ce407df901b46a99a37109b2ce14d6f51e50212130ba5ed9843e"; + revision = "3"; + editedCabalFile = "a534637676d741ad4b3a5c0ba745df72206f16008e52ed037cc7de8cb4db2556"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -107762,6 +108950,8 @@ self: { pname = "keter"; version = "1.3.8"; sha256 = "fc985c21edd9d3298849e1036e9a8784ac96aa3d5a6ec244b34593a6d08c4884"; + revision = "1"; + editedCabalFile = "75776bcb557bb2a5c622731a009bd8058706f36b5207ae3cfdcd9412ad406099"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -107800,6 +108990,8 @@ self: { pname = "keter"; version = "1.3.9.1"; sha256 = "e9bd0bb381193e383e7b382fc55945daead888148d3b84301198649fe471062d"; + revision = "1"; + editedCabalFile = "80fca9788f8694510909a239f3ad8902645527b6b84c81ae10c198d8cc6981c4"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -107838,6 +109030,8 @@ self: { pname = "keter"; version = "1.3.9.2"; sha256 = "99c8cfff445a4f4a99290170aba0afd81da687519c056b0b3326f9c626d3b0b0"; + revision = "1"; + editedCabalFile = "8fca5e98766f971e19a05cf3b562ba18da55c32a0a741f7555a385e1315266fd"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -107876,6 +109070,8 @@ self: { pname = "keter"; version = "1.3.10.1"; sha256 = "f9e87d84a3a205a69c5ca4b6cc208eb4f1af299f5e589c26b5b89722c0031eaf"; + revision = "1"; + editedCabalFile = "fa11261e1f473e74ad0108acefbc16c23b4dd484d7e4b019a3e4d43312bb778e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -108701,6 +109897,7 @@ self: { sha256 = "3d7c49e9598f14711518a2dc0c420c42246c64ea8ad92fe340845dcabf7b0bb9"; libraryHaskellDepends = [ base servant ]; testHaskellDepends = [ base servant tasty tasty-hspec ]; + jailbreak = true; description = "A library for generating Ruby consumers of Servant APIs"; license = stdenv.lib.licenses.mit; }) {}; @@ -109625,7 +110822,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "language-c-quote" = callPackage + "language-c-quote_0_11_0_1" = callPackage ({ mkDerivation, alex, array, base, bytestring, containers , exception-mtl, exception-transformers, filepath, happy , haskell-src-meta, HUnit, mainland-pretty, mtl, srcloc, syb @@ -109649,6 +110846,7 @@ self: { homepage = "http://www.cs.drexel.edu/~mainland/"; description = "C/CUDA/OpenCL/Objective-C quasiquoting library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-c-quote_0_11_2" = callPackage @@ -109671,12 +110869,39 @@ self: { base bytestring HUnit mainland-pretty srcloc symbol test-framework test-framework-hunit ]; + doCheck = false; homepage = "http://www.cs.drexel.edu/~mainland/"; description = "C/CUDA/OpenCL/Objective-C quasiquoting library"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "language-c-quote" = callPackage + ({ mkDerivation, alex, array, base, bytestring, containers + , exception-mtl, exception-transformers, filepath, happy + , haskell-src-meta, HUnit, mainland-pretty, mtl, srcloc, syb + , symbol, template-haskell, test-framework, test-framework-hunit + }: + mkDerivation { + pname = "language-c-quote"; + version = "0.11.2.1"; + sha256 = "4bdb018f8a1baff09c079290ab486f25c09c8b043815e8c218079f028e95d464"; + libraryHaskellDepends = [ + array base bytestring containers exception-mtl + exception-transformers filepath haskell-src-meta mainland-pretty + mtl srcloc syb symbol template-haskell + ]; + libraryToolDepends = [ alex happy ]; + testHaskellDepends = [ + base bytestring HUnit mainland-pretty srcloc symbol test-framework + test-framework-hunit + ]; + doCheck = false; + homepage = "http://www.cs.drexel.edu/~mainland/"; + description = "C/CUDA/OpenCL/Objective-C quasiquoting library"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "language-cil" = callPackage ({ mkDerivation, base, bool-extras }: mkDerivation { @@ -110077,6 +111302,8 @@ self: { pname = "language-kort"; version = "0.1.0.0"; sha256 = "2082166bcf06325d23fb221b84756216a0efdf67e9bd1faf9cdb417048fb1936"; + revision = "1"; + editedCabalFile = "970931caa4cb222825b70791198b4adc27877dbab25f0fb912348556e347fbf7"; libraryHaskellDepends = [ base base64-bytestring bytestring random razom-text-util regex-applicative smaoin text text-position utf8-string @@ -110091,19 +111318,21 @@ self: { }) {}; "language-lua" = callPackage - ({ mkDerivation, alex, array, base, deepseq, directory, filepath - , mtl, parsec, QuickCheck, safe, tasty, tasty-hunit + ({ mkDerivation, alex, array, base, bytestring, deepseq, directory + , filepath, mtl, parsec, QuickCheck, tasty, tasty-hunit , tasty-quickcheck }: mkDerivation { pname = "language-lua"; - version = "0.7.1"; - sha256 = "5ac29f90ceca0b1b6c3a3d609e37a97cd64350ce0fd71f1daa196fa0d5d12b12"; - libraryHaskellDepends = [ array base deepseq mtl parsec safe ]; + version = "0.8.0"; + sha256 = "cad8b47b43b66082d8f22f9658620275e6c2edb4714c2f83eed115309c7003ab"; + libraryHaskellDepends = [ + array base bytestring deepseq mtl parsec + ]; libraryToolDepends = [ alex ]; testHaskellDepends = [ - base deepseq directory filepath parsec QuickCheck tasty tasty-hunit - tasty-quickcheck + base bytestring deepseq directory filepath parsec QuickCheck tasty + tasty-hunit tasty-quickcheck ]; homepage = "http://github.com/osa1/language-lua"; description = "Lua parser and pretty-printer"; @@ -110128,15 +111357,15 @@ self: { }) {}; "language-lua2" = callPackage - ({ mkDerivation, base, containers, Earley, lexer-applicative - , microlens, optparse-applicative, QuickCheck, regex-applicative - , semigroups, srcloc, tasty, tasty-hunit, tasty-quickcheck - , transformers, unordered-containers, wl-pprint + ({ mkDerivation, base, containers, deepseq, Earley + , lexer-applicative, microlens, optparse-applicative, QuickCheck + , regex-applicative, semigroups, srcloc, tasty, tasty-hunit + , tasty-quickcheck, transformers, unordered-containers, wl-pprint }: mkDerivation { pname = "language-lua2"; - version = "0.1.0.3"; - sha256 = "f375d752b3100a5cf2afa3238ba6a3fac5311af3e937e3f988c569de319aa009"; + version = "0.1.0.4"; + sha256 = "3d5e92e4ec4b096cb44432fc7e2ee2620470c4912c3fd85e30b07a7b834c422b"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -110148,9 +111377,10 @@ self: { base Earley lexer-applicative optparse-applicative srcloc wl-pprint ]; testHaskellDepends = [ - base lexer-applicative QuickCheck semigroups srcloc tasty + base deepseq lexer-applicative QuickCheck semigroups srcloc tasty tasty-hunit tasty-quickcheck unordered-containers ]; + doCheck = false; homepage = "http://github.com/mitchellwrosen/language-lua2"; description = "Lua parser and pretty printer"; license = stdenv.lib.licenses.bsd3; @@ -110341,19 +111571,22 @@ self: { }) {}; "language-qux" = callPackage - ({ mkDerivation, base, containers, either, indents, mtl, parsec - , pretty, transformers + ({ mkDerivation, base, containers, either, indents + , llvm-general-pure, mtl, parsec, pretty, transformers }: mkDerivation { pname = "language-qux"; - version = "0.1.1.3"; - sha256 = "22e3263cbd3895e78739c650e7731b92a9de7c6894a8fc3defcd09994997477b"; + version = "0.2.0.0"; + sha256 = "1214e38b1ce62f40f43982667d61ccb3f9419f9854008d0d34910f285801ca75"; libraryHaskellDepends = [ - base containers either indents mtl parsec pretty transformers + base containers either indents llvm-general-pure mtl parsec pretty + transformers ]; + jailbreak = true; homepage = "https://github.com/qux-lang/language-qux"; description = "Utilities for working with the Qux language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-sh" = callPackage @@ -110579,6 +111812,8 @@ self: { pname = "lattices"; version = "1.3"; sha256 = "74dc2a60eb0dc6118881c7b8c97443d1ea48790a223a0ad44c2ec717601ee6ca"; + revision = "1"; + editedCabalFile = "614ea39ee90b5f3bc38f4af7dc823f886391f485a6e20b7d83f082b73e94a79e"; libraryHaskellDepends = [ base containers deepseq hashable unordered-containers ]; @@ -111623,8 +112858,8 @@ self: { }: mkDerivation { pname = "lentil"; - version = "0.1.5.0"; - sha256 = "53696cfa436faf5189031ca979f41bbbdd54c2cf9ead432510f6d532d44c8d8f"; + version = "0.1.6.2"; + sha256 = "1b2861d7a4d8ad0f25e68420e93a81ba4cda43ce1065f2dec0af47d4018f4f48"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -112359,6 +113594,8 @@ self: { pname = "libravatar"; version = "0.1.0.1"; sha256 = "a58713664cab79ddc03c4faa92175a81fe179b51b852ce46570486cb3bb42d03"; + revision = "1"; + editedCabalFile = "decdd92e332caef49c016d1779e401dc3288b753e73317d639e279a8048a766d"; libraryHaskellDepends = [ base bytestring crypto-api dns network-uri pureMD5 random SHA url utf8-string @@ -113105,6 +114342,8 @@ self: { pname = "linear"; version = "1.20.2"; sha256 = "c9ce0cba74beb9ab59cf9790772e5b01d2786b452099e5831d218371565ec4fe"; + revision = "1"; + editedCabalFile = "2c0ce2199aec2dd1e7536514351398d00def727e21bdac1fe54b05059fef7c49"; libraryHaskellDepends = [ adjunctions base binary bytes cereal containers deepseq distributive ghc-prim hashable lens reflection semigroupoids @@ -113115,6 +114354,7 @@ 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; @@ -113248,8 +114488,8 @@ self: { ({ mkDerivation, base, containers, ghc-prim, mtl, transformers }: mkDerivation { pname = "linearscan"; - version = "0.11"; - sha256 = "436317b4faf5497aa0c9488ba987a72aff1a899dc32198dc9154572416ad8276"; + version = "0.11.1"; + sha256 = "6aac36c68cc657eb33d38fce6b789112a26c33a6b107aab63ca724f254c6e3d6"; libraryHaskellDepends = [ base containers ghc-prim mtl transformers ]; @@ -113355,6 +114595,7 @@ self: { base containers deepseq hashable mtl tasty tasty-hunit unordered-containers ]; + jailbreak = true; homepage = "https://github.com/abasko/linkedhashmap"; description = "Persistent LinkedHashMap data structure"; license = stdenv.lib.licenses.bsd3; @@ -113749,6 +114990,7 @@ self: { sha256 = "57a299acdfdeceee0d5014dc670a9d323f4f8a23b2b882f926e656cb978155b6"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base tasty tasty-hunit ]; + jailbreak = true; description = "testing list fusion for success"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -114380,8 +115622,8 @@ self: { }: mkDerivation { pname = "llvm-general"; - version = "3.4.5.4"; - sha256 = "408651d34718217450af77551b641d44713dbf4b2bff6e77b67f3fc537ecd1fd"; + version = "3.5.1.0"; + sha256 = "7c6a6634abeb541c1fea59b34743dfb37b71f92359b0d481e50f962486f99da4"; libraryHaskellDepends = [ array base bytestring containers llvm-general-pure mtl parsec setenv template-haskell transformers transformers-compat @@ -114401,17 +115643,16 @@ self: { "llvm-general-pure" = callPackage ({ mkDerivation, base, containers, HUnit, mtl, parsec, QuickCheck , setenv, template-haskell, test-framework, test-framework-hunit - , test-framework-quickcheck2, transformers, transformers-compat + , test-framework-quickcheck2, transformers }: mkDerivation { pname = "llvm-general-pure"; - version = "3.4.5.4"; - sha256 = "c54ab339f99284222bca1f8e56db701d2981eaf02728529476b818190671844d"; + version = "3.5.0.0"; + sha256 = "612d2e40ea69da99940357d88098ef30f1eaf8eda18a2f084fc300f097a3d2f8"; revision = "1"; - editedCabalFile = "e8c807d23766b51761a9e039e6e6ae4d0a155f1c4054fbe81eddd9f66fb5dd4c"; + editedCabalFile = "64ab5cdad51aaff9fcb168afee8ef6602287e8ee24c156564adc1adfd7ad1119"; libraryHaskellDepends = [ base containers mtl parsec setenv template-haskell transformers - transformers-compat ]; testHaskellDepends = [ base containers HUnit mtl QuickCheck test-framework @@ -114981,8 +116222,8 @@ self: { ({ mkDerivation, array, base }: mkDerivation { pname = "logfloat"; - version = "0.13.3.2"; - sha256 = "8cc0c32d0023ec9c51dc5ef2a5b5a300d136532745e022f0c8fa251c774f4c24"; + version = "0.13.3.3"; + sha256 = "f774bd71d82ae053046ab602aa451ce4f65440d5c634dc8d950ae87f53527f82"; libraryHaskellDepends = [ array base ]; homepage = "http://code.haskell.org/~wren/"; description = "Log-domain floating point numbers"; @@ -115840,8 +117081,8 @@ self: { }: mkDerivation { pname = "luminance"; - version = "0.2"; - sha256 = "163626dc33eaa222bae322474c92789532f2571583dca46a74df75aa520bb0d3"; + version = "0.3.1.1"; + sha256 = "7b4339e714601dcf1cd52e5d2bdcd22f949f3935de4f3bd2d574ebf9c021c1cb"; libraryHaskellDepends = [ base contravariant gl mtl resourcet semigroups transformers void ]; @@ -115856,8 +117097,8 @@ self: { }: mkDerivation { pname = "luminance-samples"; - version = "0.2.0.1"; - sha256 = "9403989d8d641450b54d698e4e55a6ac601e196a67011c18e70e2ebefb1d19bc"; + version = "0.3"; + sha256 = "fa4b87f4c49815f0d8335303c35e3f71b13de5c6dcc156d40b820bc8713bee89"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -116024,6 +117265,7 @@ self: { testHaskellDepends = [ base bytestring HUnit QuickCheck tasty tasty-hunit tasty-quickcheck ]; + jailbreak = true; homepage = "https://github.com/hvr/lzma"; description = "LZMA/XZ compression and decompression"; license = stdenv.lib.licenses.bsd3; @@ -116034,8 +117276,8 @@ self: { ({ mkDerivation, only-buildable-on-windows }: mkDerivation { pname = "lzma-clib"; - version = "5.2.1"; - sha256 = "51f0e8ea4679f80d3c22b6fbf022062b7ac12b4d6b1e6b0f938194ca9a88adcc"; + version = "5.2.2"; + sha256 = "0aed9cb8ef3a2b0e71c429b00161ee3fb342cce2603ccb934f507fb236a09fd5"; libraryHaskellDepends = [ only-buildable-on-windows ]; doHaddock = false; jailbreak = true; @@ -116693,7 +117935,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "mainland-pretty" = callPackage + "mainland-pretty_0_4_1_0" = callPackage ({ mkDerivation, base, containers, srcloc, text }: mkDerivation { pname = "mainland-pretty"; @@ -116703,9 +117945,10 @@ self: { homepage = "http://www.cs.drexel.edu/~mainland/"; description = "Pretty printing designed for printing source code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "mainland-pretty_0_4_1_2" = callPackage + "mainland-pretty" = callPackage ({ mkDerivation, base, containers, srcloc, text }: mkDerivation { pname = "mainland-pretty"; @@ -116715,7 +117958,6 @@ self: { homepage = "http://www.cs.drexel.edu/~mainland/"; description = "Pretty printing designed for printing source code"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "majordomo" = callPackage @@ -117340,15 +118582,16 @@ self: { , bytestring, containers, email-validate, http-client , http-client-tls, http-types, lens, mtl, old-locale, QuickCheck , raw-strings-qq, tasty, tasty-hunit, tasty-quickcheck, text, time + , unordered-containers }: mkDerivation { pname = "mandrill"; - version = "0.4.1.0"; - sha256 = "677f358e4ff991a41baff9e105a96d90849778dfa1ed12b316866e2df4cdb7e6"; + version = "0.5.0.0"; + sha256 = "3e77f5fa5be866f32542eca4228cbd911b51b138773601b2f5f32eb84a7beb4b"; libraryHaskellDepends = [ aeson base base64-bytestring blaze-html bytestring containers email-validate http-client http-client-tls http-types lens mtl - old-locale QuickCheck text time + old-locale QuickCheck text time unordered-containers ]; testHaskellDepends = [ aeson base bytestring QuickCheck raw-strings-qq tasty tasty-hunit @@ -117920,23 +119163,28 @@ self: { }) {}; "mathblog" = callPackage - ({ mkDerivation, base, bytestring, ConfigFile, directory, filepath - , HStringTemplate, HUnit, old-locale, pandoc, pandoc-types, process - , SHA, test-framework, test-framework-hunit, time, unix + ({ mkDerivation, base, bytestring, ConfigFile, containers + , data-default, deepseq, directory, either, filepath, fsnotify + , HStringTemplate, HTTP, http-server, HUnit, JuicyPixels, mtl + , network, old-locale, pandoc, pandoc-types, process, SHA + , system-filepath, temporary, test-framework, test-framework-hunit + , time, unix, url }: mkDerivation { pname = "mathblog"; - version = "0.5"; - sha256 = "2f9de67a2ad20c6d8112b5bcbd302997e46a82054d084332833962a679fe3e06"; + version = "0.6"; + sha256 = "bba53717751414c19467921f7c72a67eeb1898d75c1c0e019f2a2a491d706bd5"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - base bytestring ConfigFile directory filepath HStringTemplate HUnit - old-locale pandoc pandoc-types process SHA test-framework - test-framework-hunit time unix + base bytestring ConfigFile containers data-default deepseq + directory either filepath fsnotify HStringTemplate HTTP http-server + HUnit JuicyPixels mtl network old-locale pandoc pandoc-types + process SHA system-filepath temporary test-framework + test-framework-hunit time unix url ]; - jailbreak = true; - description = "A program for creating and managing a static weblog with LaTeX math and function graphs"; + homepage = "http://jtdaugherty.github.io/mathblog/"; + description = "A program for creating and managing a static weblog with LaTeX math and diagrams"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -117962,6 +119210,30 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "mathista" = callPackage + ({ mkDerivation, base, filepath, hspec, MissingH, parsec + , regex-compat, split + }: + mkDerivation { + pname = "mathista"; + version = "0.0.1"; + sha256 = "89640f10b337e67d15ab2fc018f921ad7b158c4093b639be6defbbd745e90a2d"; + revision = "1"; + editedCabalFile = "57641a3bf376ea93c56ab3bb1cf06c41eb1e0fcbec3751d2a3507fe4974e818f"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base MissingH parsec regex-compat split + ]; + executableHaskellDepends = [ + base filepath MissingH parsec regex-compat split + ]; + testHaskellDepends = [ base hspec parsec ]; + homepage = "https://github.com/nuta/mathista"; + description = "A small programming language for numerical computing"; + license = stdenv.lib.licenses.publicDomain; + }) {}; + "mathlink" = callPackage ({ mkDerivation, array, base, c2hs, containers, haskell98 , ix-shapable, mtl @@ -118336,6 +119608,20 @@ self: { license = stdenv.lib.licenses.gpl3; }) {}; + "mcmc-types" = callPackage + ({ mkDerivation, base, containers, mwc-probability, transformers }: + mkDerivation { + pname = "mcmc-types"; + version = "1.0.1"; + sha256 = "04e11474719161813da8ce505a7052853a26a237d5ddee99ed198a3326b246e0"; + libraryHaskellDepends = [ + base containers mwc-probability transformers + ]; + homepage = "http://github.com/jtobin/mcmc-types"; + description = "Common types for sampling"; + license = stdenv.lib.licenses.mit; + }) {}; + "mcpi" = callPackage ({ mkDerivation, base, network, pipes, split, transformers }: mkDerivation { @@ -118761,14 +120047,14 @@ self: { }) {}; "memscript" = callPackage - ({ mkDerivation, base, readline }: + ({ mkDerivation, base, haskeline, transformers }: mkDerivation { pname = "memscript"; - version = "0.0.2.0"; - sha256 = "4b56f120da87899fe7c284554ef1bb225f9356b5cae49f4657bd122cdb7e756d"; + version = "0.1.0.0"; + sha256 = "b9003c8b8ac493ecae2ec104800b825e5ce50a8a76b7786069ae70ed9ed591f5"; isLibrary = false; isExecutable = true; - executableHaskellDepends = [ base readline ]; + executableHaskellDepends = [ base haskeline transformers ]; homepage = "http://hackage.haskell.org/cgi-bin/hackage-scripts/package/memscript"; description = "Command line utility for memorizing scriptures or any other text"; license = "GPL"; @@ -119056,14 +120342,25 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "mezzolens" = callPackage + ({ mkDerivation, base, containers, mtl, transformers }: + mkDerivation { + pname = "mezzolens"; + version = "0.0.0"; + sha256 = "8252be7d73700b7401c87248e6eb5cb23873d0ce092f9b15583c4fd59b46df2b"; + libraryHaskellDepends = [ base containers mtl transformers ]; + description = "Pure Profunctor Functional Lenses"; + license = stdenv.lib.licenses.asl20; + }) {}; + "mfsolve" = callPackage ({ mkDerivation, base, hashable, mtl, tasty, tasty-hunit , unordered-containers }: mkDerivation { pname = "mfsolve"; - version = "0.3.0"; - sha256 = "a49b8c7900ee2ef4fe5906311171e7d49a0b50a4257266dccc6d6506e476db8c"; + version = "0.3.1.0"; + sha256 = "f0e423870e8757da5538190b3a88c18db79c7791ffb4286790248eefd6f8a571"; libraryHaskellDepends = [ base hashable mtl unordered-containers ]; testHaskellDepends = [ base tasty tasty-hunit ]; description = "Equation solver and calculator à la metafont"; @@ -119558,14 +120855,30 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "mighty-metropolis" = callPackage + ({ mkDerivation, base, containers, mcmc-types, mwc-probability + , pipes, primitive, transformers + }: + mkDerivation { + pname = "mighty-metropolis"; + version = "1.0.2"; + sha256 = "639c560cdb6d4f1d793cf9baf02dca60ca290a6d1831e463f6c92458bd83c0f2"; + libraryHaskellDepends = [ + base mcmc-types mwc-probability pipes primitive transformers + ]; + testHaskellDepends = [ base containers mwc-probability ]; + homepage = "http://github.com/jtobin/mighty-metropolis"; + description = "The Metropolis algorithm"; + license = stdenv.lib.licenses.mit; + }) {}; + "mikmod" = callPackage ({ mkDerivation, base, bytestring }: mkDerivation { pname = "mikmod"; - version = "0.2.0.0"; - sha256 = "7bcfb211daca217e561568ecdf978caf38db74ab118be4b3d51e887c54382673"; + version = "0.2.0.1"; + sha256 = "b7d2b0aa2288f5874aad326043676f667bc61e930d0a5e9c5a90243807e023ed"; libraryHaskellDepends = [ base bytestring ]; - jailbreak = true; homepage = "https://github.com/evanrinehart/mikmod"; description = "MikMod bindings"; license = "LGPL"; @@ -119589,22 +120902,23 @@ self: { }) {}; "milena" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers, digest - , either, hspec, lens, lifted-base, listsafe, mtl, murmur-hash - , network, QuickCheck, random, resource-pool, transformers + ({ mkDerivation, base, bytestring, cereal, containers, digest, lens + , lifted-base, mtl, murmur-hash, network, QuickCheck, random + , resource-pool, semigroups, tasty, tasty-hspec, tasty-quickcheck + , transformers }: mkDerivation { pname = "milena"; - version = "0.3.0.0"; - sha256 = "924fc92ec94da73dcd5d9a0505247cc77106fd8757016a9ebc1cfc574d96c753"; + version = "0.4.0.1"; + sha256 = "5349bf26d1c0bc6147e84219d09f065b313413aba026e060a92bcc23e9ec2cb5"; libraryHaskellDepends = [ - base bytestring cereal containers digest either lens lifted-base - listsafe mtl murmur-hash network random resource-pool transformers + base bytestring cereal containers digest lens lifted-base mtl + murmur-hash network random resource-pool semigroups transformers ]; testHaskellDepends = [ - base bytestring hspec mtl network QuickCheck + base bytestring lens mtl network QuickCheck semigroups tasty + tasty-hspec tasty-quickcheck ]; - jailbreak = true; description = "A Kafka client for Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -119755,7 +121069,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "mime-mail" = callPackage + "mime-mail_0_4_10" = callPackage ({ mkDerivation, base, base64-bytestring, blaze-builder, bytestring , filepath, hspec, process, random, text }: @@ -119771,6 +121085,25 @@ self: { homepage = "http://github.com/snoyberg/mime-mail"; description = "Compose MIME email messages"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "mime-mail" = callPackage + ({ mkDerivation, base, base64-bytestring, blaze-builder, bytestring + , filepath, hspec, process, random, text + }: + mkDerivation { + pname = "mime-mail"; + version = "0.4.11"; + sha256 = "84fa24f83206cb88377128395c2d6db2d08bbe9b568ba6ab8eeb76952abedfee"; + libraryHaskellDepends = [ + base base64-bytestring blaze-builder bytestring filepath process + random text + ]; + testHaskellDepends = [ base blaze-builder bytestring hspec text ]; + homepage = "http://github.com/snoyberg/mime-mail"; + description = "Compose MIME email messages"; + license = stdenv.lib.licenses.mit; }) {}; "mime-mail-ses_0_3_2" = callPackage @@ -120607,8 +121940,8 @@ self: { }: mkDerivation { pname = "moesocks"; - version = "1.0.0.20"; - sha256 = "2f8a388696fb49168f23437a1a3187334ae260e42e235245cdb20afa8efb3ef1"; + version = "1.0.0.40"; + sha256 = "29ee09f715fb00707f036d4ba8708bf309c1e581a83b6e8b53006899376cc2b7"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -120622,30 +121955,6 @@ self: { license = stdenv.lib.licenses.asl20; }) {}; - "moesocks_1_0_0_30" = callPackage - ({ mkDerivation, aeson, async, attoparsec, base, binary, bytestring - , containers, cryptohash, hslogger, HsOpenSSL, iproute, lens - , lens-aeson, mtl, network, optparse-applicative, random, stm - , strict, text, time, transformers, unordered-containers - }: - mkDerivation { - pname = "moesocks"; - version = "1.0.0.30"; - sha256 = "bdbc824d5d6c2732caedffe6874993b3e4fc8faef20982568288155afc54b554"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson async attoparsec base binary bytestring containers cryptohash - hslogger HsOpenSSL iproute lens lens-aeson mtl network - optparse-applicative random stm strict text time transformers - unordered-containers - ]; - homepage = "https://github.com/nfjinjing/moesocks"; - description = "A functional firewall killer"; - license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "mohws" = callPackage ({ mkDerivation, base, bytestring, containers, data-accessor , directory, explicit-exception, filepath, html, HTTP, network @@ -121152,7 +122461,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "monad-logger" = callPackage + "monad-logger_0_3_13_2" = callPackage ({ mkDerivation, base, blaze-builder, bytestring, conduit , conduit-extra, exceptions, fast-logger, lifted-base , monad-control, monad-loops, mtl, resourcet, stm, stm-chans @@ -121172,9 +122481,10 @@ 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_0_3_14" = callPackage + "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 @@ -121194,7 +122504,6 @@ 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-json" = callPackage @@ -121406,7 +122715,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "monad-parallel" = callPackage + "monad-parallel_0_7_1_4" = callPackage ({ mkDerivation, base, parallel, transformers, transformers-compat }: mkDerivation { @@ -121419,6 +122728,22 @@ self: { homepage = "http://trac.haskell.org/SCC/wiki/monad-parallel"; description = "Parallel execution of monadic computations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "monad-parallel" = callPackage + ({ mkDerivation, base, parallel, transformers, transformers-compat + }: + mkDerivation { + pname = "monad-parallel"; + version = "0.7.2"; + sha256 = "fa410be89895b177dd092a30a324e12a026d59bc999070e0c1d4da91d747bee3"; + libraryHaskellDepends = [ + base parallel transformers transformers-compat + ]; + homepage = "http://trac.haskell.org/SCC/wiki/monad-parallel"; + description = "Parallel execution of monadic computations"; + license = stdenv.lib.licenses.bsd3; }) {}; "monad-parallel-progressbar" = callPackage @@ -122055,7 +123380,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "mongoDB" = callPackage + "mongoDB_2_0_7" = callPackage ({ mkDerivation, array, base, binary, bson, bytestring, containers , cryptohash, hashtables, hspec, lifted-base, monad-control, mtl , network, old-locale, parsec, random, random-shuffle, text, time @@ -122074,6 +123399,28 @@ self: { homepage = "https://github.com/mongodb-haskell/mongodb"; description = "Driver (client) for MongoDB, a free, scalable, fast, document DBMS"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "mongoDB" = callPackage + ({ mkDerivation, array, base, binary, bson, bytestring, containers + , cryptohash, hashtables, hspec, lifted-base, monad-control, mtl + , network, old-locale, parsec, random, random-shuffle, text, time + , transformers-base + }: + mkDerivation { + pname = "mongoDB"; + version = "2.0.8"; + sha256 = "d515ad855fb008848c62bea117925ef6cf48f62c9dfe94c9efbca4a65a1ac5d9"; + libraryHaskellDepends = [ + array base binary bson bytestring containers cryptohash hashtables + lifted-base monad-control mtl network parsec random random-shuffle + text transformers-base + ]; + testHaskellDepends = [ base hspec mtl old-locale text time ]; + homepage = "https://github.com/mongodb-haskell/mongodb"; + description = "Driver (client) for MongoDB, a free, scalable, fast, document DBMS"; + license = "unknown"; }) {}; "mongodb-queue" = callPackage @@ -122251,7 +123598,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "mono-traversable" = callPackage + "mono-traversable_0_9_3" = callPackage ({ mkDerivation, base, bytestring, comonad, containers, dlist , dlist-instances, foldl, hashable, hspec, HUnit, QuickCheck , semigroupoids, semigroups, split, text, transformers @@ -122273,6 +123620,31 @@ self: { homepage = "https://github.com/snoyberg/mono-traversable"; description = "Type classes for mapping, folding, and traversing monomorphic containers"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "mono-traversable" = callPackage + ({ mkDerivation, base, bytestring, comonad, containers, dlist + , dlist-instances, foldl, hashable, hspec, HUnit, QuickCheck + , semigroupoids, semigroups, split, text, transformers + , unordered-containers, vector, vector-algorithms, vector-instances + }: + mkDerivation { + pname = "mono-traversable"; + version = "0.10.0"; + sha256 = "5f71c909ed5b5b399fdceeb565b3eb3c19fbcdd771ca9a87595f863c35429fab"; + libraryHaskellDepends = [ + base bytestring comonad containers dlist dlist-instances hashable + semigroupoids semigroups split text transformers + unordered-containers vector vector-algorithms vector-instances + ]; + testHaskellDepends = [ + base bytestring containers foldl hspec HUnit QuickCheck semigroups + text transformers unordered-containers vector + ]; + homepage = "https://github.com/snoyberg/mono-traversable"; + description = "Type classes for mapping, folding, and traversing monomorphic containers"; + license = stdenv.lib.licenses.mit; }) {}; "monoid-extras_0_3_3_5" = callPackage @@ -123233,14 +124605,15 @@ self: { "mtl-unleashed" = callPackage ({ mkDerivation, base, contravariant, hspec, hspec-core, lens, mtl - , profunctors, tagged + , profunctors, tagged, transformers, transformers-compat }: mkDerivation { pname = "mtl-unleashed"; - version = "0.3.2"; - sha256 = "4623fcb8671ba72ccba3622816cb276b3d853defa22395dbdc7c5d43877a01d4"; + version = "0.6"; + sha256 = "acbe3906f3928587893e9b28ca13d2100995ee6cf5f401e3e34b0dcfacb6bbbe"; libraryHaskellDepends = [ - base contravariant lens mtl profunctors tagged + base contravariant lens mtl profunctors tagged transformers + transformers-compat ]; testHaskellDepends = [ base contravariant hspec hspec-core lens mtl profunctors @@ -123436,6 +124809,7 @@ self: { testHaskellDepends = [ base QuickCheck tasty tasty-quickcheck tasty-th ]; + jailbreak = true; homepage = "https://github.com/massysett/multiarg"; description = "Command lines for options that take multiple arguments"; license = stdenv.lib.licenses.bsd3; @@ -124086,28 +125460,35 @@ self: { }) {}; "mustache" = callPackage - ({ mkDerivation, aeson, base, bytestring, cmdargs, conversion - , conversion-text, directory, either, filepath, hspec, mtl, parsec - , scientific, tagsoup, text, uniplate, unordered-containers, vector - , yaml + ({ 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 }: mkDerivation { pname = "mustache"; - version = "0.1.0.0"; - sha256 = "929a69dc35fb50ddf3ba095f786b9d8d587514d54c2bce87e91ab08ac17db03e"; + version = "0.3.0.0"; + sha256 = "4887b89e0e7e76f4de39fa0315ff20113514d068e684a732bf075ade42c79c41"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson base bytestring conversion conversion-text directory either - filepath hspec mtl parsec scientific tagsoup text uniplate - unordered-containers vector + aeson base base-unicode-symbols bytestring containers conversion + conversion-text directory either filepath ja-base-extra mtl parsec + scientific tagsoup text unordered-containers vector ]; executableHaskellDepends = [ - aeson base bytestring cmdargs filepath text yaml + aeson base base-unicode-symbols bytestring cmdargs filepath text + yaml ]; - testHaskellDepends = [ aeson base hspec text ]; + testHaskellDepends = [ + aeson base base-unicode-symbols directory filepath hspec process + temporary text unordered-containers yaml + ]; + homepage = "https://github.com/JustusAdam/mustache"; description = "A mustache template parser library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mustache-haskell" = callPackage @@ -124302,6 +125683,18 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "mwc-probability" = callPackage + ({ mkDerivation, base, mwc-random, primitive, transformers }: + mkDerivation { + pname = "mwc-probability"; + version = "1.0.2"; + sha256 = "226dc423bef96665a354757e0d74cb77667a587a14d40173a39451f3242b16e0"; + libraryHaskellDepends = [ base mwc-random primitive transformers ]; + homepage = "http://github.com/jtobin/mwc-probability"; + description = "Sampling function-based probability distributions"; + license = stdenv.lib.licenses.mit; + }) {}; + "mwc-random_0_13_2_2" = callPackage ({ mkDerivation, base, HUnit, primitive, QuickCheck, statistics , test-framework, test-framework-hunit, test-framework-quickcheck2 @@ -124742,6 +126135,7 @@ self: { testHaskellDepends = [ base case-insensitive QuickCheck tasty tasty-hunit tasty-quickcheck ]; + jailbreak = true; homepage = "https://github.com/philopon/namelist-hs"; description = "fortran90 namelist parser/pretty printer"; license = stdenv.lib.licenses.mit; @@ -125117,6 +126511,7 @@ self: { testHaskellDepends = [ base containers quickcheck-instances tasty tasty-quickcheck ]; + jailbreak = true; homepage = "https://github.com/ku-fpg/natural-transformation"; description = "A natural transformation package"; license = stdenv.lib.licenses.bsd3; @@ -125208,8 +126603,8 @@ self: { }: mkDerivation { pname = "ncurses"; - version = "0.2.11"; - sha256 = "f3dbd238d44c4bf44ccb5364540300bc9a16b539822535f3cd5d9e1189105922"; + version = "0.2.12"; + sha256 = "fbafe7fcb6e829fa1c3a3827c9adc871e7784cd76448d0c75d99b92f81dc1165"; libraryHaskellDepends = [ base containers text transformers ]; librarySystemDepends = [ ncurses ]; libraryToolDepends = [ c2hs ]; @@ -125510,8 +126905,8 @@ self: { }: mkDerivation { pname = "nested-routes"; - version = "5.0.0"; - sha256 = "98b1eb6311440a4ab47064d7bb792f9daab61f4c0644f55ef958b8b1ecd1a6ed"; + version = "6.0.0"; + sha256 = "37d621518c550770a79c8a5ed148be32f97752bf201d9dc4a3df540b1aa31941"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -125719,6 +127114,7 @@ self: { testHaskellDepends = [ base bytestring tasty tasty-golden tasty-quickcheck ]; + jailbreak = true; homepage = "https://github.com/hvr/netrc"; description = "Parser for .netrc files"; license = stdenv.lib.licenses.gpl3; @@ -126089,8 +127485,8 @@ self: { }: mkDerivation { pname = "network-api-support"; - version = "0.2.0"; - sha256 = "41d33fcc0bd0d095cc9bef205a77d1097c39b6e2c2c8c086275638364a5b5505"; + version = "0.2.1"; + sha256 = "829e03488cf95f57d00cdd37078487e3c857861bcf79e0eb3dcbcda55b4d1a68"; libraryHaskellDepends = [ aeson attoparsec base bytestring case-insensitive http-client http-client-tls http-types text time tls @@ -127461,8 +128857,8 @@ self: { }: mkDerivation { pname = "nix-eval"; - version = "0.1.0.1"; - sha256 = "5bc5c66fec46440d0a546ba4bfdd0c770080224f9a69fd6344d33cfc765677d4"; + version = "0.1.0.2"; + sha256 = "f603ce62cd8abaab8cf09c8cf3f8b17332b0490658310eadea5242826b2ef419"; libraryHaskellDepends = [ base process ]; testHaskellDepends = [ base QuickCheck tasty tasty-quickcheck ]; homepage = "http://chriswarbo.net/git/nix-eval"; @@ -128620,8 +130016,8 @@ self: { ({ mkDerivation, base, containers }: mkDerivation { pname = "observable-sharing"; - version = "0.2.2.1"; - sha256 = "a93236cd153fed0a8364c21780083e6f2e9e08a84ac3dfb938a3e56b19e37a80"; + version = "0.2.4"; + sha256 = "400efecddcfdd992717caccc3a7b00590e7635bf92305d7d93f81d47327811d3"; libraryHaskellDepends = [ base containers ]; homepage = "https://github.com/atzeus/observable-sharing"; description = "Simple observable sharing"; @@ -129188,7 +130584,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "opaleye" = callPackage + "opaleye_0_4_1_0" = callPackage ({ mkDerivation, attoparsec, base, base16-bytestring, bytestring , case-insensitive, containers, contravariant, multiset , postgresql-simple, pretty, product-profunctors, profunctors @@ -129215,6 +130611,34 @@ self: { homepage = "https://github.com/tomjaguarpaw/haskell-opaleye"; description = "An SQL-generating DSL targeting PostgreSQL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "opaleye" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base16-bytestring + , bytestring, case-insensitive, containers, contravariant, multiset + , postgresql-simple, pretty, product-profunctors, profunctors + , QuickCheck, semigroups, text, time, time-locale-compat + , transformers, uuid, void + }: + mkDerivation { + pname = "opaleye"; + version = "0.4.2.0"; + sha256 = "b924c4d0fa7151c0dbaee5ddcd89adfa569614204a805392625752ea6dc13c20"; + libraryHaskellDepends = [ + aeson attoparsec base base16-bytestring bytestring case-insensitive + contravariant postgresql-simple pretty product-profunctors + profunctors semigroups text time time-locale-compat transformers + uuid void + ]; + testHaskellDepends = [ + base containers contravariant multiset postgresql-simple + product-profunctors profunctors QuickCheck semigroups time + ]; + doCheck = false; + homepage = "https://github.com/tomjaguarpaw/haskell-opaleye"; + description = "An SQL-generating DSL targeting PostgreSQL"; + license = stdenv.lib.licenses.bsd3; }) {}; "opaleye-classy" = callPackage @@ -130557,8 +131981,8 @@ self: { }: mkDerivation { pname = "ot"; - version = "0.2.0.0"; - sha256 = "a3e917487a3aab56966fc3d676a3b8cf079acbd05b0ea0c887d6b90a18a6c46d"; + version = "0.2.1.0"; + sha256 = "56f1c888103c699b1025c1f23a7e3423a5b7cf93041af24d8fbd1eb9f08caa04"; libraryHaskellDepends = [ aeson attoparsec base binary either ghc mtl QuickCheck text ]; @@ -130566,7 +131990,6 @@ self: { aeson base binary HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 text ]; - jailbreak = true; homepage = "https://github.com/operational-transformation/ot.hs"; description = "Real-time collaborative editing with Operational Transformation"; license = stdenv.lib.licenses.mit; @@ -130716,8 +132139,8 @@ self: { }: mkDerivation { pname = "packer"; - version = "0.1.8"; - sha256 = "713d29b95f41aff8ed21dc59551c5caf3ac165c07d43d4e403cb1b161429f8e4"; + version = "0.1.9"; + sha256 = "d2926f876da4ef8e4590bbc501caf83b0703018971ad5413e9d6647667d681e4"; libraryHaskellDepends = [ base bytestring ghc-prim transformers ]; testHaskellDepends = [ base bytestring tasty tasty-hunit tasty-quickcheck @@ -131344,6 +132767,37 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "pandoc-citeproc_0_8" = callPackage + ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring + , containers, data-default, directory, filepath, hs-bibutils, mtl + , old-locale, pandoc, pandoc-types, parsec, process, rfc5051 + , setenv, split, syb, tagsoup, temporary, text, time, vector + , xml-conduit, yaml + }: + mkDerivation { + pname = "pandoc-citeproc"; + version = "0.8"; + sha256 = "834ba89edc9d92dd2e9bf0f001a5ce3d5713b8a7b580232b6a088b5f7f6ddc5e"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring containers data-default directory filepath + hs-bibutils mtl old-locale pandoc pandoc-types parsec rfc5051 + setenv split syb tagsoup text time vector xml-conduit yaml + ]; + executableHaskellDepends = [ + aeson aeson-pretty attoparsec base bytestring containers directory + filepath pandoc pandoc-types process syb temporary text vector yaml + ]; + testHaskellDepends = [ + aeson base bytestring directory filepath pandoc pandoc-types + process temporary text yaml + ]; + description = "Supports using pandoc with citeproc"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "pandoc-citeproc-preamble" = callPackage ({ mkDerivation, base, directory, filepath, pandoc-types, process }: @@ -131363,17 +132817,17 @@ self: { "pandoc-crossref" = callPackage ({ mkDerivation, base, bytestring, containers, data-default, hspec - , mtl, pandoc, pandoc-types, process, template-haskell, yaml + , mtl, pandoc, pandoc-types, process, yaml }: mkDerivation { pname = "pandoc-crossref"; - version = "0.1.5.2"; - sha256 = "62a37518683f66d047936b2af5a3a75522a4a39906992c0a7de1504490d8c927"; + version = "0.1.5.5"; + sha256 = "7ef23698170135f78e9f21472fd5abeb3fea887da714c587279db4ae7aa6ceba"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base bytestring containers data-default mtl pandoc pandoc-types - template-haskell yaml + yaml ]; executableHaskellDepends = [ base bytestring containers data-default mtl pandoc pandoc-types @@ -131381,7 +132835,7 @@ self: { ]; testHaskellDepends = [ base bytestring containers data-default hspec mtl pandoc - pandoc-types process template-haskell yaml + pandoc-types process yaml ]; description = "Pandoc filter for cross-references"; license = stdenv.lib.licenses.gpl2; @@ -131420,8 +132874,8 @@ self: { }: mkDerivation { pname = "pandoc-placetable"; - version = "0.1.2"; - sha256 = "8b7f13d09198aa28da598b89d4ff6af17ea13087a0d0ba38b8c0602d8b24096f"; + version = "0.2"; + sha256 = "1d8c5ac645812b0357d7b51e0d636c720638b70847869ede6bb02a4b309ded97"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -131617,8 +133071,8 @@ self: { }: mkDerivation { pname = "papillon"; - version = "0.1.0.0"; - sha256 = "ee46813dcb6da7eb4fd17cb91610542cf07b93d54f876e9da469e8df9b5f430a"; + version = "0.1.0.2"; + sha256 = "2a7a6d5b08e6be261dca18cc80a4040a1215a5a8e66953a1e766845455ba4861"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -131627,6 +133081,7 @@ self: { executableHaskellDepends = [ base directory filepath monads-tf template-haskell transformers ]; + jailbreak = true; homepage = "https://skami.iocikun.jp/haskell/packages/papillon"; description = "packrat parser"; license = stdenv.lib.licenses.bsd3; @@ -132513,15 +133968,14 @@ self: { }: mkDerivation { pname = "patches-vector"; - version = "0.1.0.0"; - sha256 = "569c80938fad6c296b0a5722e0e578bbc9509e521a3ce5bb3a341e1c4346a39e"; + version = "0.1.2.0"; + sha256 = "a2330b6c061de654ad50d00848b9d6730d2ebc283febafaa2ee383678718b763"; libraryHaskellDepends = [ base edit-distance-vector microlens vector ]; testHaskellDepends = [ base doctest QuickCheck ]; - jailbreak = true; homepage = "https://github.com/liamoc/patches-vector"; - description = "A library for patches (diffs) on vectors, composable and invertible"; + description = "Patches (diffs) on vectors: composable, mergeable, and invertible"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -132610,13 +134064,17 @@ self: { }) {}; "pathtype" = callPackage - ({ mkDerivation, base, directory, QuickCheck, time }: + ({ mkDerivation, base, directory, QuickCheck, random, time }: mkDerivation { pname = "pathtype"; - version = "0.5.4"; - sha256 = "e7ad569aa8d39b0373815c7a56b8ddfee3b4f6e568d65cc9ed29d199edc045db"; + version = "0.5.4.3"; + sha256 = "d319d61c53b3645d5ada2642444b99ba42c6e30ca1cce42f829836c919ce7b02"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ base directory QuickCheck time ]; - homepage = "http://code.haskell.org/pathtype"; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ base random ]; + homepage = "http://hub.darcs.net/thielema/pathtype/"; description = "Type-safe replacement for System.FilePath etc"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -134188,8 +135646,8 @@ self: { }: mkDerivation { pname = "persistent-mysql"; - version = "2.3"; - sha256 = "c4d24a212698b78bd25fb9c8024291f0f4914cd76dbbac00c629abc7f64d4342"; + version = "2.3.0.2"; + sha256 = "7e1c21ee07df97172528c83709a4435040e477e46e1d558f3dd5bcda84c4f033"; libraryHaskellDepends = [ aeson base blaze-builder bytestring conduit containers monad-control monad-logger mysql mysql-simple persistent resourcet @@ -134923,7 +136381,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "persistent-template" = callPackage + "persistent-template_2_1_3_6" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, ghc-prim , hspec, monad-control, monad-logger, path-pieces, persistent , QuickCheck, tagged, template-haskell, text, transformers @@ -134944,6 +136402,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, monad-control, monad-logger, path-pieces + , persistent, QuickCheck, tagged, template-haskell, text + , transformers, unordered-containers + }: + mkDerivation { + pname = "persistent-template"; + version = "2.1.3.7"; + sha256 = "60a47ee01553c9dd00a387e82490972a13fd104238ae77327729d77303d7de40"; + libraryHaskellDepends = [ + aeson aeson-extra base bytestring containers ghc-prim 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 ]; }) {}; @@ -135058,8 +136541,8 @@ self: { }: mkDerivation { pname = "peyotls"; - version = "0.1.6.9"; - sha256 = "ee9cf56dc5e1086eaeb50ae46d1ceb5ccd98ce61e6d56045d192e12a72186d5e"; + version = "0.1.6.10"; + sha256 = "9c738ac0cc1bdc8548679c8bafcc8e9cba21e8c9a805708431d98d6f03cc3874"; libraryHaskellDepends = [ asn1-encoding asn1-types base bytable bytestring cipher-aes crypto-numbers crypto-pubkey crypto-pubkey-types crypto-random @@ -135505,17 +136988,21 @@ self: { }) {}; "picologic" = callPackage - ({ mkDerivation, base, containers, mtl, parsec, picosat, pretty }: + ({ mkDerivation, base, containers, mtl, parsec, picosat, pretty + , QuickCheck + }: mkDerivation { pname = "picologic"; - version = "0.1.1"; - sha256 = "40b8f3a30f200f956d967c4bfa8063cbaf9a9e1963c246cffcc79e8e5da29193"; + version = "0.1.2"; + sha256 = "449f6ead23c54d1751d66437a06950a5b2a478348c53e6b927ec9a2bb9e9e40f"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base containers mtl parsec picosat pretty ]; - jailbreak = true; + testHaskellDepends = [ + base containers mtl picosat pretty QuickCheck + ]; homepage = "https://github.com/sdiehl/picologic"; description = "Utilities for symbolic predicate logic expressions"; license = stdenv.lib.licenses.mit; @@ -135913,6 +137400,7 @@ self: { base binary bytestring ghc-prim lens-family-core pipes pipes-parse smallcheck tasty tasty-hunit tasty-smallcheck transformers ]; + jailbreak = true; homepage = "https://github.com/k0001/pipes-binary"; description = "Encode and decode binary streams using the pipes and binary libraries"; license = stdenv.lib.licenses.bsd3; @@ -136168,8 +137656,8 @@ self: { }: mkDerivation { pname = "pipes-extras"; - version = "1.0.1"; - sha256 = "b5b5780713a9b92e4168e66f2e37a82c1f159f13be4c3d8c1c8326de4c8c28dc"; + version = "1.0.2"; + sha256 = "01bc6c13920874cffc3b8587e45bb7ecb4feef1892c8b2ba5975f5216cf6b6cf"; libraryHaskellDepends = [ base foldl pipes transformers ]; testHaskellDepends = [ base HUnit pipes test-framework test-framework-hunit transformers @@ -136492,6 +137980,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "pipes-sqlite-simple" = callPackage + ({ mkDerivation, base, pipes, pipes-safe, sqlite-simple, text }: + mkDerivation { + pname = "pipes-sqlite-simple"; + version = "0.2"; + sha256 = "9835f4f06e2f8c9e62d628533efef22234a9aa83298f369c3669d2a96726cf2f"; + libraryHaskellDepends = [ + base pipes pipes-safe sqlite-simple text + ]; + description = "Functions that smash Pipes and sqlite-simple together"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "pipes-text_0_0_0_16" = callPackage ({ mkDerivation, base, bytestring, pipes, pipes-bytestring , pipes-group, pipes-parse, pipes-safe, streaming-commons, text @@ -136661,6 +138162,26 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "pitchtrack" = callPackage + ({ mkDerivation, base, bytestring, dywapitchtrack, hspec, pipes + , pipes-bytestring, process, transformers + }: + mkDerivation { + pname = "pitchtrack"; + version = "0.1.0.1"; + sha256 = "17407f7ab1723fdbebbc7c727391d3177e6d5f568b4b129a17640525bac40200"; + libraryHaskellDepends = [ + base bytestring dywapitchtrack pipes pipes-bytestring process + transformers + ]; + testHaskellDepends = [ + base bytestring dywapitchtrack hspec pipes pipes-bytestring process + transformers + ]; + description = "Pitch tracking library"; + license = stdenv.lib.licenses.mit; + }) {}; + "pkcs1" = callPackage ({ mkDerivation, base, bytestring, random }: mkDerivation { @@ -136840,6 +138361,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "plot_0_2_3_5" = callPackage + ({ mkDerivation, array, base, cairo, colour, hmatrix, mtl, pango + , transformers + }: + mkDerivation { + pname = "plot"; + version = "0.2.3.5"; + sha256 = "db5d69d5249e562eaedaa0887075dc43142ddb20260ddc746b501b8b2ed58483"; + libraryHaskellDepends = [ + array base cairo colour hmatrix mtl pango transformers + ]; + jailbreak = true; + homepage = "http://github.com/amcphail/plot"; + description = "A plotting library, exportable as eps/pdf/svg/png or renderable with gtk"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "plot-gtk" = callPackage ({ mkDerivation, base, glib, gtk, hmatrix, mtl, plot, process }: mkDerivation { @@ -136948,8 +138487,8 @@ self: { }: mkDerivation { pname = "plugins"; - version = "1.5.4.0"; - sha256 = "28ae5f83583d6e659255f54c236a908d59a5df5fabb612dd1d4aa5bf96b8d488"; + version = "1.5.5.0"; + sha256 = "57012217c22dce398b3574f45af22404be38de96145e5862d1453c599816f6a2"; libraryHaskellDepends = [ array base Cabal containers directory filepath ghc ghc-paths ghc-prim haskell-src process random @@ -137373,12 +138912,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "polar-configfile" = callPackage + ({ mkDerivation, base, containers, HUnit, MissingH, mtl, parsec }: + mkDerivation { + pname = "polar-configfile"; + version = "0.4.1.0"; + sha256 = "ae0d19890ee5e24a0d36eacacf22fad1eff68c471bcdd8b84fa727aedf7135d2"; + libraryHaskellDepends = [ base containers MissingH mtl parsec ]; + testHaskellDepends = [ base containers HUnit MissingH mtl parsec ]; + description = "Fork of ConfigFile for Polar Game Engine"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "polar-shader" = callPackage ({ mkDerivation, base, containers, hspec, lens, mtl }: mkDerivation { pname = "polar-shader"; - version = "0.1.0.2"; - sha256 = "86e79bda1cc4655188f4e7cfc17e77935a86e71c3cf06f5891d21391703626ce"; + version = "0.1.0.3"; + sha256 = "f995b27e6388e5f6f037c175802f0bd65809e151b7130372f6300b6412a6c99c"; libraryHaskellDepends = [ base containers lens mtl ]; testHaskellDepends = [ base containers hspec ]; description = "High-level shader compiler for Polar Game Engine"; @@ -137701,8 +139253,8 @@ self: { }: mkDerivation { pname = "pontarius-xmpp"; - version = "0.4.3"; - sha256 = "b8f6dd052e2b494f01cafa2613510ef8a62b8fad6a445fe0fd60723fbca388db"; + version = "0.4.5"; + sha256 = "b35bb79b206250039a6a941f17e784d7760fd4197d80821319461031d6449f6d"; libraryHaskellDepends = [ attoparsec base base64-bytestring binary bytestring conduit containers crypto-api crypto-random cryptohash cryptohash-cryptoapi @@ -138319,8 +139871,8 @@ self: { }: mkDerivation { pname = "postgresql-query"; - version = "2.1.0"; - sha256 = "ac4fca09661d50e6ca122a3609536168bb3c029e278761a4da1055e0fe88fa1e"; + version = "2.2.0"; + sha256 = "849978795d764e790d3ce239237ba8ac52294cc255b8b5645f98e3408b402a1d"; libraryHaskellDepends = [ aeson attoparsec base blaze-builder bytestring containers data-default either exceptions file-embed haskell-src-meta hreader @@ -138339,20 +139891,21 @@ self: { }) {}; "postgresql-schema" = callPackage - ({ mkDerivation, base, basic-prelude, old-locale - , optparse-applicative, postgresql-simple, shelly, text, time + ({ mkDerivation, base, basic-prelude, optparse-applicative + , postgresql-simple, shelly, text, time, time-locale-compat }: mkDerivation { pname = "postgresql-schema"; - version = "0.1.6"; - sha256 = "4556cab06687319f0c2c067bfc8ddf47246892fef83ea39f821f122ff9e63c31"; + version = "0.1.7"; + sha256 = "7d64e812b6a03e119a1ae44d274518a75d4b84e42f4d887fb58d51e8ebceb499"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base basic-prelude postgresql-simple shelly text ]; executableHaskellDepends = [ - base basic-prelude old-locale optparse-applicative shelly text time + base basic-prelude optparse-applicative shelly text time + time-locale-compat ]; homepage = "https://github.com/mfine/postgresql-schema"; description = "PostgreSQL Schema Management"; @@ -138786,7 +140339,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pqueue" = callPackage + "pqueue_1_3_0" = callPackage ({ mkDerivation, base, deepseq }: mkDerivation { pname = "pqueue"; @@ -138795,6 +140348,18 @@ self: { libraryHaskellDepends = [ base deepseq ]; description = "Reliable, persistent, fast priority queues"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "pqueue" = callPackage + ({ mkDerivation, base, deepseq }: + mkDerivation { + pname = "pqueue"; + version = "1.3.1"; + sha256 = "f4ff225585d00d8813466ac70a767a05c079dcbfb4fcf353dc2341cf0560dc10"; + libraryHaskellDepends = [ base deepseq ]; + description = "Reliable, persistent, fast priority queues"; + license = stdenv.lib.licenses.bsd3; }) {}; "pqueue-mtl" = callPackage @@ -138941,6 +140506,7 @@ self: { base bytestring containers contravariant QuickCheck rainbow split tasty tasty-quickcheck tasty-th text transformers ]; + jailbreak = true; homepage = "http://www.github.com/massysett/prednote"; description = "Evaluate and display trees of predicates"; license = stdenv.lib.licenses.bsd3; @@ -140003,7 +141569,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "product-profunctors" = callPackage + "product-profunctors_0_6_3" = callPackage ({ mkDerivation, base, contravariant, profunctors, template-haskell }: mkDerivation { @@ -140017,6 +141583,23 @@ self: { homepage = "https://github.com/tomjaguarpaw/product-profunctors"; description = "product-profunctors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "product-profunctors" = callPackage + ({ mkDerivation, base, contravariant, profunctors, template-haskell + }: + mkDerivation { + pname = "product-profunctors"; + version = "0.6.3.1"; + sha256 = "44e082ea161dc3f2b844fd59afbadfaeea3bd88ee4a07ba0fbaf369cc6e4311d"; + libraryHaskellDepends = [ + base contravariant profunctors template-haskell + ]; + testHaskellDepends = [ base profunctors ]; + homepage = "https://github.com/tomjaguarpaw/product-profunctors"; + description = "product-profunctors"; + license = stdenv.lib.licenses.bsd3; }) {}; "prof2dot" = callPackage @@ -140430,8 +142013,8 @@ self: { }: mkDerivation { pname = "propellor"; - version = "2.8.0"; - sha256 = "fb4d796502f24ee0453d3150bbdc27d8bfada5950ccc467dab6d58c065f579f8"; + version = "2.8.1"; + sha256 = "c5e80aa13e7663c692bd982c62b26b52aab88130a38750834d5a64af64813d9a"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -140823,18 +142406,18 @@ self: { "psc-ide" = callPackage ({ mkDerivation, aeson, base, containers, directory, either - , filepath, hspec, lens, lens-aeson, mtl, network + , filepath, hspec, http-client, lens, lens-aeson, mtl, network , optparse-applicative, parsec, regex-tdfa, text, wreq }: mkDerivation { pname = "psc-ide"; - version = "0.2.0.0"; - sha256 = "4b670a9e698c1c2b89d7041c3378a59ada3028b7e535fb377b2d979ed7e36ac4"; + version = "0.3.0.0"; + sha256 = "f491fbc678bf6b022642e0ff5a00d543c5ac99dd487b2089a48f1d102aab8200"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson base containers directory either filepath lens lens-aeson mtl - parsec regex-tdfa text wreq + aeson base containers directory either filepath http-client lens + lens-aeson mtl parsec regex-tdfa text wreq ]; executableHaskellDepends = [ base directory mtl network optparse-applicative text @@ -140952,8 +142535,8 @@ self: { ({ mkDerivation, base, filepath, hspec, template-haskell }: mkDerivation { pname = "publicsuffix"; - version = "0.20150927"; - sha256 = "cc44e9781c208a57c511a4ac3fa1a144e010b5ff6566c8b0c7920af028d68a94"; + version = "0.20151011"; + sha256 = "7497e7242297ee90af9a817302977f6d25539785c352b6bf3088a55181fa5759"; libraryHaskellDepends = [ base filepath template-haskell ]; testHaskellDepends = [ base hspec ]; homepage = "https://github.com/wereHamster/publicsuffix-haskell/"; @@ -141100,6 +142683,7 @@ self: { base bytestring data-default-class template-haskell ]; testHaskellDepends = [ base bytestring tasty tasty-hunit ]; + jailbreak = true; homepage = "https://github.com/philopon/pugixml-hs"; description = "pugixml binding"; license = stdenv.lib.licenses.mit; @@ -142549,10 +144133,9 @@ self: { ({ mkDerivation, base, mmorph, transformers }: mkDerivation { pname = "quiver"; - version = "1.0.2"; - sha256 = "98cb06c9324852ef00b76db1cbe0e689d838a11f312348c625570c0ce13312e1"; + version = "1.1.2"; + sha256 = "fc4e05e7514e42ef12dbc58a471825ffc3208d1b073a86940a0c7b8207a8dfa6"; libraryHaskellDepends = [ base mmorph transformers ]; - jailbreak = true; homepage = "https://github.com/zadarnowski/quiver"; description = "Quiver finite stream processing library"; license = stdenv.lib.licenses.bsd3; @@ -142655,19 +144238,24 @@ self: { }) {}; "qux" = callPackage - ({ mkDerivation, base, language-qux, mtl, optparse-applicative }: + ({ mkDerivation, base, bytestring, containers, directory, filepath + , language-qux, llvm-general, mtl, optparse-applicative, pretty + }: mkDerivation { pname = "qux"; - version = "0.1.0.0"; - sha256 = "fb2de869de3645b69c0f4bada356e3d1fd2902cf7d09315f7797eee93dd6f1da"; + version = "0.2.0.0"; + sha256 = "9f3a033e164b906384b4dd8312306a75ab2afefb3aa5533fc512ab38e33f341f"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - base language-qux mtl optparse-applicative + base bytestring containers directory filepath language-qux + llvm-general mtl optparse-applicative pretty ]; + jailbreak = true; homepage = "https://github.com/qux-lang/qux"; description = "Command line binary for working with the Qux language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rabocsv2qif" = callPackage @@ -143420,7 +145008,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "rasterific-svg" = callPackage + "rasterific-svg_0_2_3_1" = callPackage ({ mkDerivation, base, binary, bytestring, containers, directory , filepath, FontyFruity, JuicyPixels, lens, linear, mtl , optparse-applicative, Rasterific, scientific, svg-tree, text @@ -143443,6 +145031,32 @@ self: { ]; description = "SVG renderer based on Rasterific"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "rasterific-svg" = callPackage + ({ mkDerivation, base, binary, bytestring, containers, directory + , filepath, FontyFruity, JuicyPixels, lens, linear, mtl + , optparse-applicative, Rasterific, scientific, svg-tree, text + , transformers, vector + }: + mkDerivation { + pname = "rasterific-svg"; + version = "0.2.3.2"; + sha256 = "d8b744ba09d5303bd84c6820d407d3fe13d58271f8794eb1088bb6b6c0d51805"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base binary bytestring containers directory filepath FontyFruity + JuicyPixels lens linear mtl Rasterific scientific svg-tree text + transformers vector + ]; + executableHaskellDepends = [ + base directory filepath FontyFruity JuicyPixels + optparse-applicative Rasterific svg-tree + ]; + description = "SVG renderer based on Rasterific"; + license = stdenv.lib.licenses.bsd3; }) {}; "rate-limit" = callPackage @@ -143539,6 +145153,8 @@ self: { pname = "razom-text-util"; version = "0.1.2.0"; sha256 = "ef1e986636f7f788e19979a026df4641e17a8d6b6b7398576d9ade2b8460d869"; + revision = "1"; + editedCabalFile = "96699ade66f11b3559e640f040ee602eaa8bfcdbe414c11a0025f679bd139651"; libraryHaskellDepends = [ base regex-applicative smaoin text text-position ]; @@ -143701,15 +145317,15 @@ self: { }: mkDerivation { pname = "react-flux"; - version = "1.0.0"; - sha256 = "3318ec6fcb6b8e6efc2033f366a1cbb11b850e39935dd86513e3c73b0c341e26"; + version = "1.0.1"; + sha256 = "97355e6cc6efb38ebb313d8062dd944a3055ecd9afa7de2e304dbac9b56d4367"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ aeson base bytestring deepseq mtl template-haskell text time unordered-containers ]; - executableHaskellDepends = [ base deepseq text time ]; + executableHaskellDepends = [ aeson base deepseq text time ]; homepage = "https://bitbucket.org/wuzzeb/react-flux"; description = "A binding to React based on the Flux application architecture for GHCJS"; license = stdenv.lib.licenses.bsd3; @@ -144785,6 +146401,8 @@ self: { pname = "reflex"; version = "0.3"; sha256 = "cd5bc7b5fad0c78267fe43039ef9bc0c7f123fc06288a5e93cee66e0c1bf84ab"; + revision = "1"; + editedCabalFile = "1bb117cf4fdf05f633d75b1e3e7998cff918e825ae8b8e95e695e00cf1e2d8c0"; libraryHaskellDepends = [ base containers dependent-map dependent-sum exception-transformers mtl primitive ref-tf semigroups template-haskell these transformers @@ -144793,7 +146411,6 @@ self: { testHaskellDepends = [ base containers dependent-map MemoTrie mtl ref-tf ]; - jailbreak = true; homepage = "https://github.com/ryantrinkle/reflex"; description = "Higher-order Functional Reactive Programming"; license = stdenv.lib.licenses.bsd3; @@ -144811,8 +146428,8 @@ self: { pname = "reflex-dom"; version = "0.2"; sha256 = "fd350b5e6d4613802bf37ebf15362b083af7bfec9ec22a56d1245bc3d2af86dd"; - revision = "1"; - editedCabalFile = "772321874e1c03eb514ba47c9866f0a856da71b708bffc27701f0a051bca1b24"; + revision = "2"; + editedCabalFile = "2aa20b3cf39f41e8850a54ab28b95b000065ccc5b65e44f0710171821e72cbe6"; libraryHaskellDepends = [ aeson base bifunctors bytestring containers data-default dependent-map dependent-sum dependent-sum-template directory @@ -144862,6 +146479,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "reflex-transformers" = callPackage + ({ mkDerivation, base, containers, lens, mtl, reflex, semigroups + , stateWriter, transformers + }: + mkDerivation { + pname = "reflex-transformers"; + version = "0.2"; + sha256 = "81ab5c2fd634285c6c3044310ec37082e2d2350a8857f29c3c615198593b8430"; + libraryHaskellDepends = [ + base containers lens mtl reflex semigroups stateWriter transformers + ]; + homepage = "http://github.com/saulzar/reflex-transformers"; + description = "Collections and switchable Monad transformers for Reflex"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "reform" = callPackage ({ mkDerivation, base, containers, mtl, text }: mkDerivation { @@ -145961,8 +147594,8 @@ self: { ({ mkDerivation, base, containers, hashable }: mkDerivation { pname = "renderable"; - version = "0.0.0.1"; - sha256 = "468bc3379eda6e6782fceb8555b4adb26a391e6ac81f3cb9a5bd24e4f646cc25"; + version = "0.1.0.0"; + sha256 = "ca6b9f6b724b5e94b3d01d0848dbbbb7e8084ed5e0701a32c38ea08b02b45df5"; libraryHaskellDepends = [ base containers hashable ]; homepage = "http://zyghost.com"; description = "Provides a nice API for rendering data types that change over time"; @@ -146239,8 +147872,8 @@ self: { ({ mkDerivation, base, hmatrix, repa, vector }: mkDerivation { pname = "repa-linear-algebra"; - version = "0.1.0.0"; - sha256 = "cf18443bd1b06b4d42bd81b3a86409fc6cc18467bc58880ddf937023f5b89b1a"; + version = "0.2.0.0"; + sha256 = "587c3e26e0495149087636690f999b03dc9ffe6e6aa12a4376f9293eb25095e5"; libraryHaskellDepends = [ base hmatrix repa vector ]; homepage = "https://github.com/marcinmrotek/repa-linear-algebra"; description = "HMatrix operations for Repa"; @@ -147034,6 +148667,8 @@ self: { pname = "rest-client"; version = "0.5.0.3"; sha256 = "6bcef592f14ca6cd69f930f747ae27eccb62a8e7224e867800030044ac6c8f0a"; + revision = "1"; + editedCabalFile = "35626ed815619ff388861f871c987480d2856655f76f961333eff29406b8d526"; libraryHaskellDepends = [ aeson-utils base bytestring case-insensitive data-default exceptions http-conduit http-types hxt hxt-pickle-utils @@ -147131,7 +148766,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "rest-core" = callPackage + "rest-core_0_36_0_6" = callPackage ({ mkDerivation, aeson, aeson-utils, base, bytestring , case-insensitive, errors, fclabels, HUnit, hxt, hxt-pickle-utils , json-schema, mtl, mtl-compat, multipart, random, rest-stringmap @@ -147158,34 +148793,58 @@ self: { ]; description = "Rest API library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "rest-core" = callPackage + ({ mkDerivation, aeson, aeson-utils, base, bytestring + , case-insensitive, errors, fclabels, HUnit, hxt, hxt-pickle-utils + , json-schema, mtl, mtl-compat, multipart, random, rest-stringmap + , rest-types, safe, split, test-framework, test-framework-hunit + , text, transformers, transformers-compat, unordered-containers + , uri-encode, utf8-string, uuid + }: + mkDerivation { + pname = "rest-core"; + version = "0.37"; + sha256 = "6a7e13b5e1ae6aadf53cc0dcbeca99a01b68737833962b2abdd50f4e6e9d066c"; + libraryHaskellDepends = [ + aeson aeson-utils base bytestring case-insensitive errors fclabels + hxt hxt-pickle-utils json-schema mtl mtl-compat multipart random + rest-stringmap rest-types safe split text transformers + transformers-compat unordered-containers uri-encode utf8-string + uuid + ]; + testHaskellDepends = [ + base bytestring HUnit mtl test-framework test-framework-hunit + transformers transformers-compat unordered-containers + ]; + description = "Rest API library"; + license = stdenv.lib.licenses.bsd3; }) {}; "rest-example" = callPackage - ({ mkDerivation, aeson, base, containers, filepath, generic-aeson + ({ mkDerivation, aeson, base, containers, generic-aeson , generic-xmlpickler, hxt, json-schema, mtl, rest-core, rest-gen - , safe, stm, text, time, transformers, transformers-base - , transformers-compat, unordered-containers + , safe, stm, text, time, transformers, transformers-compat + , unordered-containers }: mkDerivation { pname = "rest-example"; - version = "0.2.0.2"; - sha256 = "f1d66ed2a8d6f700cb60b5d046afe20010ac909cd3004d55cca75c2ee13fb88e"; - revision = "1"; - editedCabalFile = "b0f11f80fe7f78fb76fc0ccb243eb54fe7177a6eef051abbcb2409f8fc79aab2"; + version = "0.2.0.3"; + sha256 = "d71368418eca3128e887198f365b857011017e2515dd30856076b54d185b1a5e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson base containers filepath generic-aeson generic-xmlpickler hxt + aeson base containers generic-aeson generic-xmlpickler hxt json-schema mtl rest-core safe stm text time transformers - transformers-base transformers-compat unordered-containers + transformers-compat unordered-containers ]; - executableHaskellDepends = [ - base mtl rest-core rest-gen transformers-compat - ]; - jailbreak = true; + executableHaskellDepends = [ base rest-gen ]; homepage = "http://www.github.com/silkapp/rest"; description = "Example project for rest"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rest-gen_0_16_1_3" = callPackage @@ -147380,6 +149039,7 @@ self: { base fclabels haskell-src-exts HUnit rest-core test-framework test-framework-hunit ]; + jailbreak = true; description = "Documentation and client generation from rest definition"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -147407,6 +149067,7 @@ self: { base fclabels haskell-src-exts HUnit rest-core test-framework test-framework-hunit ]; + jailbreak = true; description = "Documentation and client generation from rest definition"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -147434,6 +149095,7 @@ self: { base fclabels haskell-src-exts HUnit rest-core test-framework test-framework-hunit ]; + jailbreak = true; description = "Documentation and client generation from rest definition"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -147463,6 +149125,7 @@ self: { base fclabels haskell-src-exts HUnit rest-core test-framework test-framework-hunit ]; + jailbreak = true; description = "Documentation and client generation from rest definition"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -147492,6 +149155,7 @@ self: { base fclabels haskell-src-exts HUnit rest-core test-framework test-framework-hunit ]; + jailbreak = true; description = "Documentation and client generation from rest definition"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -147519,6 +149183,7 @@ self: { base fclabels haskell-src-exts HUnit rest-core test-framework test-framework-hunit ]; + jailbreak = true; description = "Documentation and client generation from rest definition"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -147534,10 +149199,8 @@ self: { }: mkDerivation { pname = "rest-gen"; - version = "0.18.0.0"; - sha256 = "bca52143478e12a5fc91630c0df7f2206f8f60639d3a6cc568e4772696e92787"; - revision = "1"; - editedCabalFile = "8199543b3839b7b8e3fa7c6e768a2e6a9bc80ba520ec89db41865435be5cb666"; + version = "0.19.0.0"; + sha256 = "dc8b6e65acedd598a6592c5b0e92ef0f722b87c01af5c64b6caa30da4318840b"; libraryHaskellDepends = [ aeson base blaze-html Cabal code-builder directory fclabels filepath hashable haskell-src-exts HStringTemplate hxt json-schema @@ -147607,7 +149270,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "rest-happstack" = callPackage + "rest-happstack_0_2_10_8" = callPackage ({ mkDerivation, base, containers, happstack-server, mtl, rest-core , rest-gen, utf8-string }: @@ -147620,6 +149283,23 @@ self: { libraryHaskellDepends = [ base containers happstack-server mtl rest-core rest-gen utf8-string ]; + jailbreak = true; + description = "Rest driver for Happstack"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "rest-happstack" = callPackage + ({ mkDerivation, base, containers, happstack-server, mtl, rest-core + , rest-gen, utf8-string + }: + mkDerivation { + pname = "rest-happstack"; + version = "0.3.1"; + sha256 = "a2c2e1b1e1bfdc7870100eee642e488268e21117b08aad254342d14a53ce13d9"; + libraryHaskellDepends = [ + base containers happstack-server mtl rest-core rest-gen utf8-string + ]; description = "Rest driver for Happstack"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -147660,7 +149340,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "rest-snap" = callPackage + "rest-snap_0_1_17_18" = callPackage ({ mkDerivation, base, bytestring, case-insensitive, rest-core , safe, snap-core, unordered-containers, uri-encode, utf8-string }: @@ -147672,6 +149352,24 @@ self: { base bytestring case-insensitive rest-core safe snap-core unordered-containers uri-encode utf8-string ]; + jailbreak = true; + description = "Rest driver for Snap"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "rest-snap" = callPackage + ({ mkDerivation, base, bytestring, case-insensitive, rest-core + , safe, snap-core, unordered-containers, uri-encode, utf8-string + }: + mkDerivation { + pname = "rest-snap"; + version = "0.2"; + sha256 = "38947f552b90b08cf21567dd8931891f1c328546e5e5dda7e083fb2f3711eefc"; + libraryHaskellDepends = [ + base bytestring case-insensitive rest-core safe snap-core + unordered-containers uri-encode utf8-string + ]; description = "Rest driver for Snap"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -147796,6 +149494,8 @@ self: { pname = "rest-types"; version = "1.14.0.1"; sha256 = "645516a501f3f6d928c04b6022b111bd5411f301572f4de6b96ef7b15e480b32"; + revision = "1"; + editedCabalFile = "d3f5642df902f6d3a393839b8e365481fb1b16f4ed945290f85e2c9cda253794"; libraryHaskellDepends = [ aeson base case-insensitive generic-aeson generic-xmlpickler hxt json-schema rest-stringmap text uuid @@ -147844,7 +149544,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "rest-wai" = callPackage + "rest-wai_0_1_0_8" = callPackage ({ mkDerivation, base, bytestring, case-insensitive, containers , http-types, mime-types, mtl, rest-core, text , unordered-containers, wai @@ -147857,6 +149557,25 @@ self: { base bytestring case-insensitive containers http-types mime-types mtl rest-core text unordered-containers wai ]; + jailbreak = true; + description = "Rest driver for WAI applications"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "rest-wai" = callPackage + ({ mkDerivation, base, bytestring, case-insensitive, containers + , http-types, mime-types, mtl, rest-core, text + , unordered-containers, wai + }: + mkDerivation { + pname = "rest-wai"; + version = "0.2"; + sha256 = "92d7455c537d24c6d2ccadd9272cac385659ed2a828fbe20bca9249016897413"; + libraryHaskellDepends = [ + base bytestring case-insensitive containers http-types mime-types + mtl rest-core text unordered-containers wai + ]; description = "Rest driver for WAI applications"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -149475,8 +151194,8 @@ self: { }: mkDerivation { pname = "ruby-marshal"; - version = "0.1.0"; - sha256 = "f25c7f3f656b17348b90067176253d0a284d7019f1cdded214483b7ef47cb4b6"; + version = "0.1.1"; + sha256 = "d61ceb301b82e439b064eb4b1b84b1bb21c4ac9dc0239a0dc8d361cfe1b1800e"; libraryHaskellDepends = [ base bytestring cereal containers mtl string-conv vector ]; @@ -150469,19 +152188,20 @@ self: { ({ mkDerivation, aeson, array, base, base64-bytestring , basic-prelude, binary, bytestring, data-binary-ieee754, lens , monad-loops, QuickCheck, tasty, tasty-hunit, tasty-quickcheck - , text, unordered-containers, yaml-light + , template-haskell, text, unordered-containers, yaml-light }: mkDerivation { pname = "sbp"; - version = "0.50.9"; - sha256 = "401caeccf6dbc4d9452a450a4142dd9ed412f89981bd26a9315af7b1152c8261"; + version = "0.51.1"; + sha256 = "b98b5dd46c3e94801205b0c89741fc4aaf64550fbd7604117241584a786f096a"; libraryHaskellDepends = [ aeson array base base64-bytestring basic-prelude binary bytestring - data-binary-ieee754 lens monad-loops text unordered-containers + data-binary-ieee754 lens monad-loops template-haskell text + unordered-containers ]; testHaskellDepends = [ - aeson base basic-prelude bytestring QuickCheck tasty tasty-hunit - tasty-quickcheck yaml-light + aeson base base64-bytestring basic-prelude bytestring QuickCheck + tasty tasty-hunit tasty-quickcheck yaml-light ]; homepage = "https://github.com/swift-nav/libsbp"; description = "SwiftNav's SBP Library"; @@ -150539,15 +152259,15 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "sbv_5_0" = callPackage + "sbv_5_2" = callPackage ({ mkDerivation, array, async, base, containers, crackNum , data-binary-ieee754, deepseq, directory, filepath, HUnit, mtl , old-time, pretty, process, QuickCheck, random, syb }: mkDerivation { pname = "sbv"; - version = "5.0"; - sha256 = "eeb19fb888234565c9e5cfda6c760ed4c4650e33ba52400684f9c1ae6c55497f"; + version = "5.2"; + sha256 = "a32248c6d0c54fba629a90feb73b15c069ca257bf1017b4f34eeb50b4ac7d2db"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -151091,7 +152811,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "scientific" = callPackage + "scientific_0_3_3_8" = callPackage ({ mkDerivation, array, base, bytestring, deepseq, ghc-prim , hashable, integer-gmp, QuickCheck, smallcheck, tasty , tasty-ant-xml, tasty-hunit, tasty-quickcheck, tasty-smallcheck @@ -151108,9 +152828,11 @@ self: { base bytestring QuickCheck smallcheck tasty tasty-ant-xml tasty-hunit tasty-quickcheck tasty-smallcheck text ]; + jailbreak = true; homepage = "https://github.com/basvandijk/scientific"; description = "Numbers represented using scientific notation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scientific_0_3_4_0" = callPackage @@ -151123,6 +152845,8 @@ self: { pname = "scientific"; version = "0.3.4.0"; sha256 = "fd681501f742f55fb092c967a42f537c8059db40f8b4a8870b07fe499944e97d"; + revision = "1"; + editedCabalFile = "04d40b9bb52883491e0c46f9f6d2942ec96a2de8a3dadb072cf0260f33cee208"; libraryHaskellDepends = [ base binary bytestring containers deepseq ghc-prim hashable integer-gmp text vector @@ -151137,6 +152861,29 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "scientific" = callPackage + ({ mkDerivation, base, binary, bytestring, containers, deepseq + , ghc-prim, hashable, integer-gmp, QuickCheck, smallcheck, tasty + , tasty-ant-xml, tasty-hunit, tasty-quickcheck, tasty-smallcheck + , text, vector + }: + mkDerivation { + pname = "scientific"; + version = "0.3.4.2"; + sha256 = "f6d937039ee867d2ea4a5a4fc879c9e027e162da909b0c9957ff31a0f66c3556"; + libraryHaskellDepends = [ + base binary bytestring containers deepseq ghc-prim hashable + integer-gmp text vector + ]; + testHaskellDepends = [ + base binary bytestring QuickCheck smallcheck tasty tasty-ant-xml + tasty-hunit tasty-quickcheck tasty-smallcheck text + ]; + homepage = "https://github.com/basvandijk/scientific"; + description = "Numbers represented using scientific notation"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "scion" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, directory , filepath, ghc, ghc-paths, ghc-syb, hslogger, json, multiset @@ -151341,8 +153088,8 @@ self: { pname = "scotty"; version = "0.10.2"; sha256 = "86ce314927412b8eb38a8e999ecd1fcb66623b1eb801cdef62846d9b97409c4a"; - revision = "2"; - editedCabalFile = "d7e50d56eadb7193eb65d6038576abcaf1931f35331034e0335f0c57dcc87e09"; + revision = "3"; + editedCabalFile = "ef0b6e3b45bfb35f8fff883561d093eb4a3cafad169e2e0b410bf20fbdb299f8"; libraryHaskellDepends = [ aeson base blaze-builder bytestring case-insensitive data-default-class http-types monad-control mtl nats network @@ -151747,12 +153494,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {inherit (pkgs) SDL2;}; + "sdl2-cairo" = callPackage + ({ mkDerivation, base, cairo, linear, mtl, random, sdl2, time }: + mkDerivation { + pname = "sdl2-cairo"; + version = "0.1.0.1"; + sha256 = "c544c6efc61dea4a81068fbac71ae2da92a2da22dfd4012b127725f63b70f720"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base cairo linear mtl random sdl2 time ]; + description = "Binding to render with Cairo on SDL textures and optional convenience drawing API"; + license = stdenv.lib.licenses.mit; + }) {}; + "sdl2-compositor" = callPackage ({ mkDerivation, base, linear, sdl2, transformers }: mkDerivation { pname = "sdl2-compositor"; - version = "1.0.1"; - sha256 = "9fe3ecccce3857e588254163282ce37fb2168359d83b85b3ec8bbbeb4a56dc0a"; + version = "1.1"; + sha256 = "020d61ce6bd9dff14b18352d90d56310d3b7e7fad50ac8d82961cf2c6889f991"; libraryHaskellDepends = [ base linear sdl2 transformers ]; description = "image compositing with sdl2 - declarative style"; license = stdenv.lib.licenses.gpl3; @@ -151826,7 +153586,7 @@ self: { homepage = "https://github.com/adamwalker/sdr"; description = "A software defined radio library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + hydraPlatforms = [ "x86_64-linux" ]; }) {}; "seacat" = callPackage @@ -151959,7 +153719,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openssl;}; - "second-transfer" = callPackage + "second-transfer_0_6_1_0" = callPackage ({ mkDerivation, attoparsec, base, base16-bytestring, binary , bytestring, clock, conduit, containers, cpphs, deepseq , exceptions, hashable, hashtables, hslogger, http2, HUnit, lens @@ -151989,8 +153749,62 @@ self: { homepage = "https://www.httptwo.com/second-transfer/"; description = "Second Transfer HTTP/2 web server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openssl;}; + "second-transfer" = callPackage + ({ mkDerivation, attoparsec, base, base16-bytestring, binary + , bytestring, clock, conduit, containers, cpphs, deepseq + , exceptions, hashable, hashtables, hslogger, http2, HUnit, lens + , network, network-uri, openssl, pqueue, SafeSemaphore, stm, text + , time, transformers, unordered-containers + }: + mkDerivation { + pname = "second-transfer"; + version = "0.7.1.0"; + sha256 = "ece780d51ef2d3efd7360ace76cc88ca3efb36f151aa8aecffcae48e8c39515f"; + libraryHaskellDepends = [ + attoparsec base base16-bytestring binary bytestring clock conduit + containers deepseq exceptions hashable hashtables hslogger http2 + lens network network-uri pqueue SafeSemaphore stm text time + transformers + ]; + librarySystemDepends = [ openssl ]; + libraryToolDepends = [ cpphs ]; + testHaskellDepends = [ + attoparsec base base16-bytestring binary bytestring clock conduit + containers deepseq exceptions hashable hashtables hslogger http2 + HUnit lens network network-uri pqueue SafeSemaphore stm text time + transformers unordered-containers + ]; + testToolDepends = [ cpphs ]; + doCheck = false; + homepage = "https://www.httptwo.com/second-transfer/"; + description = "Second Transfer HTTP/2 web server"; + license = stdenv.lib.licenses.bsd3; + }) {inherit (pkgs) openssl;}; + + "secp256k1" = callPackage + ({ mkDerivation, base, base16-bytestring, bytestring, cryptohash + , entropy, HUnit, mtl, QuickCheck, secp256k1, test-framework + , test-framework-hunit, test-framework-quickcheck2 + }: + mkDerivation { + pname = "secp256k1"; + version = "0.1.1"; + sha256 = "ea4dadb68f6704d9dd30c3b7aa92c9fad1c0ebc00ac6e2d64457af31f0112c1f"; + libraryHaskellDepends = [ base bytestring entropy mtl ]; + librarySystemDepends = [ secp256k1 ]; + testHaskellDepends = [ + base base16-bytestring bytestring cryptohash entropy HUnit mtl + QuickCheck 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; + }) {secp256k1 = null;}; + "secret-santa" = callPackage ({ mkDerivation, base, containers, diagrams-cairo, diagrams-lib , haskell-qrencode, random @@ -153045,7 +154859,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant" = callPackage + "servant_0_4_4_4" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring , bytestring-conversion, case-insensitive, directory, doctest , filemanip, filepath, hspec, http-media, http-types, network-uri @@ -153069,6 +154883,33 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "A family of combinators for defining webservices APIs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring + , bytestring-conversion, case-insensitive, directory, doctest + , filemanip, filepath, hspec, http-media, http-types, network-uri + , parsec, QuickCheck, quickcheck-instances, string-conversions + , text, url + }: + mkDerivation { + pname = "servant"; + version = "0.4.4.5"; + sha256 = "b82abafe5bd1357c64c36c344ab38dc8fa8ad8f40126b86323da9bfc4047f544"; + libraryHaskellDepends = [ + aeson attoparsec base bytestring bytestring-conversion + case-insensitive http-media http-types network-uri + string-conversions text + ]; + testHaskellDepends = [ + aeson attoparsec base bytestring directory doctest filemanip + filepath hspec parsec QuickCheck quickcheck-instances + string-conversions text url + ]; + homepage = "http://haskell-servant.github.io/"; + description = "A family of combinators for defining webservices APIs"; + license = stdenv.lib.licenses.bsd3; }) {}; "servant-JuicyPixels_0_1_0_0" = callPackage @@ -153118,8 +154959,8 @@ self: { ({ mkDerivation, base, blaze-html, http-media, servant }: mkDerivation { pname = "servant-blaze"; - version = "0.4.4.4"; - sha256 = "58e3d5922b9031559aebc7ae99e52712d6a208cb2c0164da5baffb4cd55cafa1"; + version = "0.4.4.5"; + sha256 = "b2ac467c4cc6e3e439436616f9132818e1023ea048e918d87f133342705bc991"; libraryHaskellDepends = [ base blaze-html http-media servant ]; homepage = "http://haskell-servant.github.io/"; description = "Blaze-html support for servant"; @@ -153206,7 +155047,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant-client" = callPackage + "servant-client_0_4_4_4" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, deepseq , either, exceptions, hspec, http-client, http-client-tls , http-media, http-types, HUnit, network, network-uri, QuickCheck @@ -153230,6 +155071,33 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "automatical derivation of querying functions for servant webservices"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant-client" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring, deepseq + , either, exceptions, hspec, http-client, http-client-tls + , http-media, http-types, HUnit, network, network-uri, QuickCheck + , safe, servant, servant-server, string-conversions, text + , transformers, wai, warp + }: + mkDerivation { + pname = "servant-client"; + version = "0.4.4.5"; + sha256 = "7ca47d0bb95268222fe19d34b31acf501ea89d7a9a4ce77a3ebc0cd18386b953"; + libraryHaskellDepends = [ + aeson attoparsec base bytestring either exceptions http-client + http-client-tls http-media http-types network-uri safe servant + string-conversions text transformers + ]; + testHaskellDepends = [ + aeson base bytestring deepseq either hspec http-client http-media + http-types HUnit network QuickCheck servant servant-server text wai + warp + ]; + homepage = "http://haskell-servant.github.io/"; + description = "automatical derivation of querying functions for servant webservices"; + license = stdenv.lib.licenses.bsd3; }) {}; "servant-docs_0_3_1" = callPackage @@ -153313,7 +155181,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant-docs" = callPackage + "servant-docs_0_4_4_4" = callPackage ({ mkDerivation, aeson, base, bytestring, bytestring-conversion , case-insensitive, hashable, hspec, http-media, http-types, lens , servant, string-conversions, text, unordered-containers @@ -153339,6 +155207,35 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "generate API docs for your servant webservice"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant-docs" = callPackage + ({ mkDerivation, aeson, base, bytestring, bytestring-conversion + , case-insensitive, hashable, hspec, http-media, http-types, lens + , servant, string-conversions, text, unordered-containers + }: + mkDerivation { + pname = "servant-docs"; + version = "0.4.4.5"; + sha256 = "55f4c036cc96aebac19eeea43af412f696002a8e3497a95ff4aa25429c7c474e"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring bytestring-conversion case-insensitive hashable + http-media http-types lens servant string-conversions text + unordered-containers + ]; + executableHaskellDepends = [ + aeson base bytestring-conversion lens servant string-conversions + text + ]; + testHaskellDepends = [ + aeson base hspec lens servant string-conversions + ]; + homepage = "http://haskell-servant.github.io/"; + description = "generate API docs for your servant webservice"; + license = stdenv.lib.licenses.bsd3; }) {}; "servant-ede" = callPackage @@ -153373,8 +155270,8 @@ self: { }: mkDerivation { pname = "servant-examples"; - version = "0.4.4.4"; - sha256 = "e180ff93d58ebb467097b337e00f77b42e9780880627ab52a2b8d69363fc7de4"; + version = "0.4.4.5"; + sha256 = "51a0f8953c3eeed16c6745286d858338f657d000af9ad2f6a7a7531688426425"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -153459,7 +155356,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant-jquery" = callPackage + "servant-jquery_0_4_4_4" = callPackage ({ mkDerivation, aeson, base, charset, filepath, hspec , hspec-expectations, language-ecmascript, lens, servant , servant-server, stm, text, transformers, warp @@ -153480,14 +155377,38 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "Automatically derive (jquery) javascript functions to query servant webservices"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant-jquery" = callPackage + ({ mkDerivation, aeson, base, charset, filepath, hspec + , hspec-expectations, language-ecmascript, lens, servant + , servant-server, stm, text, transformers, warp + }: + mkDerivation { + pname = "servant-jquery"; + version = "0.4.4.5"; + sha256 = "33059d2a707bfad6fcd3f92cdaac69da9767dce1f2e11f7c4c9b2ad9df1d1b3c"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base charset lens servant text ]; + executableHaskellDepends = [ + aeson base filepath servant servant-server stm transformers warp + ]; + testHaskellDepends = [ + base hspec hspec-expectations language-ecmascript lens servant + ]; + homepage = "http://haskell-servant.github.io/"; + description = "Automatically derive (jquery) javascript functions to query servant webservices"; + license = stdenv.lib.licenses.bsd3; }) {}; "servant-lucid" = callPackage ({ mkDerivation, base, http-media, lucid, servant }: mkDerivation { pname = "servant-lucid"; - version = "0.4.4.4"; - sha256 = "c42702b20da1f8daea4c2a633e777214e524a2afac96c0b559209351f1f1cd0d"; + version = "0.4.4.5"; + sha256 = "85c922b88dbf4c7c0e8447e326938ab1f3f8dd60400f1b23a0d63109e6159913"; libraryHaskellDepends = [ base http-media lucid servant ]; homepage = "http://haskell-servant.github.io/"; description = "Servant support for lucid"; @@ -153500,8 +155421,8 @@ self: { }: mkDerivation { pname = "servant-mock"; - version = "0.4.4.4"; - sha256 = "1df192ac10aea342cffd5da509f9c5eca40b659fa3c7b77aad87ec0bbb82f35c"; + version = "0.4.4.5"; + sha256 = "3b1cb43127ceb10979fa056c847e588d030293ee8842e13d1c18458b886d7ed6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -153732,7 +155653,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant-server" = callPackage + "servant-server_0_4_4_4" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring , bytestring-conversion, directory, doctest, either, exceptions , filemanip, filepath, hspec, hspec-wai, http-types, mmorph, mtl @@ -153761,6 +155682,38 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "A family of combinators for defining webservices APIs and serving them"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant-server" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring + , bytestring-conversion, directory, doctest, either, exceptions + , filemanip, filepath, hspec, hspec-wai, http-types, mmorph, mtl + , network, network-uri, parsec, QuickCheck, safe, servant, split + , string-conversions, system-filepath, temporary, text + , transformers, wai, wai-app-static, wai-extra, warp + }: + mkDerivation { + pname = "servant-server"; + version = "0.4.4.5"; + sha256 = "30d9668ff406911356a0ebcba7591924c5bb5c55a228e5682e394a66ee593a58"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson attoparsec base bytestring either filepath http-types mmorph + mtl network-uri safe servant split string-conversions + system-filepath text transformers wai wai-app-static warp + ]; + executableHaskellDepends = [ aeson base servant text wai warp ]; + testHaskellDepends = [ + aeson base bytestring bytestring-conversion directory doctest + either exceptions filemanip filepath hspec hspec-wai http-types mtl + network parsec QuickCheck servant string-conversions temporary text + transformers wai wai-extra warp + ]; + homepage = "http://haskell-servant.github.io/"; + description = "A family of combinators for defining webservices APIs and serving them"; + license = stdenv.lib.licenses.bsd3; }) {}; "serversession" = callPackage @@ -154182,6 +156135,8 @@ self: { pname = "settings"; version = "0.2.0.0"; sha256 = "2e289056f639205bb57597c1e8ff14d2e25404564091b8517fc3ff9f9d0c2104"; + revision = "1"; + editedCabalFile = "2259919e1141edbc4c231d4c86b5d0890d26fb3cca5b12c783966d064969dfd7"; libraryHaskellDepends = [ aeson aeson-pretty base bytestring time-units unordered-containers ]; @@ -154344,8 +156299,8 @@ self: { ({ mkDerivation, base, binary, bytestring, io-streams, SHA }: mkDerivation { pname = "sha-streams"; - version = "0.2.0"; - sha256 = "de53ff3189b191d2217fe61b6c2142888e501eb0f9a35a4205d8528fcd648191"; + version = "0.2.1"; + sha256 = "920bb61aed58612510d27c6bbe8ca21444717c13f7b2e658f3c545f32cf09370"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base binary bytestring io-streams SHA ]; @@ -154700,6 +156655,7 @@ self: { unordered-containers ]; testHaskellDepends = [ base directory doctest hspec shake ]; + doCheck = false; homepage = "https://github.com/samplecount/shake-language-c"; description = "Utilities for cross-compiling with Shake"; license = stdenv.lib.licenses.asl20; @@ -154719,6 +156675,7 @@ self: { unordered-containers ]; testHaskellDepends = [ base directory doctest hspec shake ]; + doCheck = false; homepage = "https://github.com/samplecount/shake-language-c"; description = "Utilities for cross-compiling with Shake"; license = stdenv.lib.licenses.asl20; @@ -154738,13 +156695,14 @@ self: { unordered-containers ]; testHaskellDepends = [ base directory doctest hspec shake ]; + doCheck = false; homepage = "https://github.com/samplecount/shake-language-c"; description = "Utilities for cross-compiling with Shake"; license = stdenv.lib.licenses.asl20; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "shake-language-c" = callPackage + "shake-language-c_0_8_1" = callPackage ({ mkDerivation, base, data-default-class, directory, doctest , fclabels, hspec, process, shake, split, unordered-containers }: @@ -154757,6 +156715,27 @@ self: { unordered-containers ]; testHaskellDepends = [ base directory doctest hspec shake ]; + doCheck = false; + homepage = "https://github.com/samplecount/shake-language-c"; + description = "Utilities for cross-compiling with Shake"; + license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "shake-language-c" = callPackage + ({ mkDerivation, base, data-default-class, directory, doctest + , fclabels, hspec, process, shake, split, unordered-containers + }: + mkDerivation { + pname = "shake-language-c"; + version = "0.8.3"; + sha256 = "b5257f49823fa1553b40242a95e0235f8505562215381e170d3c0e36a7a5be28"; + libraryHaskellDepends = [ + base data-default-class fclabels process shake split + unordered-containers + ]; + testHaskellDepends = [ base directory doctest hspec shake ]; + doCheck = false; homepage = "https://github.com/samplecount/shake-language-c"; description = "Utilities for cross-compiling with Shake"; license = stdenv.lib.licenses.asl20; @@ -156874,14 +158853,16 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "singletons_2_0_0_1" = callPackage + "singletons_2_0_0_2" = callPackage ({ mkDerivation, base, Cabal, containers, directory, filepath, mtl , process, syb, tasty, tasty-golden, template-haskell, th-desugar }: mkDerivation { pname = "singletons"; - version = "2.0.0.1"; - sha256 = "ff21d7c55dcb6b92bddc67bcfbae23cb50f1dfb492c8ba9808f30c36ab65e447"; + version = "2.0.0.2"; + sha256 = "981cb6a02978ca0e7eb62117a1df8ba4db16eef159aebfafe53e396e86e16f3d"; + revision = "1"; + editedCabalFile = "219b117097e85e93c213600da8051784de3090ae7088c2d3d921ffee8373c28b"; libraryHaskellDepends = [ base containers mtl syb template-haskell th-desugar ]; @@ -157005,6 +158986,7 @@ self: { base constraints deepseq equational-reasoning hashable monomorphic singletons type-natural ]; + jailbreak = true; homepage = "https://github.com/konn/sized-vector"; description = "Size-parameterized vector types and functions"; license = stdenv.lib.licenses.bsd3; @@ -157590,6 +159572,8 @@ self: { pname = "smaoin"; version = "0.3.0.0"; sha256 = "378bff0ab90d63ddc20a3cbe42a0b441d97f8f54c291958e09603dee6fbb2848"; + revision = "1"; + editedCabalFile = "1644cbb1dc0081d93276a72cc5c5471bed4647d833e6fd67282cfb62c7f81936"; libraryHaskellDepends = [ base bytestring random text uuid ]; testHaskellDepends = [ base bytestring QuickCheck ]; homepage = "http://rel4tion.org/projects/smaoin-hs/"; @@ -160563,6 +162547,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "speedy-slice" = callPackage + ({ mkDerivation, base, containers, lens, mcmc-types + , mwc-probability, pipes, primitive, transformers + }: + mkDerivation { + pname = "speedy-slice"; + version = "0.1.3"; + sha256 = "8be147fe85bf02f1e5bb7cc32e3a61c418354af8875fadb0cd20e4fe804f3992"; + libraryHaskellDepends = [ + base lens mcmc-types mwc-probability pipes primitive transformers + ]; + testHaskellDepends = [ base containers mwc-probability ]; + homepage = "http://github.com/jtobin/speedy-slice"; + description = "Speedy slice sampling"; + license = stdenv.lib.licenses.mit; + }) {}; + "spelling-suggest" = callPackage ({ mkDerivation, base, edit-distance, parseargs, phonetic-code , sqlite @@ -161346,8 +163347,8 @@ self: { }: mkDerivation { pname = "ssh"; - version = "0.3.1"; - sha256 = "324f512e1d3178075cf769bfb91d22f762e3e04d22d4b119b520177898cd9dec"; + version = "0.3.2"; + sha256 = "01e7138edb65300fb4285508fb5b31012e9b62ef08984bc5a1c90a80b62626bf"; libraryHaskellDepends = [ asn1-encoding asn1-types base base64-string binary bytestring cereal containers crypto-api crypto-pubkey-types @@ -162433,6 +164434,18 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "standalone-derive-topdown" = callPackage + ({ mkDerivation, base, mtl, template-haskell }: + mkDerivation { + pname = "standalone-derive-topdown"; + version = "0.0.0.1"; + sha256 = "657bcd87ed4ffdf49461529faf3c292a8a480fce8c88c5af1eaa23b1c7e9d765"; + libraryHaskellDepends = [ base mtl template-haskell ]; + homepage = "https://github.com/HaskellZhangSong/TopdownDerive"; + description = "This package will derive class instance along the data type declaration tree"; + license = stdenv.lib.licenses.mit; + }) {}; + "standalone-haddock" = callPackage ({ mkDerivation, base, Cabal, containers, directory, filepath , optparse-applicative @@ -162565,8 +164578,8 @@ self: { }: mkDerivation { pname = "stateWriter"; - version = "0.2.4"; - sha256 = "b0cb37427724398c3297a9e2ae1e59e8b490b34bd993352ff1020ff2dbbae29b"; + version = "0.2.6"; + sha256 = "77f9c3bd7cf0fc433f2ba9f70481f6748a18151891ee5af9a4af5b0d06d4bf44"; libraryHaskellDepends = [ base mtl transformers ]; testHaskellDepends = [ base free hspec mtl QuickCheck ]; description = "A faster variant of the RWS monad transformers"; @@ -163857,16 +165870,18 @@ self: { }) {}; "streaming" = callPackage - ({ mkDerivation, base, bytestring, mmorph, mtl, transformers }: + ({ mkDerivation, base, bytestring, mmorph, mtl, random, time + , transformers + }: mkDerivation { pname = "streaming"; - version = "0.1.0.20"; - sha256 = "59214d21300f44945b23f8e71c82445993ce854c95c0a22a8f747792d0d2deaa"; + version = "0.1.1.1"; + sha256 = "fe79e2360dc650cfc8987114d23760fa85fae5953b44b7f0e718441397bbf7b3"; libraryHaskellDepends = [ - base bytestring mmorph mtl transformers + base bytestring mmorph mtl random time transformers ]; homepage = "https://github.com/michaelt/streaming"; - description = "an elementary streaming prelude and a free monad transformer optimized for streaming applications"; + description = "an elementary streaming prelude and a general monad transformer for streaming applications"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -163876,8 +165891,8 @@ self: { }: mkDerivation { pname = "streaming-bytestring"; - version = "0.1.0.8"; - sha256 = "1ac455477c88342c3f98df791086b37be8c3445eab8d6074f00e8dc1f91293d0"; + version = "0.1.1.0"; + sha256 = "cf32e7c4db70d1e4ee1410188ea1b7e33e474d349b4fe88a9e06591f4e77e08b"; libraryHaskellDepends = [ base bytestring deepseq mmorph mtl streaming transformers ]; @@ -164162,17 +166177,17 @@ self: { }) {}; "streaming-utils" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, http-client - , http-client-tls, mtl, pipes, streaming, streaming-bytestring - , transformers + ({ mkDerivation, aeson, attoparsec, base, bytestring, http-client + , http-client-tls, json-stream, mtl, pipes, streaming + , streaming-bytestring, transformers }: mkDerivation { pname = "streaming-utils"; - version = "0.1.0.1"; - sha256 = "bafec5fba8521c8ff8220f823c6c9a256a269b2ed3d2ef9e6777040d529316ec"; + version = "0.1.1.1"; + sha256 = "a8dac6dddaed0d916906b1309852d69a6d5568af1136e631bd67c33949589eaf"; libraryHaskellDepends = [ - attoparsec base bytestring http-client http-client-tls mtl pipes - streaming streaming-bytestring transformers + aeson attoparsec base bytestring http-client http-client-tls + json-stream mtl pipes streaming streaming-bytestring transformers ]; homepage = "https://github.com/michaelt/streaming-utils"; description = "http, attoparsec and pipes utilities for streaming and streaming-bytestring"; @@ -166337,6 +168352,24 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "synthesizer-filter" = callPackage + ({ mkDerivation, base, containers, numeric-prelude, numeric-quest + , synthesizer-core, transformers, utility-ht + }: + mkDerivation { + pname = "synthesizer-filter"; + version = "0.4.0.1"; + sha256 = "eed6f280d102a5d0e161796de9ba60198a6733441f6c2adee62829b76b43c161"; + libraryHaskellDepends = [ + base containers numeric-prelude numeric-quest synthesizer-core + transformers utility-ht + ]; + homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; + description = "Audio signal processing coded in Haskell: Filter networks"; + license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "synthesizer-inference" = callPackage ({ mkDerivation, base, event-list, non-negative, numeric-prelude , random, synthesizer-core, transformers, UniqueLogicNP, utility-ht @@ -167666,12 +169699,14 @@ self: { revision = "1"; editedCabalFile = "4b0749397f9f6aac3506e07c9043371ac8a2c5605dc4370501904f38c1a3c3b4"; libraryHaskellDepends = [ - array base bytestring directory filepath time + array base bytestring directory filepath old-time ]; testHaskellDepends = [ array base bytestring directory filepath old-time QuickCheck tasty tasty-quickcheck time ]; + jailbreak = true; + doCheck = false; description = "Reading, writing and manipulating \".tar\" archive files."; license = stdenv.lib.licenses.bsd3; }) {}; @@ -167797,7 +169832,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "tasty" = callPackage + "tasty_0_10_1_2" = callPackage ({ mkDerivation, ansi-terminal, async, base, containers, deepseq , mtl, optparse-applicative, regex-tdfa-rc, stm, tagged, time , unbounded-delays @@ -167813,25 +169848,25 @@ self: { homepage = "http://documentup.com/feuerbach/tasty"; description = "Modern and extensible testing framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "tasty_0_11" = callPackage - ({ mkDerivation, ansi-terminal, async, base, containers, deepseq - , mtl, optparse-applicative, regex-tdfa-rc, stm, tagged, time + "tasty" = callPackage + ({ mkDerivation, ansi-terminal, async, base, clock, containers + , deepseq, mtl, optparse-applicative, regex-tdfa-rc, stm, tagged , unbounded-delays }: mkDerivation { pname = "tasty"; - version = "0.11"; - sha256 = "98bc7bd0084532002f8104b234670891a7a623abc4cd27b8e458b78d34e01155"; + version = "0.11.0.1"; + sha256 = "7dca0b1f89e25911c4259fa45ace6c7048b700aa6d3fc5e10b4bf35a77bc0ab2"; libraryHaskellDepends = [ - ansi-terminal async base containers deepseq mtl - optparse-applicative regex-tdfa-rc stm tagged time unbounded-delays + ansi-terminal async base clock containers deepseq mtl + optparse-applicative regex-tdfa-rc stm tagged unbounded-delays ]; homepage = "http://documentup.com/feuerbach/tasty"; description = "Modern and extensible testing framework"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tasty-ant-xml_1_0_1" = callPackage @@ -167846,6 +169881,7 @@ self: { base containers generic-deriving ghc-prim mtl stm tagged tasty transformers xml ]; + jailbreak = true; homepage = "http://github.com/ocharles/tasty-ant-xml"; description = "Render tasty output to XML for Jenkins"; license = stdenv.lib.licenses.bsd3; @@ -167876,7 +169912,6 @@ self: { version = "0.11.0.1"; sha256 = "4e706d7f54ed48fd792eaacd1fbfc18d7febdbbb415ce9d1847e9561f76d7890"; libraryHaskellDepends = [ base tagged tasty ]; - jailbreak = true; homepage = "http://github.com/nomeata/tasty-expected-failure"; description = "Mark tasty tests as failure expected"; license = stdenv.lib.licenses.mit; @@ -167905,7 +169940,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "tasty-golden" = callPackage + "tasty-golden_2_3_0_1" = callPackage ({ mkDerivation, async, base, bytestring, containers, deepseq , directory, filepath, mtl, optparse-applicative, process, tagged , tasty, tasty-hunit, temporary-rc @@ -167924,6 +169959,28 @@ self: { homepage = "https://github.com/feuerbach/tasty-golden"; description = "Golden tests support for tasty"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "tasty-golden" = callPackage + ({ mkDerivation, async, base, bytestring, containers, deepseq + , directory, filepath, mtl, optparse-applicative, process, tagged + , tasty, tasty-hunit, temporary, temporary-rc + }: + mkDerivation { + pname = "tasty-golden"; + version = "2.3.0.2"; + sha256 = "b02bf439e0b8bb9182ace90791c00b5f02db7a96f641ee1c1db69cae03a5f658"; + libraryHaskellDepends = [ + async base bytestring containers deepseq directory filepath mtl + optparse-applicative process tagged tasty temporary + ]; + testHaskellDepends = [ + base directory filepath process tasty tasty-hunit temporary-rc + ]; + homepage = "https://github.com/feuerbach/tasty-golden"; + description = "Golden tests support for tasty"; + license = stdenv.lib.licenses.mit; }) {}; "tasty-hspec_1_1" = callPackage @@ -168148,7 +170205,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "tasty-quickcheck" = callPackage + "tasty-quickcheck_0_8_3_2" = callPackage ({ mkDerivation, base, pcre-light, QuickCheck, tagged, tasty , tasty-hunit }: @@ -168161,6 +170218,22 @@ self: { homepage = "http://documentup.com/feuerbach/tasty"; description = "QuickCheck support for the Tasty test framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "tasty-quickcheck" = callPackage + ({ mkDerivation, base, pcre-light, QuickCheck, tagged, tasty + , tasty-hunit + }: + mkDerivation { + pname = "tasty-quickcheck"; + version = "0.8.4"; + sha256 = "365f4cb6db70cce36ebdc133a2f6388cab71df2ca11f223f0458565956ec3297"; + libraryHaskellDepends = [ base QuickCheck tagged tasty ]; + testHaskellDepends = [ base pcre-light tasty tasty-hunit ]; + homepage = "http://documentup.com/feuerbach/tasty"; + description = "QuickCheck support for the Tasty test framework"; + license = stdenv.lib.licenses.mit; }) {}; "tasty-rerun_1_1_4" = callPackage @@ -168175,6 +170248,7 @@ self: { base containers mtl optparse-applicative reducers split stm tagged tasty transformers ]; + jailbreak = true; homepage = "http://github.com/ocharles/tasty-rerun"; description = "Run tests by filtering the test tree depending on the result of previous test runs"; license = stdenv.lib.licenses.bsd3; @@ -168246,6 +170320,7 @@ self: { testHaskellDepends = [ base directory tasty tasty-golden tasty-hunit ]; + jailbreak = true; homepage = "https://github.com/michaelxavier/tasty-tap"; description = "TAP (Test Anything Protocol) Version 13 formatter for tasty"; license = stdenv.lib.licenses.mit; @@ -168726,6 +170801,7 @@ self: { testHaskellDepends = [ base directory resourcet tasty tasty-hunit transformers ]; + jailbreak = true; homepage = "http://www.github.com/ttuegel/temporary-resourcet"; description = "Portable temporary files and directories with automatic deletion"; license = stdenv.lib.licenses.bsd3; @@ -170072,8 +172148,8 @@ self: { pname = "text-position"; version = "0.1.0.0"; sha256 = "e8055a2d125d84eb861b3e3c9de5339552284957dcbef96053f56f7ef92cb131"; - revision = "1"; - editedCabalFile = "45fd633a94e0a13dbaeeb1791725a72d185f54027569e967f8006f07df67d586"; + revision = "2"; + editedCabalFile = "47ad75275f3f8f705336ebac8adc9af40682a530668e2e56655a243aa516c8e3"; libraryHaskellDepends = [ base regex-applicative ]; testHaskellDepends = [ base QuickCheck regex-applicative ]; jailbreak = true; @@ -170519,6 +172595,7 @@ self: { homepage = "https://github.com/seereason/th-context"; description = "Test instance context"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "th-desugar_1_4_2" = callPackage @@ -170957,8 +173034,8 @@ self: { }: mkDerivation { pname = "th-typegraph"; - version = "0.28"; - sha256 = "cce1c06f32b59362d6ccdb36aa0b70468eec47309381dc0cb0c396c572869337"; + version = "0.31"; + sha256 = "b78d39424245b1493e2b693971d960123b09aca45e0c389be588eb473672704a"; libraryHaskellDepends = [ base base-compat containers data-default haskell-src-exts lens mtl mtl-unleashed set-extra syb template-haskell th-desugar th-orphans @@ -170995,6 +173072,7 @@ self: { testHaskellDepends = [ base bytestring tasty tasty-hunit text time ]; + jailbreak = true; homepage = "http://github.com/pjones/themoviedb"; description = "Haskell API bindings for http://themoviedb.org"; license = stdenv.lib.licenses.mit; @@ -171246,8 +173324,8 @@ self: { }: mkDerivation { pname = "threads-supervisor"; - version = "1.0.3.0"; - sha256 = "b64e2b63d65808de4a64a1157ebacb831efc549fdbd38a97012f48ecb3a437c6"; + version = "1.0.4.0"; + sha256 = "6d48e9007275c6ff3ce01c35f89a106110878e65c67c654f3432c3c3d6b9e02f"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -171793,8 +173871,8 @@ self: { pname = "time-interval"; version = "0.1.0.0"; sha256 = "6cfb53e61d573d649273ced38f19e9f84279ed826197b47cfab0587aeb85598d"; - revision = "2"; - editedCabalFile = "c6488aa6b8901b7b1c03f87c1f187448b9ce18dfa6e3c8eb011d57c9f38f486d"; + revision = "3"; + editedCabalFile = "bb8d2204c5dcdf0a749985524cd52debe95511ad8ed785c6ab6e19e877de46ae"; libraryHaskellDepends = [ base time-units ]; homepage = "http://rel4tion.org/projects/time-interval/"; description = "Use a time unit class, but hold a concrete time type"; @@ -171983,6 +174061,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "timeless" = callPackage + ({ mkDerivation, base, time, transformers }: + mkDerivation { + pname = "timeless"; + version = "0.8.0.2"; + sha256 = "bb32b4ed361bbb17d2d86d19958513a0231d9789c615a52975cedb7efba99ad7"; + libraryHaskellDepends = [ base time transformers ]; + homepage = "https://github.com/carldong/timeless"; + description = "An Arrow based Functional Reactive Programming library"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "timeout" = callPackage ({ mkDerivation, base, exceptions, mtl, QuickCheck, tasty , tasty-quickcheck, time @@ -173529,22 +175619,17 @@ self: { }) {}; "transient" = callPackage - ({ mkDerivation, base, containers, directory, filepath, HTTP, mtl - , network, network-info, process, random, stm, transformers + ({ mkDerivation, base, bytestring, containers, directory, filepath + , HTTP, mtl, network, network-info, process, random, stm, TCache + , time, transformers }: mkDerivation { pname = "transient"; - version = "0.1.0.4"; - sha256 = "d12bf8fdbe05966d67ba0966bcf9eff6b637dce128b18424c1b250108cf86468"; - isLibrary = true; - isExecutable = true; + version = "0.1.0.8"; + sha256 = "d5df9262cab54d464feca2f0a56b651c816b06dbc61f63b934183879d9f6cd6f"; libraryHaskellDepends = [ - base containers directory filepath HTTP mtl network network-info - process random stm transformers - ]; - executableHaskellDepends = [ - base containers directory filepath HTTP mtl network random stm - transformers + base bytestring containers directory filepath HTTP mtl network + network-info process random stm TCache time transformers ]; homepage = "http://www.fpcomplete.com/user/agocorona"; description = "A monad for extensible effects and primitives for unrestricted composability of applications"; @@ -173735,8 +175820,8 @@ self: { ({ mkDerivation, base, containers, mtl, QuickCheck, random }: mkDerivation { pname = "treeviz"; - version = "1.0.0"; - sha256 = "027f0b919385d45cc3201ea9106aa384ea97a4080a1888c849cc9559ac1be95b"; + version = "2.0.2"; + sha256 = "9c54778511c6465bdb493d41737b78ad28ed9001dd881feca6a064574aaa49a4"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base containers mtl QuickCheck random ]; @@ -173931,8 +176016,8 @@ self: { ({ mkDerivation, base, containers, template-haskell, time }: mkDerivation { pname = "true-name"; - version = "0.0.0.1"; - sha256 = "f5b57148ebab8d1f72001d795d44720aa3ee2d4c7f12e63f48fc38884004e7e2"; + version = "0.0.0.2"; + sha256 = "55e3785f6072bd0b5ed030ae3894bb92c5684681217833ddc4f112b0d32f9c3e"; libraryHaskellDepends = [ base template-haskell ]; testHaskellDepends = [ base containers template-haskell time ]; homepage = "https://github.com/liyang/true-name"; @@ -174231,8 +176316,8 @@ self: { ({ mkDerivation, base, comonad, free, mtl, transformers }: mkDerivation { pname = "tubes"; - version = "1.0.0.0"; - sha256 = "84205032900d26ea4c7ee4c5f29fcd8aaa22fce298419937543b0cc1c63443f8"; + version = "1.1.0.0"; + sha256 = "c1b6623455b98cb956ec37f290a51e61c6f372aeb5ecffa12c5c182f713fb86d"; libraryHaskellDepends = [ base comonad free mtl transformers ]; homepage = "https://github.com/gatlin/tubes"; description = "Effectful, iteratee-inspired stream processing based on a free monad"; @@ -174382,13 +176467,13 @@ self: { }) {}; "turing" = callPackage - ({ mkDerivation, base, hspec, QuickCheck }: + ({ mkDerivation, base, doctest, hspec, QuickCheck }: mkDerivation { pname = "turing"; - version = "0.1.0"; - sha256 = "21a55a9a0e98004702874237b85eb9a603cce0cc8c96d2271d7256baa0f15896"; + version = "0.1.1"; + sha256 = "f3c60dd8bfead96b5e0836116d25fa14869ef62eb8feecc0b53c9c5f02cb60ae"; libraryHaskellDepends = [ base ]; - testHaskellDepends = [ base hspec QuickCheck ]; + testHaskellDepends = [ base doctest hspec QuickCheck ]; homepage = "http://github.com/sebastianpoeplau/turing#readme"; description = "A simple simulator for Turing machines"; license = "GPL"; @@ -174735,14 +176820,22 @@ self: { }) {}; "twiml" = callPackage - ({ mkDerivation, base, Cabal, lens, network, xml }: + ({ mkDerivation, base, Cabal, data-default, deepseq, Diff, HUnit + , lens, network-uri, parsec, should-not-typecheck, template-haskell + , text, void, xml + }: mkDerivation { pname = "twiml"; - version = "0.1.0.0"; - sha256 = "fd831cdbc7feb69c1357211d70fd229be5f5012f42cf73b3f94dea054344ec46"; - libraryHaskellDepends = [ base network xml ]; - testHaskellDepends = [ base Cabal lens ]; - jailbreak = true; + version = "0.2.0.0"; + sha256 = "25e2f9f25cc8b228b2bcb97d069f23fd534a93fd32b465597bb9dd2c00db6a8b"; + libraryHaskellDepends = [ + base data-default deepseq lens network-uri parsec template-haskell + text void xml + ]; + testHaskellDepends = [ + base Cabal data-default deepseq Diff HUnit lens + should-not-typecheck void + ]; homepage = "https://github.com/markandrus/twiml-haskell"; description = "TwiML library for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -174855,6 +176948,7 @@ self: { template-haskell text time transformers transformers-base twitter-types twitter-types-lens ]; + doCheck = false; homepage = "https://github.com/himura/twitter-conduit"; description = "Twitter API package with conduit interface and Streaming API support"; license = stdenv.lib.licenses.bsd3; @@ -174964,6 +177058,7 @@ self: { test-framework-hunit test-framework-quickcheck2 test-framework-th-prime text time unordered-containers ]; + doCheck = false; homepage = "https://github.com/himura/twitter-types"; description = "Twitter JSON parser and types"; license = stdenv.lib.licenses.bsd3; @@ -175120,6 +177215,18 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "type-combinators" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "type-combinators"; + version = "0.1.0.1"; + sha256 = "33e2ae3af0db672119821b4084728a8a120dc2bbf98d102c228f32bbbdbf233e"; + libraryHaskellDepends = [ base ]; + homepage = "http://github.com/kylcarte/type-combinators"; + description = "A collection of data types for type-level programming"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "type-digits" = callPackage ({ mkDerivation, base, template-haskell, type-spine }: mkDerivation { @@ -175360,7 +177467,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "type-list" = callPackage + "type-list_0_2_0_0" = callPackage ({ mkDerivation, base, singletons }: mkDerivation { pname = "type-list"; @@ -175369,6 +177476,18 @@ self: { libraryHaskellDepends = [ base singletons ]; description = "Operations on type-level lists and tuples"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "type-list" = callPackage + ({ mkDerivation, base, singletons }: + mkDerivation { + pname = "type-list"; + version = "0.3.0.2"; + sha256 = "80e7f52a5fb88880be9a166fbe664bda7e9f94d64d70c877471c833567722aee"; + libraryHaskellDepends = [ base singletons ]; + description = "Operations on type-level lists and tuples"; + license = stdenv.lib.licenses.bsd3; }) {}; "type-natural" = callPackage @@ -175377,12 +177496,13 @@ self: { }: mkDerivation { pname = "type-natural"; - version = "0.2.3.2"; - sha256 = "f078956b21456d385d8d3cb80e9efc8e371ddc933b9206d2d62aa7a767d6cd63"; + version = "0.3.0.0"; + sha256 = "6a85b784389ee2d7240f0222cace4e3ff69ae8827f2d591773c0a02abfc0080b"; libraryHaskellDepends = [ 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; @@ -175725,15 +177845,17 @@ self: { }) {}; "tzdata" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filemanip - , filepath, HUnit, MissingH, test-framework, test-framework-hunit - , test-framework-th, unix, vector + ({ mkDerivation, base, bytestring, containers, deepseq, directory + , filemanip, filepath, HUnit, MissingH, test-framework + , test-framework-hunit, test-framework-th, unix, vector }: mkDerivation { pname = "tzdata"; - version = "0.1.20150129.1"; - sha256 = "5e11d64c9aaa6114373beaeb3d7319793c72c9953483e970375b606d8d98f198"; - libraryHaskellDepends = [ base bytestring containers vector ]; + version = "0.1.20150810.0"; + sha256 = "c980287a435ed411415d049b86b87ddea08611a078080a01c702444402889046"; + libraryHaskellDepends = [ + base bytestring containers deepseq vector + ]; testHaskellDepends = [ base bytestring directory filemanip filepath HUnit MissingH test-framework test-framework-hunit test-framework-th unix @@ -175916,10 +178038,8 @@ self: { }: mkDerivation { pname = "uhc-light"; - version = "1.1.9.0"; - sha256 = "72d6c7c3a8b94b315c6346684e9ba2e97215ebf6e49d97bbc3852e4b0a000b37"; - revision = "1"; - editedCabalFile = "8847b4a41a2f6c9be09cf7b4835f53219522da9ef0ca26b918159fec747bd938"; + version = "1.1.9.1"; + sha256 = "9192b3ce50cf5f796799490b8f22b6ee20a3310e7e2216e09dc9706765e0cc61"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -175939,16 +178059,16 @@ self: { "uhc-util" = callPackage ({ mkDerivation, array, base, binary, bytestring, containers - , directory, fclabels, fgl, hashable, ListLike, mtl, process, syb - , time, time-compat, uulib + , directory, fclabels, fgl, hashable, mtl, process, syb, time + , time-compat, uulib }: mkDerivation { pname = "uhc-util"; - version = "0.1.6.0"; - sha256 = "128641dd69d7adb85095988132914ac5d14140ef063e28cee5102997d1acb6d9"; + version = "0.1.6.2"; + sha256 = "f559daf2f339b4d3ab2194895c19a10a304c68970b10c1e6571b52734f4bd19a"; libraryHaskellDepends = [ array base binary bytestring containers directory fclabels fgl - hashable ListLike mtl process syb time time-compat uulib + hashable mtl process syb time time-compat uulib ]; homepage = "https://github.com/UU-ComputerScience/uhc-util"; description = "UHC utilities"; @@ -176961,6 +179081,8 @@ self: { pname = "unix-process-conduit"; version = "0.2.2.3"; sha256 = "9e6d6b48a410bf5e788cc725bb00066ab500d6eef6ba64fbf3ef41bd1b97af51"; + revision = "1"; + editedCabalFile = "bd35a20a4b51cd11bfcacd873bf6077f44684fdba8a4f6e08aea068f0849ee75"; libraryHaskellDepends = [ base bytestring conduit directory filepath process stm time transformers unix @@ -177006,7 +179128,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "unix-time" = callPackage + "unix-time_0_3_5" = callPackage ({ mkDerivation, base, binary, bytestring, doctest, hspec , old-locale, old-time, QuickCheck, time }: @@ -177021,6 +179143,24 @@ self: { doCheck = false; description = "Unix time parser/formatter and utilities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "unix-time" = callPackage + ({ mkDerivation, base, binary, bytestring, doctest, hspec + , old-locale, old-time, QuickCheck, time + }: + mkDerivation { + pname = "unix-time"; + version = "0.3.6"; + sha256 = "5d15ebd0ee74e13638a7c04a7fc5f05a29ccd3228c8798df226939a778f7db37"; + libraryHaskellDepends = [ base binary bytestring old-time ]; + testHaskellDepends = [ + base bytestring doctest hspec old-locale old-time QuickCheck time + ]; + doCheck = false; + description = "Unix time parser/formatter and utilities"; + license = stdenv.lib.licenses.bsd3; }) {}; "unlambda" = callPackage @@ -177107,6 +179247,21 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "unordered-graphs" = callPackage + ({ mkDerivation, base, deepseq, dlist, hashable + , unordered-containers + }: + mkDerivation { + pname = "unordered-graphs"; + version = "0.1.0"; + sha256 = "9c14ac49ccc570dc93aadd45f89c82c92f6872a3077effc16825be81a2e7a9c7"; + libraryHaskellDepends = [ + base deepseq dlist hashable unordered-containers + ]; + description = "Graph library using unordered-containers"; + license = stdenv.lib.licenses.mit; + }) {}; + "unpack-funcs" = callPackage ({ mkDerivation, base, bytestring, primitive, template-haskell , transformers, vector @@ -177231,6 +179386,7 @@ self: { units-parser ]; testHaskellDepends = [ base tasty tasty-hunit ]; + jailbreak = true; homepage = "https://github.com/adamgundry/uom-plugin"; description = "Units of measure as a GHC typechecker plugin"; license = stdenv.lib.licenses.bsd3; @@ -178407,6 +180563,7 @@ self: { base bytestring HUnit QuickCheck random tasty tasty-hunit tasty-quickcheck ]; + jailbreak = true; homepage = "https://github.com/aslatter/uuid"; description = "For creating, comparing, parsing and printing Universally Unique Identifiers"; license = stdenv.lib.licenses.bsd3; @@ -178430,6 +180587,8 @@ self: { base bytestring HUnit QuickCheck random tasty tasty-hunit tasty-quickcheck ]; + jailbreak = true; + doCheck = false; homepage = "https://github.com/aslatter/uuid"; description = "For creating, comparing, parsing and printing Universally Unique Identifiers"; license = stdenv.lib.licenses.bsd3; @@ -178519,6 +180678,7 @@ self: { testHaskellDepends = [ base bytestring HUnit QuickCheck tasty tasty-hunit tasty-quickcheck ]; + jailbreak = true; homepage = "https://github.com/aslatter/uuid"; description = "Type definitions for Universally Unique Identifiers"; license = stdenv.lib.licenses.bsd3; @@ -178539,6 +180699,8 @@ self: { testHaskellDepends = [ base bytestring HUnit QuickCheck tasty tasty-hunit tasty-quickcheck ]; + jailbreak = true; + doCheck = false; homepage = "https://github.com/aslatter/uuid"; description = "Type definitions for Universally Unique Identifiers"; license = stdenv.lib.licenses.bsd3; @@ -178962,17 +181124,17 @@ self: { }) {}; "varying" = callPackage - ({ mkDerivation, base, time }: + ({ mkDerivation, base, time, transformers }: mkDerivation { pname = "varying"; - version = "0.1.3.0"; - sha256 = "c07d54d7263df225f76f4e4b3ce19b962edabf1bef6b93ea571fca4a1d004888"; + version = "0.1.5.0"; + sha256 = "458e51ea43a096848e80df6d2ec79756bfefc7a3c10f84a69793fd5c3e81013b"; isLibrary = true; isExecutable = true; - libraryHaskellDepends = [ base time ]; - executableHaskellDepends = [ base time ]; + libraryHaskellDepends = [ base time transformers ]; + executableHaskellDepends = [ base time transformers ]; homepage = "https://github.com/schell/varying"; - description = "Automaton based varying values, event streams and tweening"; + description = "FRP through varying values and monadic splines"; license = stdenv.lib.licenses.mit; }) {}; @@ -179055,8 +181217,8 @@ self: { }: mkDerivation { pname = "vcache-trie"; - version = "0.2.3"; - sha256 = "c039dcb12fdf4c7b1d47753ef1317037de6908f2cfe1bef7003dc6786d2dbe7a"; + version = "0.2.4"; + sha256 = "051ea7db60c1e414f4dd7f8a6451d88b926484a7a0858579631df0844b89aeee"; libraryHaskellDepends = [ array base bytestring bytestring-builder vcache ]; @@ -179109,6 +181271,8 @@ self: { pname = "vcs-web-hook-parse"; version = "0.1.0.0"; sha256 = "578cceeed56d13410a33663987268c85f3c54693759cb6dc4e008b3953217961"; + revision = "1"; + editedCabalFile = "c43fff776c16fd1de7f9a9c1464de4ed773634ff0ca48a6eb5e008d07f292357"; libraryHaskellDepends = [ aeson base bytestring text ]; homepage = "http://rel4tion.org/projects/vcs-web-hook-parse/"; description = "Parse development platform web hook messages"; @@ -179763,12 +181927,27 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "vector-th-unbox" = callPackage + "vector-th-unbox_0_2_1_2" = callPackage ({ mkDerivation, base, data-default, template-haskell, vector }: mkDerivation { pname = "vector-th-unbox"; version = "0.2.1.2"; sha256 = "0df696462d424bab569cc7a8ba1b1d0057bc5a71c510567fe5bcd1a940ae4d05"; + revision = "1"; + editedCabalFile = "bddeef74d6aab09ec3f1b5c9781f96b4a92f6f1234836cbaff78a493e73ca1fa"; + libraryHaskellDepends = [ base template-haskell vector ]; + testHaskellDepends = [ base data-default vector ]; + description = "Deriver for Data.Vector.Unboxed using Template Haskell"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "vector-th-unbox" = callPackage + ({ mkDerivation, base, data-default, template-haskell, vector }: + mkDerivation { + pname = "vector-th-unbox"; + version = "0.2.1.3"; + sha256 = "33db750d3d867f23d0406a7165952b030831ed610b06ef777cfae8439b382689"; libraryHaskellDepends = [ base template-haskell vector ]; testHaskellDepends = [ base data-default vector ]; description = "Deriver for Data.Vector.Unboxed using Template Haskell"; @@ -180035,10 +182214,10 @@ self: { ({ mkDerivation, base, contravariant, transformers, vinyl }: mkDerivation { pname = "vinyl-utils"; - version = "0.1.0.1"; - sha256 = "e00adcfe7503201dafd2b14c700b159665ea06e371fd9e38b17cfd9a8f66941d"; + version = "0.2.0.0"; + sha256 = "94055c8c4ab39e794c212a474e2c892e3350b9fb39d10192c502a0fccda71779"; libraryHaskellDepends = [ base contravariant transformers vinyl ]; - homepage = "http://hub.darcs.net/mjm/vinyl-utils"; + homepage = "https://github.com/marcinmrotek/vinyl-utils"; description = "Utilities for vinyl"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -180193,6 +182372,8 @@ self: { pname = "vocabulary-kadma"; version = "0.1.0.0"; sha256 = "eb5644a76fe5c04ea8b95299518afb8215fb064e3e387e774686c591e80cfde3"; + revision = "1"; + editedCabalFile = "40477768ad6d879ecac71eec138bb3c1ecbf6f1c7a3a1512f5e9b13207fae05c"; libraryHaskellDepends = [ base smaoin ]; homepage = "http://rel4tion.org/projects/vocabularies-hs/"; description = "Smaoin vocabulary definitions of the base framework"; @@ -180415,8 +182596,8 @@ self: { }: mkDerivation { pname = "waddle"; - version = "0.1.0.5"; - sha256 = "9b2101391babec27362f11bea8775d2b778766cbc24184cb82e7e3154086986c"; + version = "0.1.0.6"; + sha256 = "48782ba072e71678cb7d01043f8c10981ea7e7e5a123f0d8fb7a482f75c4ca15"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -180427,7 +182608,6 @@ self: { base binary bytestring case-insensitive containers directory JuicyPixels ]; - jailbreak = true; homepage = "https://github.com/mgrabmueller/waddle"; description = "DOOM WAD file utilities"; license = stdenv.lib.licenses.bsd3; @@ -180508,7 +182688,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai" = callPackage + "wai_3_0_3_0" = callPackage ({ mkDerivation, base, blaze-builder, bytestring, hspec, http-types , network, text, vault }: @@ -180523,9 +182703,10 @@ self: { homepage = "https://github.com/yesodweb/wai"; description = "Web Application Interface"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai_3_0_4_0" = callPackage + "wai" = callPackage ({ mkDerivation, base, blaze-builder, bytestring , bytestring-builder, hspec, http-types, network, text , transformers, unix-compat, vault @@ -180534,8 +182715,8 @@ self: { pname = "wai"; version = "3.0.4.0"; sha256 = "0e5399a5a4e50715c2c34def47553ad278265f2f5f823d06ad5b080b1eb0a194"; - revision = "1"; - editedCabalFile = "76e40af52032161c0dd6bf878779889ff2b097eda11303f963e5ba40fef9615b"; + revision = "2"; + editedCabalFile = "7aa2b653e1caf34214eaec510e8ccdf3cd0375884aabbc871637befafa87a285"; libraryHaskellDepends = [ base blaze-builder bytestring bytestring-builder http-types network text transformers unix-compat vault @@ -180544,7 +182725,6 @@ self: { homepage = "https://github.com/yesodweb/wai"; description = "Web Application Interface"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-app-file-cgi" = callPackage @@ -181298,7 +183478,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-extra" = callPackage + "wai-extra_3_0_10" = callPackage ({ mkDerivation, ansi-terminal, base, base64-bytestring , blaze-builder, bytestring, case-insensitive, containers, cookie , data-default-class, deepseq, directory, fast-logger, hspec @@ -181324,6 +183504,36 @@ self: { homepage = "http://github.com/yesodweb/wai"; description = "Provides some basic WAI handlers and middleware"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "wai-extra" = callPackage + ({ mkDerivation, aeson, ansi-terminal, base, base64-bytestring + , blaze-builder, bytestring, case-insensitive, containers, cookie + , data-default-class, deepseq, directory, fast-logger, hspec + , http-types, HUnit, iproute, lifted-base, network, old-locale + , resourcet, streaming-commons, stringsearch, text, time + , transformers, unix, unix-compat, vault, void, wai, wai-logger + , word8, zlib + }: + mkDerivation { + pname = "wai-extra"; + version = "3.0.11.1"; + sha256 = "086fb0ea800085e8f49bdda4de2ed8b23f4d14bb078a3332b7bb85ee71d122cf"; + libraryHaskellDepends = [ + aeson ansi-terminal base base64-bytestring blaze-builder bytestring + case-insensitive containers cookie data-default-class deepseq + directory fast-logger http-types iproute lifted-base network + old-locale resourcet streaming-commons stringsearch text time + transformers unix unix-compat vault void wai wai-logger word8 zlib + ]; + testHaskellDepends = [ + base blaze-builder bytestring case-insensitive cookie fast-logger + hspec http-types HUnit resourcet text time transformers wai zlib + ]; + homepage = "http://github.com/yesodweb/wai"; + description = "Provides some basic WAI handlers and middleware"; + license = stdenv.lib.licenses.mit; }) {}; "wai-frontend-monadcgi" = callPackage @@ -182244,8 +184454,8 @@ self: { }: mkDerivation { pname = "wai-routes"; - version = "0.9.2"; - sha256 = "5d7d4868d25e3feeeb2ab85dcf950a5f5fbbd24caf8cc5832edd47cdfbc72ccf"; + version = "0.9.3"; + sha256 = "67e2db99c012e31210b50170e29041dfac3c6bb190d6a1bdfc1ed4c06b428915"; libraryHaskellDepends = [ aeson base blaze-builder bytestring case-insensitive containers cookie data-default-class filepath http-types mime-types @@ -182407,8 +184617,8 @@ self: { ({ mkDerivation, base, composition-extra, transformers, wai }: mkDerivation { pname = "wai-transformers"; - version = "0.0.1"; - sha256 = "c8d478a3f5ed775ccdca324e6d042d3e4978935cea553b2139eb442b1f5805eb"; + version = "0.0.2"; + sha256 = "4ac1094015fbee226108beedfdc88851d19f7117e0e931e9b0a8850876aa8cf3"; libraryHaskellDepends = [ base composition-extra transformers wai ]; @@ -182917,6 +185127,8 @@ self: { pname = "warp"; version = "3.0.9.2"; sha256 = "e48ed078d5d5e5ae481e1c2682d9c1d423578075e8ec310eedb3d3a9730b2473"; + revision = "1"; + editedCabalFile = "a96e8870aad86b7d2d9fcd7fa76fae12155241633366e03340fabacf6da90189"; libraryHaskellDepends = [ array auto-update base blaze-builder bytestring case-insensitive ghc-prim hashable http-date http-types iproute network @@ -182929,6 +185141,7 @@ self: { simple-sendfile streaming-commons text time transformers unix unix-compat void wai ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/yesodweb/wai"; description = "A fast, light-weight web server for WAI applications"; @@ -182947,6 +185160,8 @@ self: { pname = "warp"; version = "3.0.9.3"; sha256 = "cdc47f9feca205930a4b10c975528385ebb6eb86a45b794255152f5d1a3090ec"; + revision = "1"; + editedCabalFile = "6f7037dc49b4faa98b92ab01bd0eb20582b5226ee2a797d652ebf20a67475aa8"; libraryHaskellDepends = [ array auto-update base blaze-builder bytestring case-insensitive ghc-prim hashable http-date http-types iproute network @@ -182959,6 +185174,7 @@ self: { simple-sendfile streaming-commons text time transformers unix unix-compat void wai ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/yesodweb/wai"; description = "A fast, light-weight web server for WAI applications"; @@ -182977,6 +185193,8 @@ self: { pname = "warp"; version = "3.0.10"; sha256 = "ba4975f9a9be2b6c358c8575738ea3b33935ef97cf57872f09f70b632a62bf1f"; + revision = "1"; + editedCabalFile = "cab27f33dac337362ad40d4d5b19377b52f720434fd78a373da27afed92dc7fb"; libraryHaskellDepends = [ array auto-update base blaze-builder bytestring case-insensitive ghc-prim hashable http-date http-types iproute network @@ -182990,6 +185208,7 @@ self: { simple-sendfile streaming-commons text time transformers unix unix-compat vault void wai ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/yesodweb/wai"; description = "A fast, light-weight web server for WAI applications"; @@ -183008,6 +185227,8 @@ self: { pname = "warp"; version = "3.0.10.1"; sha256 = "b02b29967db0c877567ac8505dce1f9bf47770e80aa535ae10525f1198736eec"; + revision = "1"; + editedCabalFile = "b1053c70eb6a4be04421df628e9a8b82457639f60ba2f95bfce8c5b9f0ffbd97"; libraryHaskellDepends = [ array auto-update base blaze-builder bytestring case-insensitive ghc-prim hashable http-date http-types iproute network @@ -183021,6 +185242,7 @@ self: { simple-sendfile streaming-commons text time transformers unix unix-compat vault void wai ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/yesodweb/wai"; description = "A fast, light-weight web server for WAI applications"; @@ -183039,6 +185261,8 @@ self: { pname = "warp"; version = "3.0.11"; sha256 = "636337aeeabb755735820e24051ab5933427fea563e2b306dd2838e9104d5517"; + revision = "1"; + editedCabalFile = "779a7bc0347c75d7e9e6f360ecfcb5c9da72ea9eae96d03af285e15b6a8d212b"; libraryHaskellDepends = [ array auto-update base blaze-builder bytestring case-insensitive ghc-prim hashable http-date http-types iproute network @@ -183052,6 +185276,7 @@ self: { simple-sendfile streaming-commons text time transformers unix unix-compat vault void wai ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/yesodweb/wai"; description = "A fast, light-weight web server for WAI applications"; @@ -183070,6 +185295,8 @@ self: { pname = "warp"; version = "3.0.12"; sha256 = "aaacbd0f98963ee3e39032b20388609251cea71f96279fca4af0a1c5effb6d79"; + revision = "1"; + editedCabalFile = "1419e91f70bc8b83ec8d27d9e525b72f06757f0953a5991c7970451e679cd285"; libraryHaskellDepends = [ array auto-update base blaze-builder bytestring case-insensitive ghc-prim hashable http-date http-types iproute network @@ -183083,6 +185310,7 @@ self: { simple-sendfile streaming-commons text time transformers unix unix-compat vault void wai ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/yesodweb/wai"; description = "A fast, light-weight web server for WAI applications"; @@ -183101,6 +185329,8 @@ self: { pname = "warp"; version = "3.0.12.1"; sha256 = "cbdc7f4be8d410eba94d082839e2f1507a131bf9f46e7e557e97b2665ee95035"; + revision = "1"; + editedCabalFile = "20d7e8508667cc19669079ada8ca9b1189bf460b89219a715c42481f10841892"; libraryHaskellDepends = [ array auto-update base blaze-builder bytestring case-insensitive ghc-prim hashable http-date http-types iproute network @@ -183114,6 +185344,7 @@ self: { simple-sendfile streaming-commons text time transformers unix unix-compat vault void wai ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/yesodweb/wai"; description = "A fast, light-weight web server for WAI applications"; @@ -183132,6 +185363,8 @@ self: { pname = "warp"; version = "3.0.13"; sha256 = "2999d3ec70436b42139316cb20f468c626c20ec8f9e62dab3e71e7dfdf5cf23d"; + revision = "1"; + editedCabalFile = "b7a2fe980a4d024c05e7dec7c3b9e068fdc1f669624cc7bf0c959f2fc5b2f801"; libraryHaskellDepends = [ array auto-update base blaze-builder bytestring case-insensitive ghc-prim hashable http-date http-types iproute network @@ -183145,6 +185378,7 @@ self: { simple-sendfile streaming-commons text time transformers unix unix-compat vault void wai ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/yesodweb/wai"; description = "A fast, light-weight web server for WAI applications"; @@ -183163,6 +185397,8 @@ self: { pname = "warp"; version = "3.0.13.1"; sha256 = "6ce6fd355fb0d909172c25504a949e3738a3848a8e1fcc2f89be2ae17a99719f"; + revision = "1"; + editedCabalFile = "a6aa1dea4ad2dacbf257a35d632502fbf647470907b0ff439d3b4f235ee217d8"; libraryHaskellDepends = [ array auto-update base blaze-builder bytestring case-insensitive ghc-prim hashable http-date http-types iproute network @@ -183175,6 +185411,7 @@ self: { simple-sendfile streaming-commons text time transformers unix unix-compat vault wai ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/yesodweb/wai"; description = "A fast, light-weight web server for WAI applications"; @@ -183194,6 +185431,8 @@ self: { pname = "warp"; version = "3.1.2"; sha256 = "b845179b3ec3e78d94408da61fdc9195807adaa25646205769e9a2b0b6ab48f9"; + revision = "1"; + editedCabalFile = "0bbd8d6f551265bc7c6a02597b5c38b0df86d80762478862166af662533aa872"; libraryHaskellDepends = [ array auto-update base blaze-builder bytestring case-insensitive containers ghc-prim hashable http-date http-types http2 iproute @@ -183208,6 +185447,78 @@ self: { streaming-commons text time transformers unix unix-compat vault wai word8 ]; + jailbreak = true; + doCheck = false; + homepage = "http://github.com/yesodweb/wai"; + description = "A fast, light-weight web server for WAI applications"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "warp_3_1_3" = callPackage + ({ mkDerivation, array, async, auto-update, base, blaze-builder + , bytestring, bytestring-builder, case-insensitive, containers + , directory, doctest, ghc-prim, hashable, hspec, HTTP, http-date + , http-types, http2, HUnit, iproute, lifted-base, network + , old-locale, process, QuickCheck, simple-sendfile, stm + , streaming-commons, text, time, transformers, unix, unix-compat + , vault, wai, word8 + }: + mkDerivation { + pname = "warp"; + version = "3.1.3"; + sha256 = "f65d32e374da0c1c1a44624e9744e4e2b5e325ca1e24a6aeae5719ee48c2b8e3"; + revision = "1"; + editedCabalFile = "cf2caeb9eec1a6447011a66ad959580d28876630c4db55b36a387549c449b62b"; + libraryHaskellDepends = [ + array auto-update base blaze-builder bytestring bytestring-builder + case-insensitive containers ghc-prim hashable http-date http-types + http2 iproute network simple-sendfile stm streaming-commons text + unix unix-compat vault wai word8 + ]; + testHaskellDepends = [ + array async auto-update base blaze-builder bytestring + bytestring-builder case-insensitive containers directory doctest + ghc-prim hashable hspec HTTP http-date http-types http2 HUnit + iproute lifted-base network old-locale process QuickCheck + simple-sendfile stm streaming-commons text time transformers unix + unix-compat vault wai word8 + ]; + jailbreak = true; + doCheck = false; + homepage = "http://github.com/yesodweb/wai"; + description = "A fast, light-weight web server for WAI applications"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "warp_3_1_3_1" = callPackage + ({ mkDerivation, array, async, auto-update, base, blaze-builder + , bytestring, bytestring-builder, case-insensitive, containers + , directory, doctest, ghc-prim, hashable, hspec, HTTP, http-date + , http-types, http2, HUnit, iproute, lifted-base, network + , old-locale, process, QuickCheck, simple-sendfile, stm + , streaming-commons, text, time, transformers, unix, unix-compat + , vault, wai, word8 + }: + mkDerivation { + pname = "warp"; + version = "3.1.3.1"; + sha256 = "8754b3554047d767c34362f22b9bdb36c603ff9bde0f5f6155070622e85f3329"; + libraryHaskellDepends = [ + array auto-update base blaze-builder bytestring bytestring-builder + case-insensitive containers ghc-prim hashable http-date http-types + http2 iproute network simple-sendfile stm streaming-commons text + unix unix-compat vault wai word8 + ]; + testHaskellDepends = [ + array async auto-update base blaze-builder bytestring + bytestring-builder case-insensitive containers directory doctest + ghc-prim hashable hspec HTTP http-date http-types http2 HUnit + iproute lifted-base network old-locale process QuickCheck + simple-sendfile stm streaming-commons text time transformers unix + unix-compat vault wai word8 + ]; doCheck = false; homepage = "http://github.com/yesodweb/wai"; description = "A fast, light-weight web server for WAI applications"; @@ -183226,8 +185537,8 @@ self: { }: mkDerivation { pname = "warp"; - version = "3.1.3"; - sha256 = "f65d32e374da0c1c1a44624e9744e4e2b5e325ca1e24a6aeae5719ee48c2b8e3"; + version = "3.1.6"; + sha256 = "34ce9ad59002bee92224b25bc64bec7d86576b41900cde305af419f304ad4093"; libraryHaskellDepends = [ array auto-update base blaze-builder bytestring bytestring-builder case-insensitive containers ghc-prim hashable http-date http-types @@ -183248,40 +185559,6 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "warp_3_1_4" = callPackage - ({ mkDerivation, array, async, auto-update, base, blaze-builder - , bytestring, bytestring-builder, case-insensitive, containers - , directory, doctest, ghc-prim, hashable, hspec, HTTP, http-date - , http-types, http2, HUnit, iproute, lifted-base, network - , old-locale, process, QuickCheck, simple-sendfile, stm - , streaming-commons, text, time, transformers, unix, unix-compat - , vault, wai, word8 - }: - mkDerivation { - pname = "warp"; - version = "3.1.4"; - sha256 = "6e7e96dd49f0d0635e3453dbe3a074db3ab8ce69ce48b9da7701f211198029b9"; - libraryHaskellDepends = [ - array auto-update base blaze-builder bytestring bytestring-builder - case-insensitive containers ghc-prim hashable http-date http-types - http2 iproute network simple-sendfile stm streaming-commons text - unix unix-compat vault wai word8 - ]; - testHaskellDepends = [ - array async auto-update base blaze-builder bytestring - bytestring-builder case-insensitive containers directory doctest - ghc-prim hashable hspec HTTP http-date http-types http2 HUnit - iproute lifted-base network old-locale process QuickCheck - simple-sendfile stm streaming-commons text time transformers unix - unix-compat vault wai word8 - ]; - jailbreak = true; - homepage = "http://github.com/yesodweb/wai"; - description = "A fast, light-weight web server for WAI applications"; - license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "warp-dynamic" = callPackage ({ mkDerivation, base, data-default, dyre, http-types, wai, warp }: mkDerivation { @@ -183330,6 +185607,8 @@ self: { pname = "warp-tls"; version = "3.0.1"; sha256 = "fe76f1da11b4fc1f09d6d7b4bd2b6a601f422fa5b5e013aa79be45aa59cc0769"; + revision = "1"; + editedCabalFile = "d2f79e54d7f8e989621b38230d0ead8f9f68612ccf6ab56e260882cef40a40af"; libraryHaskellDepends = [ base bytestring cprng-aes data-default-class network streaming-commons tls wai warp @@ -183349,6 +185628,8 @@ self: { pname = "warp-tls"; version = "3.0.1.1"; sha256 = "351731d0a00c5db1627ac88d4cce17e8f7efe4c3b5314e868b6c355f854b7281"; + revision = "1"; + editedCabalFile = "2d984fade290388448566b73099486df1abefc4b4a0d4c72d384195372089275"; libraryHaskellDepends = [ base bytestring cprng-aes data-default-class network streaming-commons tls wai warp @@ -183368,6 +185649,8 @@ self: { pname = "warp-tls"; version = "3.0.1.2"; sha256 = "e268617bc37b0afc18b0f0d7ed30f751536d845a2e08c8ebbdec41b2cadc8ef5"; + revision = "1"; + editedCabalFile = "27eea06a544aa9b966f353c86d33cb229be45d3f694d37a73a039c58817711ff"; libraryHaskellDepends = [ base bytestring cprng-aes data-default-class network streaming-commons tls wai warp @@ -183387,6 +185670,8 @@ self: { pname = "warp-tls"; version = "3.0.1.3"; sha256 = "ec91266592837736e825657543d8e5f8cae3e436172134fa1ef4d098ce0b1e74"; + revision = "1"; + editedCabalFile = "4bfceb6c80e9b65afe60f307d5ec502f1dedf379a2fe14eb5dfc8dd6b7fae30f"; libraryHaskellDepends = [ base bytestring cprng-aes data-default-class network streaming-commons tls wai warp @@ -183406,6 +185691,8 @@ self: { pname = "warp-tls"; version = "3.0.1.4"; sha256 = "b3e94ba26894de0943973fcdda69ed3f9c2b92ba355ead9b95e3513399e78bb8"; + revision = "1"; + editedCabalFile = "29c289fa557c1a05d5b3619851aabe78d6c93af9f4162710c0b8cd0f365b7579"; libraryHaskellDepends = [ base bytestring cprng-aes data-default-class network streaming-commons tls wai warp @@ -183425,6 +185712,8 @@ self: { pname = "warp-tls"; version = "3.0.2"; sha256 = "ed3bf9d6a084f3fbc059fe06a7add0fc5f95454228615a2c23f0c683235019ca"; + revision = "1"; + editedCabalFile = "24ca7da4a6766a4583c8ee82b22bbf0d5b8c70d4d0ac43ead58c09c6c24e696f"; libraryHaskellDepends = [ base bytestring cprng-aes data-default-class network streaming-commons tls wai warp @@ -183444,6 +185733,8 @@ self: { pname = "warp-tls"; version = "3.0.3"; sha256 = "b5260c5fd5f51048448347a2acc72b60fbadfa05e57cc1a70328a2e22accf7d9"; + revision = "1"; + editedCabalFile = "5fd916e672092798e2d24f7cf778229527c602c1156309c1d18d95a87a6488a6"; libraryHaskellDepends = [ base bytestring cprng-aes data-default-class network streaming-commons tls wai warp @@ -183463,6 +185754,8 @@ self: { pname = "warp-tls"; version = "3.0.4"; sha256 = "e42d4de7a02997e266272e735dc068c42086f4a2d95b02a56ccca0f2ad8f680e"; + revision = "1"; + editedCabalFile = "58b0585d8b497743315b6c867c5002ca6d89803f6f37d4c47cfc752b9aed0a3f"; libraryHaskellDepends = [ base bytestring cprng-aes data-default-class network streaming-commons tls wai warp @@ -183482,6 +185775,8 @@ self: { pname = "warp-tls"; version = "3.0.4.1"; sha256 = "9edc7a498c3dc75a1d8eca9a16b2d913d00573424f8688f823a8289da438245d"; + revision = "1"; + editedCabalFile = "0265d3e7e1dbb9ef5fa287d55b1771ea838390335e543b71b9da7cb4d752edad"; libraryHaskellDepends = [ base bytestring cprng-aes data-default-class network streaming-commons tls wai warp @@ -183681,6 +185976,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "wavefront" = callPackage + ({ mkDerivation, attoparsec, base, dlist, filepath, mtl, text + , transformers, vector + }: + mkDerivation { + pname = "wavefront"; + version = "0.3"; + sha256 = "65443f1ca1ceb6418e3740c085bd8f6f85c6ca2033deeafd7c7e4f418043e3a2"; + 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; + }) {}; + "wavesurfer" = callPackage ({ mkDerivation, base, binary, bytestring, bytestring-lexing , bytestring-show, delimited-text @@ -184272,6 +186584,32 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "webdriver_0_8" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base64-bytestring + , bytestring, cond, data-default-class, directory, directory-tree + , exceptions, filepath, http-client, http-types, lifted-base + , monad-control, network, network-uri, scientific, temporary, text + , time, transformers, transformers-base, unordered-containers + , vector, zip-archive + }: + mkDerivation { + pname = "webdriver"; + version = "0.8"; + sha256 = "357b6d21d9c3e322a7d85868e40464505d30fce3d3e3fd318c1742247cc431aa"; + libraryHaskellDepends = [ + aeson attoparsec base base64-bytestring bytestring cond + data-default-class directory directory-tree exceptions filepath + http-client http-types lifted-base monad-control network + network-uri scientific temporary text time transformers + transformers-base unordered-containers vector zip-archive + ]; + testHaskellDepends = [ base text ]; + 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" = callPackage ({ mkDerivation, aeson, base, hspec, hspec-webdriver , language-javascript, template-haskell, text, transformers @@ -184547,6 +186885,7 @@ self: { test-framework-quickcheck2 text ]; jailbreak = true; + doCheck = false; homepage = "http://jaspervdj.be/websockets"; description = "A sensible and clean way to write WebSocket-capable servers in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -184574,6 +186913,7 @@ self: { test-framework-quickcheck2 text ]; jailbreak = true; + doCheck = false; homepage = "http://jaspervdj.be/websockets"; description = "A sensible and clean way to write WebSocket-capable servers in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -184601,6 +186941,7 @@ self: { test-framework-quickcheck2 text ]; jailbreak = true; + doCheck = false; homepage = "http://jaspervdj.be/websockets"; description = "A sensible and clean way to write WebSocket-capable servers in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -184627,6 +186968,7 @@ self: { random SHA test-framework test-framework-hunit test-framework-quickcheck2 text ]; + doCheck = false; homepage = "http://jaspervdj.be/websockets"; description = "A sensible and clean way to write WebSocket-capable servers in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -184653,13 +186995,14 @@ self: { random SHA test-framework test-framework-hunit test-framework-quickcheck2 text ]; + doCheck = false; homepage = "http://jaspervdj.be/websockets"; description = "A sensible and clean way to write WebSocket-capable servers in Haskell"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "websockets" = callPackage + "websockets_0_9_6_0" = callPackage ({ mkDerivation, attoparsec, base, base64-bytestring, binary , blaze-builder, bytestring, case-insensitive, containers, entropy , HUnit, network, QuickCheck, random, SHA, test-framework @@ -184685,6 +187028,40 @@ self: { SHA test-framework test-framework-hunit test-framework-quickcheck2 text ]; + doCheck = false; + homepage = "http://jaspervdj.be/websockets"; + description = "A sensible and clean way to write WebSocket-capable servers in Haskell"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "websockets" = callPackage + ({ mkDerivation, attoparsec, base, base64-bytestring, binary + , blaze-builder, bytestring, case-insensitive, containers, entropy + , HUnit, network, QuickCheck, random, SHA, test-framework + , test-framework-hunit, test-framework-quickcheck2, text + }: + mkDerivation { + pname = "websockets"; + version = "0.9.6.1"; + sha256 = "3c75cb59585710862c57277c8be718903ba727452d5f662288abb8b59eb57cd4"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + attoparsec base base64-bytestring binary blaze-builder bytestring + case-insensitive containers entropy network random SHA text + ]; + executableHaskellDepends = [ + attoparsec base base64-bytestring binary blaze-builder bytestring + case-insensitive containers entropy network random SHA text + ]; + testHaskellDepends = [ + attoparsec base base64-bytestring binary blaze-builder bytestring + case-insensitive containers entropy HUnit network QuickCheck random + SHA test-framework test-framework-hunit test-framework-quickcheck2 + text + ]; + doCheck = false; homepage = "http://jaspervdj.be/websockets"; description = "A sensible and clean way to write WebSocket-capable servers in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -184946,6 +187323,19 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "wigner-symbols" = callPackage + ({ mkDerivation, base, bytestring, cryptonite }: + mkDerivation { + pname = "wigner-symbols"; + version = "1.0.0"; + sha256 = "0d2ae52728e6ef32519a6b648033185617291e76c4996c7107b9a3caf73db28e"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base bytestring cryptonite ]; + homepage = "https://github.com/Rufflewind/wigner-symbols"; + description = "CG coefficients and Wigner symbols"; + license = stdenv.lib.licenses.mit; + }) {}; + "wikipedia4epub" = callPackage ({ mkDerivation, base, bytestring, directory, epub, filepath , haskell98, HTTP, network, regex-base, regex-posix, tagsoup, url @@ -185079,6 +187469,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "witherable_0_1_3_1" = callPackage + ({ mkDerivation, base, base-orphans, containers, hashable + , transformers, unordered-containers, vector + }: + mkDerivation { + pname = "witherable"; + version = "0.1.3.1"; + sha256 = "4b11917e2d562ce725394d994600ef59c7d1928dccbffe44a5bdf6de62af2fd0"; + libraryHaskellDepends = [ + base base-orphans containers hashable transformers + unordered-containers vector + ]; + homepage = "https://github.com/fumieval/witherable"; + description = "Generalization of filter and catMaybes"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "witness" = callPackage ({ mkDerivation, base, categories, constraints, transformers }: mkDerivation { @@ -185403,29 +187811,30 @@ self: { }) {}; "wolf" = callPackage - ({ mkDerivation, aeson, amazonka, amazonka-s3, amazonka-swf, base - , bytestring, conduit, conduit-extra, cryptohash, exceptions - , fast-logger, http-conduit, lens, monad-control, monad-logger, mtl - , mtl-compat, optparse-applicative, safe, shelly, text - , transformers, transformers-base, unordered-containers, uuid, yaml + ({ mkDerivation, aeson, amazonka, amazonka-core, amazonka-s3 + , amazonka-swf, base, bytestring, conduit, conduit-extra + , exceptions, fast-logger, http-conduit, lens, monad-control + , monad-logger, mtl, mtl-compat, optparse-applicative, resourcet + , safe, shelly, text, transformers, transformers-base + , unordered-containers, uuid, yaml }: mkDerivation { pname = "wolf"; - version = "0.1.1"; - sha256 = "6912721ba6ea5ebfb9f80a773880eaea2907310b69806f3d925e5d8ca8ec28bd"; + version = "0.2.0"; + sha256 = "0660d46bd7defb4aebc74a19524da014f3e2b4da6beec8d7b9f4c78c59e5c013"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson amazonka amazonka-s3 amazonka-swf base bytestring conduit - conduit-extra cryptohash exceptions fast-logger http-conduit lens - monad-control monad-logger mtl mtl-compat optparse-applicative safe - text transformers transformers-base unordered-containers uuid yaml + aeson amazonka amazonka-core amazonka-s3 amazonka-swf base + bytestring conduit conduit-extra exceptions fast-logger + http-conduit lens monad-control monad-logger mtl mtl-compat + optparse-applicative resourcet safe text transformers + transformers-base unordered-containers uuid yaml ]; executableHaskellDepends = [ - base bytestring cryptohash optparse-applicative shelly text - transformers yaml + aeson amazonka-core base bytestring optparse-applicative resourcet + shelly text transformers yaml ]; - jailbreak = true; homepage = "https://github.com/swift-nav/wolf"; description = "Amazon Simple Workflow Service Wrapper"; license = stdenv.lib.licenses.mit; @@ -185644,6 +188053,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "workflow-osx" = callPackage + ({ mkDerivation, base, bv, bytestring, exceptions, filepath, free + , http-types, mtl, transformers + }: + mkDerivation { + pname = "workflow-osx"; + version = "0.0.1"; + sha256 = "1bb9b7e9df0d99893301f452f35f6f181009617a481d9f25cb14d5bc592bbdd2"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bv bytestring exceptions filepath free http-types mtl + transformers + ]; + executableHaskellDepends = [ base ]; + homepage = "https://github.com/sboosali/workflow-osx#readme"; + description = "a \"Desktop Workflow\" monad with Objective-C bindings"; + license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "wp-archivebot" = callPackage ({ mkDerivation, base, feed, HTTP, network, parallel, tagsoup }: mkDerivation { @@ -185991,10 +188421,10 @@ self: { ({ mkDerivation, base, stm, time, wxcore }: mkDerivation { pname = "wx"; - version = "0.92.0.0"; - sha256 = "7a649a4445aaf4681e1c2c9e0b664bce656cc4700a527af8596920019d3295e4"; + version = "0.92.1.0"; + sha256 = "282f18d34c69cb0139ffd0728bfa97e52dfe4f325e7829ca0c76112b3e2bd408"; libraryHaskellDepends = [ base stm time wxcore ]; - homepage = "http://haskell.org/haskellwiki/WxHaskell"; + homepage = "https://wiki.haskell.org/WxHaskell"; description = "wxHaskell"; license = "unknown"; }) {}; @@ -186032,18 +188462,18 @@ self: { }) {}; "wxc" = callPackage - ({ mkDerivation, base, libX11, mesa, wxdirect, wxGTK }: + ({ mkDerivation, base, libX11, mesa, split, wxdirect, wxGTK }: mkDerivation { pname = "wxc"; - version = "0.92.0.0"; - sha256 = "ed5872f17e05055abaf4427f45f32d817b0f9be0352432fc3ffd08b65305a8dc"; - libraryHaskellDepends = [ base wxdirect ]; + version = "0.92.1.1"; + sha256 = "e458be811c10a0ba56deb567c56c3b71579b8c923188236c1de8ccf844c1a602"; + libraryHaskellDepends = [ base split wxdirect ]; librarySystemDepends = [ libX11 mesa ]; libraryPkgconfigDepends = [ wxGTK ]; doHaddock = false; - postInstall = "cp -v dist/build/libwxc.so.0.92.0.0 $out/lib/libwxc.so"; + postInstall = "cp -v dist/build/libwxc.so.0.92.1.1 $out/lib/libwxc.so"; postPatch = "sed -i -e '/ldconfig inst_lib_dir/d' Setup.hs"; - homepage = "http://haskell.org/haskellwiki/WxHaskell"; + homepage = "https://wiki.haskell.org/WxHaskell"; description = "wxHaskell C++ wrapper"; license = "unknown"; }) {inherit (pkgs.xorg) libX11; inherit (pkgs) mesa; @@ -186055,14 +188485,14 @@ self: { }: mkDerivation { pname = "wxcore"; - version = "0.92.0.0"; - sha256 = "332a68b658be7eeca62e9992dd01d26016a3f24e6666e803107291a3c71145b9"; + version = "0.92.1.0"; + sha256 = "ac621ea45ad61cbf1a91eb717f51a72d34d6ecc7925a161d90cf4ea7f3df73d6"; libraryHaskellDepends = [ array base bytestring containers directory filepath parsec stm time wxc wxdirect ]; libraryPkgconfigDepends = [ wxGTK ]; - homepage = "http://haskell.org/haskellwiki/WxHaskell"; + homepage = "https://wiki.haskell.org/WxHaskell"; description = "wxHaskell core"; license = "unknown"; }) {inherit (pkgs) wxGTK;}; @@ -186073,14 +188503,14 @@ self: { }: mkDerivation { pname = "wxdirect"; - version = "0.92.0.0"; - sha256 = "b13687de38402df779780db1bc410f02a6ae6815d3e984b702d2c7c4be799ec8"; + version = "0.92.1.0"; + sha256 = "33b78dd1ea76131a4f89e1482345ba707b4f7ebcee924a12113ed08f177b0edd"; isLibrary = true; isExecutable = true; executableHaskellDepends = [ base containers directory filepath parsec process strict time ]; - homepage = "http://haskell.org/haskellwiki/WxHaskell"; + homepage = "https://wiki.haskell.org/WxHaskell"; description = "helper tool for building wxHaskell"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -186218,6 +188648,8 @@ self: { pname = "x509"; version = "1.5.0.1"; sha256 = "6a0d7adf3dd6cb5b29b2cecbc82d84cdb71e4042315761e10b1403075220f20d"; + revision = "1"; + editedCabalFile = "261a16dba40aebf24b31b014abd300f3d86cb9298ff86c998ae1ec7e7783157d"; libraryHaskellDepends = [ asn1-encoding asn1-parse asn1-types base bytestring containers crypto-pubkey-types cryptohash directory filepath hourglass mtl pem @@ -186227,6 +188659,7 @@ self: { asn1-types base bytestring crypto-pubkey-types hourglass mtl tasty tasty-quickcheck ]; + jailbreak = true; homepage = "http://github.com/vincenthz/hs-certificate"; description = "X509 reader and writer"; license = stdenv.lib.licenses.bsd3; @@ -186243,6 +188676,8 @@ self: { pname = "x509"; version = "1.5.1"; sha256 = "566c23f526c20be1386c492a3923eec31f251b725e816e6cebf8074ae31aafd7"; + revision = "1"; + editedCabalFile = "f4a09a968921e5ff0f6a87b66c97e21f3455d7bc73a5f8675f306785adf595a1"; libraryHaskellDepends = [ asn1-encoding asn1-parse asn1-types base bytestring containers crypto-pubkey-types cryptohash directory filepath hourglass mtl pem @@ -186252,6 +188687,7 @@ self: { asn1-types base bytestring crypto-pubkey-types hourglass mtl tasty tasty-quickcheck ]; + jailbreak = true; homepage = "http://github.com/vincenthz/hs-certificate"; description = "X509 reader and writer"; license = stdenv.lib.licenses.bsd3; @@ -186267,6 +188703,8 @@ self: { pname = "x509"; version = "1.6.0"; sha256 = "939eec164a1dd764d610920d8896c7715c86f9b437c2d44b27119b3fb197c23b"; + revision = "1"; + editedCabalFile = "b849e31b4baa4186008a5dc5544b5acad634f9aee8d3ccbdcae6a217b061a676"; libraryHaskellDepends = [ asn1-encoding asn1-parse asn1-types base bytestring containers cryptonite directory filepath hourglass memory mtl pem process @@ -186275,6 +188713,7 @@ self: { asn1-types base bytestring cryptonite hourglass mtl tasty tasty-quickcheck ]; + jailbreak = true; homepage = "http://github.com/vincenthz/hs-certificate"; description = "X509 reader and writer"; license = stdenv.lib.licenses.bsd3; @@ -186290,6 +188729,8 @@ self: { pname = "x509"; version = "1.6.1"; sha256 = "cc95fc10135998a5a4bf59566a4e0c7ed6c40f0ff175dfb3023b8ec941df2450"; + revision = "1"; + editedCabalFile = "44f30cc360b249fab75aa4f7b6dc940fae9a85571890ad7dc3fea2fa3eb0e1e7"; libraryHaskellDepends = [ asn1-encoding asn1-parse asn1-types base bytestring containers cryptonite hourglass memory mtl pem @@ -186298,6 +188739,7 @@ self: { asn1-types base bytestring cryptonite hourglass mtl tasty tasty-quickcheck ]; + jailbreak = true; homepage = "http://github.com/vincenthz/hs-certificate"; description = "X509 reader and writer"; license = stdenv.lib.licenses.bsd3; @@ -187324,7 +189766,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "xml-conduit" = callPackage + "xml-conduit_1_3_1" = callPackage ({ mkDerivation, attoparsec, base, blaze-builder, blaze-html , blaze-markup, bytestring, conduit, conduit-extra, containers , data-default, deepseq, hspec, HUnit, monad-control, resourcet @@ -187346,6 +189788,31 @@ self: { homepage = "http://github.com/snoyberg/xml"; description = "Pure-Haskell utilities for dealing with XML with the conduit package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "xml-conduit" = callPackage + ({ mkDerivation, attoparsec, base, blaze-builder, blaze-html + , blaze-markup, bytestring, conduit, conduit-extra, containers + , data-default, deepseq, hspec, HUnit, monad-control, resourcet + , text, transformers, xml-types + }: + mkDerivation { + pname = "xml-conduit"; + version = "1.3.2"; + sha256 = "d45d056e2e7a1ebb0572b630eb8223aac3bd1ce2419bea8074e6607f2a0a06c6"; + libraryHaskellDepends = [ + attoparsec base blaze-builder blaze-html blaze-markup bytestring + conduit conduit-extra containers data-default deepseq monad-control + resourcet text transformers xml-types + ]; + testHaskellDepends = [ + base blaze-markup bytestring conduit containers hspec HUnit + resourcet text transformers xml-types + ]; + homepage = "http://github.com/snoyberg/xml"; + description = "Pure-Haskell utilities for dealing with XML with the conduit package"; + license = stdenv.lib.licenses.mit; }) {}; "xml-conduit-parse" = callPackage @@ -188453,9 +190920,12 @@ self: { pname = "xturtle"; version = "0.1.25"; sha256 = "adbee9e0c52ceab301a63f129af1962e4ff766e603d77e8b9e53fcf5b7bb2e98"; + revision = "1"; + editedCabalFile = "30df4bd906dac728e4ef75b339d6802b59abe1f1f49e346e6cdc54929f147c1c"; libraryHaskellDepends = [ base convertible Imlib setlocale X11 X11-xft x11-xim yjsvg yjtools ]; + jailbreak = true; description = "turtle like LOGO"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -189856,7 +192326,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-auth" = callPackage + "yesod-auth_1_4_6_1" = callPackage ({ mkDerivation, aeson, authenticate, base, base16-bytestring , base64-bytestring, binary, blaze-builder, blaze-html , blaze-markup, byteable, bytestring, conduit, conduit-extra @@ -189883,6 +192353,66 @@ self: { homepage = "http://www.yesodweb.com/"; description = "Authentication for Yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "yesod-auth_1_4_7" = callPackage + ({ mkDerivation, aeson, authenticate, base, base16-bytestring + , base64-bytestring, binary, blaze-builder, blaze-html + , blaze-markup, byteable, bytestring, conduit, conduit-extra + , containers, cryptohash, data-default, email-validate, file-embed + , http-client, http-conduit, http-types, lifted-base, mime-mail + , network-uri, nonce, persistent, persistent-template, random + , resourcet, safe, shakespeare, template-haskell, text, time + , transformers, unordered-containers, wai, yesod-core, yesod-form + , yesod-persistent + }: + mkDerivation { + pname = "yesod-auth"; + version = "1.4.7"; + sha256 = "7b9cfe4f866cbf3726ebfdfc341e0930c4cc60107d94086950701fa1a6e2be88"; + libraryHaskellDepends = [ + aeson authenticate base base16-bytestring base64-bytestring binary + blaze-builder blaze-html blaze-markup byteable bytestring conduit + conduit-extra containers cryptohash data-default email-validate + file-embed http-client http-conduit http-types lifted-base + mime-mail network-uri nonce persistent persistent-template random + resourcet safe shakespeare template-haskell text time transformers + unordered-containers wai yesod-core yesod-form yesod-persistent + ]; + homepage = "http://www.yesodweb.com/"; + description = "Authentication for Yesod"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "yesod-auth" = callPackage + ({ mkDerivation, aeson, authenticate, base, base16-bytestring + , base64-bytestring, binary, blaze-builder, blaze-html + , blaze-markup, byteable, bytestring, conduit, conduit-extra + , containers, cryptohash, data-default, email-validate, file-embed + , http-client, http-conduit, http-types, lifted-base, mime-mail + , network-uri, nonce, persistent, persistent-template, random + , resourcet, safe, shakespeare, template-haskell, text, time + , transformers, unordered-containers, wai, yesod-core, yesod-form + , yesod-persistent + }: + mkDerivation { + pname = "yesod-auth"; + version = "1.4.8"; + sha256 = "65a16bb6fb9601be88ec9af99577800041b455eaa5d0b2f645c618c306587cb2"; + libraryHaskellDepends = [ + aeson authenticate base base16-bytestring base64-bytestring binary + blaze-builder blaze-html blaze-markup byteable bytestring conduit + conduit-extra containers cryptohash data-default email-validate + file-embed http-client http-conduit http-types lifted-base + mime-mail network-uri nonce persistent persistent-template random + resourcet safe shakespeare template-haskell text time transformers + unordered-containers wai yesod-core yesod-form yesod-persistent + ]; + homepage = "http://www.yesodweb.com/"; + description = "Authentication for Yesod"; + license = stdenv.lib.licenses.mit; }) {}; "yesod-auth-account" = callPackage @@ -189917,8 +192447,8 @@ self: { }: mkDerivation { pname = "yesod-auth-account-fork"; - version = "2.0.2"; - sha256 = "8c4d0173dadb7d1c2a0befe1a60524b710f4e1c0761dbf5eca816542a00699bf"; + version = "2.0.3"; + sha256 = "875b3636d727c4adda822794ac2467bd62088420726341f1259f394086bed950"; libraryHaskellDepends = [ aeson base blaze-html bytestring email-validate http-types mtl nonce persistent pwstore-fast random tagged text yesod-auth @@ -190183,6 +192713,25 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "yesod-auth-ldap-native" = callPackage + ({ mkDerivation, base, either, ldap-client, semigroups, text + , transformers, yesod-auth, yesod-core, yesod-form + }: + mkDerivation { + pname = "yesod-auth-ldap-native"; + version = "0.1.0.2"; + sha256 = "f94461b1e26ce682122ee105f537afda8ae6a831810eba8e281bfd56b46cd0e1"; + libraryHaskellDepends = [ + base either ldap-client semigroups text transformers yesod-auth + yesod-core yesod-form + ]; + testHaskellDepends = [ base ]; + homepage = "http://github.com/mulderr/yesod-auth-ldap-native"; + description = "Yesod LDAP authentication plugin"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "yesod-auth-oauth_1_4_0_1" = callPackage ({ mkDerivation, authenticate-oauth, base, bytestring, lifted-base , text, transformers, yesod-auth, yesod-core, yesod-form @@ -190281,7 +192830,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-auth-oauth2" = callPackage + "yesod-auth-oauth2_0_1_3" = callPackage ({ mkDerivation, aeson, authenticate, base, bytestring, hoauth2 , http-client, http-conduit, http-types, lifted-base, network-uri , random, text, transformers, vector, yesod-auth, yesod-core @@ -190299,6 +192848,27 @@ self: { homepage = "http://github.com/thoughtbot/yesod-auth-oauth2"; description = "OAuth 2.0 authentication plugins"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "yesod-auth-oauth2" = callPackage + ({ mkDerivation, aeson, authenticate, base, bytestring, hoauth2 + , http-client, http-conduit, http-types, lifted-base, network-uri + , random, text, transformers, vector, yesod-auth, yesod-core + , yesod-form + }: + mkDerivation { + pname = "yesod-auth-oauth2"; + version = "0.1.4"; + sha256 = "d92b17c7f2bfac70cdea3b6f5690d36f292cbda33fd81d1700cb3115b349a863"; + libraryHaskellDepends = [ + aeson authenticate base bytestring hoauth2 http-client http-conduit + http-types lifted-base network-uri random text transformers vector + yesod-auth yesod-core yesod-form + ]; + homepage = "http://github.com/thoughtbot/yesod-auth-oauth2"; + description = "OAuth 2.0 authentication plugins"; + license = stdenv.lib.licenses.bsd3; }) {}; "yesod-auth-pam" = callPackage @@ -191312,8 +193882,8 @@ self: { }: mkDerivation { pname = "yesod-bootstrap"; - version = "0.2"; - sha256 = "d99b97f9ebef228039b9c48725dbf5e610389d99ce7b3f39673741339927c5bd"; + version = "0.2.1"; + sha256 = "c1eb6ae089f72b389f11c29f7572177c9767e7995d4e50b7a3ed23cdea681492"; libraryHaskellDepends = [ base blaze-html blaze-markup conduit conduit-extra containers either email-validate lens-family-core lens-family-th MonadRandom @@ -192028,7 +194598,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-core" = callPackage + "yesod-core_1_4_15" = callPackage ({ mkDerivation, aeson, async, auto-update, base, blaze-builder , blaze-html, blaze-markup, byteable, bytestring, case-insensitive , cereal, clientsession, conduit, conduit-extra, containers, cookie @@ -192065,6 +194635,46 @@ self: { homepage = "http://www.yesodweb.com/"; description = "Creation of type-safe, RESTful web applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "yesod-core" = callPackage + ({ mkDerivation, aeson, async, auto-update, base, blaze-builder + , blaze-html, blaze-markup, byteable, bytestring, case-insensitive + , cereal, clientsession, conduit, conduit-extra, containers, cookie + , data-default, deepseq, directory, exceptions, fast-logger, hspec + , hspec-expectations, http-types, HUnit, lifted-base, monad-control + , monad-logger, mtl, mwc-random, network, old-locale, parsec + , path-pieces, primitive, QuickCheck, random, resourcet, safe + , semigroups, shakespeare, streaming-commons, template-haskell + , text, time, transformers, transformers-base, unix-compat + , unordered-containers, vector, wai, wai-extra, wai-logger, warp + , word8 + }: + mkDerivation { + pname = "yesod-core"; + version = "1.4.15.1"; + sha256 = "a414a0eb14b4b88ad4d6ec22db9837b4ead9c7958cf236476dce963555a75e29"; + libraryHaskellDepends = [ + aeson auto-update base blaze-builder blaze-html blaze-markup + byteable bytestring case-insensitive cereal clientsession conduit + conduit-extra containers cookie data-default deepseq directory + exceptions fast-logger http-types lifted-base monad-control + monad-logger mtl mwc-random old-locale parsec path-pieces primitive + random resourcet safe semigroups shakespeare template-haskell text + time transformers transformers-base unix-compat + unordered-containers vector wai wai-extra wai-logger warp word8 + ]; + testHaskellDepends = [ + async base blaze-builder bytestring clientsession conduit + conduit-extra containers cookie hspec hspec-expectations http-types + HUnit lifted-base mwc-random network path-pieces QuickCheck random + resourcet shakespeare streaming-commons template-haskell text + transformers wai wai-extra + ]; + homepage = "http://www.yesodweb.com/"; + description = "Creation of type-safe, RESTful web applications"; + license = stdenv.lib.licenses.mit; }) {}; "yesod-crud" = callPackage @@ -192086,15 +194696,17 @@ self: { }) {}; "yesod-crud-persist" = callPackage - ({ mkDerivation, base, lens, persistent, text, transformers, wai - , yesod-core, yesod-form, yesod-persistent + ({ mkDerivation, base, either, esqueleto, microlens, microlens-th + , persistent, text, time, transformers, wai, yesod-core, yesod-form + , yesod-markdown, yesod-persistent }: mkDerivation { pname = "yesod-crud-persist"; - version = "0.1.2"; - sha256 = "c7fec7f4ddd89bf19ea1add21b6f807684f0d84868acda33ffbe67f6feae1c38"; + version = "0.2.1"; + sha256 = "9206e96ccb46021be089f1919d2775839dd82ad25cde0240680a152eb214f1ba"; libraryHaskellDepends = [ - base lens persistent text transformers wai yesod-core yesod-form + base either esqueleto microlens microlens-th persistent text time + transformers wai yesod-core yesod-form yesod-markdown yesod-persistent ]; homepage = "https://github.com/andrewthad/yesod-crud-persist"; @@ -192621,8 +195233,8 @@ self: { }: mkDerivation { pname = "yesod-media-simple"; - version = "0.1.0.1"; - sha256 = "e638551e967a0d89b73d8e6fa0c0957c2a24c6c864e17e0cdb03f58335ce54aa"; + version = "0.2.0.0"; + sha256 = "d3489fd4cd6f1e1614301939eea8a61222c22f77fe13a6d5460f62fd590cdfe9"; libraryHaskellDepends = [ base bytestring diagrams-cairo diagrams-core diagrams-lib directory JuicyPixels vector yesod @@ -192651,7 +195263,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-newsfeed" = callPackage + "yesod-newsfeed_1_4_0_1" = callPackage ({ mkDerivation, base, blaze-html, blaze-markup, bytestring , containers, shakespeare, text, time, xml-conduit, yesod-core }: @@ -192666,6 +195278,24 @@ self: { homepage = "http://www.yesodweb.com/"; description = "Helper functions and data types for producing News feeds"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "yesod-newsfeed" = callPackage + ({ mkDerivation, base, blaze-html, blaze-markup, bytestring + , containers, shakespeare, text, time, xml-conduit, yesod-core + }: + mkDerivation { + pname = "yesod-newsfeed"; + version = "1.5"; + sha256 = "285958baa34c4783ba9c85370fef6ac94d25dd6447aa62e0345eef4f0c0ed25d"; + libraryHaskellDepends = [ + base blaze-html blaze-markup bytestring containers shakespeare text + time xml-conduit yesod-core + ]; + homepage = "http://www.yesodweb.com/"; + description = "Helper functions and data types for producing News feeds"; + license = stdenv.lib.licenses.mit; }) {}; "yesod-paginate" = callPackage @@ -192924,8 +195554,8 @@ self: { }: mkDerivation { pname = "yesod-raml"; - version = "0.1.3"; - sha256 = "262e8dbbba8f7f6338916d1b6c505d7a6f38378d1a2913a8bfe16e8a1d3f11a2"; + version = "0.1.4"; + sha256 = "4f5b7fbe2ca2b7e2db633f2919bb5694a827e8995afd112fc95bccc694c0df59"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -194177,9 +196807,10 @@ self: { ({ mkDerivation, base, HaXml }: mkDerivation { pname = "yjsvg"; - version = "0.1.18"; - sha256 = "513a7714e8c3ea42449ff27a2d8af00583569338621a501f0f0fef51a4833acd"; + version = "0.2.0.0"; + sha256 = "4841c8f1120ba253c616ff48cffd63d2ca7ba87127bc428b5fa5fc7d6dbe6f17"; libraryHaskellDepends = [ base HaXml ]; + jailbreak = true; description = "make SVG string from Haskell data"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -194382,7 +197013,7 @@ self: { ]; description = "Utilities for reading and writing Alteryx .yxdb files"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "z3" = callPackage @@ -194688,6 +197319,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "zim-parser" = callPackage + ({ mkDerivation, array, base, binary, binary-conduit, bytestring + , conduit, conduit-extra, hspec, lzma-conduit, resourcet + }: + mkDerivation { + pname = "zim-parser"; + version = "0.1.0.0"; + sha256 = "2d0d49978feb7eb2ed52715ff22ad5687e2d0a6aefc55690793c2bd6c58a344f"; + libraryHaskellDepends = [ + array base binary binary-conduit bytestring conduit conduit-extra + lzma-conduit resourcet + ]; + testHaskellDepends = [ + array base binary binary-conduit bytestring conduit conduit-extra + hspec lzma-conduit resourcet + ]; + homepage = "https://github.com/robbinch/zim-parser#readme"; + description = "Read and parse ZIM files"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "zip-archive_0_2_3_5" = callPackage ({ mkDerivation, array, base, binary, bytestring, containers , digest, directory, filepath, HUnit, mtl, old-time, pretty diff --git a/pkgs/development/interpreters/gtk-server/default.nix b/pkgs/development/interpreters/gtk-server/default.nix new file mode 100644 index 00000000000..34ca504259e --- /dev/null +++ b/pkgs/development/interpreters/gtk-server/default.nix @@ -0,0 +1,21 @@ +{ stdenv, fetchurl, libffcall, gtk2, pkgconfig }: + +stdenv.mkDerivation rec { + v = "2.3.1"; + name = "gtk-server-${v}"; + + src = fetchurl { + url = "mirror://sourceforge/gtk-server/${name}-sr.tar.gz"; + sha256 = "0z8ng5rhxc7fpsj3d50h25wkgcnxjfy030jm8r9w9m729w2c9hxb"; + }; + + buildInputs = [ libffcall gtk2 pkgconfig ]; + + configureOptions = [ "--with-gtk2" ]; + + meta = { + description = "gtk-server for interpreted GUI programming"; + homepage = "http://www.gtk-server.org/"; + license = stdenv.lib.licenses.gpl2Plus; + }; +} diff --git a/pkgs/development/interpreters/mujs/default.nix b/pkgs/development/interpreters/mujs/default.nix index 1faf913a2d6..2e8e9b4f985 100644 --- a/pkgs/development/interpreters/mujs/default.nix +++ b/pkgs/development/interpreters/mujs/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchgit, clang }: stdenv.mkDerivation rec { - name = "mujs-2015-09-15"; + name = "mujs-2015-09-29"; src = fetchgit { url = git://git.ghostscript.com/mujs.git; - rev = "17019d29e5494d4b0ae148a3043a940be78e3215"; - sha256 = "07192f4va733dr3v4ywfaqhz21iyydjwm84ij7zafwjvfi5z2b38"; + rev = "08276111f575ac6142e922d62aa264dc1f30b69e"; + sha256 = "18w7yayrn5p8amack4p23wcz49x9cjh1pmzalrf16fhy3n753hbb"; }; buildInputs = [ clang ]; diff --git a/pkgs/development/interpreters/php/default.nix b/pkgs/development/interpreters/php/default.nix index 7da631a3cbd..8408a54cab0 100644 --- a/pkgs/development/interpreters/php/default.nix +++ b/pkgs/development/interpreters/php/default.nix @@ -290,13 +290,13 @@ in { }; php55 = generic { - version = "5.5.29"; - sha256 = "0imr8c48ffjhc2zm96ndq92z3736xrm12hd5c1lssz67xiwybkpv"; + version = "5.5.30"; + sha256 = "0a9v7jq8mr15dcim23rzcfgpijc5k1rkc4qv9as1rpgc7iqjlcz7"; }; php56 = generic { - version = "5.6.13"; - sha256 = "14zq40j229salk0wp7inl4jvj3xff03bz7g5xn8ipd5skiy86n33"; + version = "5.6.14"; + sha256 = "1c1f5dkfifhaxvl4c7cabv339lazd0znj3phbnd87ha12vqrbwin"; }; php70 = lib.lowPrio (generic { diff --git a/pkgs/development/interpreters/picolisp/default.nix b/pkgs/development/interpreters/picolisp/default.nix index c43a3ce2429..cc9cac3a47f 100644 --- a/pkgs/development/interpreters/picolisp/default.nix +++ b/pkgs/development/interpreters/picolisp/default.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { cat >"$out/bin/pil" <../srcs.nix <>../srcs.nix <>../srcs.nix - -cd .. diff --git a/pkgs/development/libraries/kde-frameworks-5.13/srcs.nix b/pkgs/development/libraries/kde-frameworks-5.13/srcs.nix deleted file mode 100644 index 9cfb9c2006a..00000000000 --- a/pkgs/development/libraries/kde-frameworks-5.13/srcs.nix +++ /dev/null @@ -1,549 +0,0 @@ -# DO NOT EDIT! This file is generated automatically by manifest.sh -{ fetchurl, mirror }: - -{ - kiconthemes = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kiconthemes-5.13.0.tar.xz"; - sha256 = "1zsqmq1vzpiflnhr4ydwyg84cfima2hh0m61pgsxki98a8cfjz78"; - name = "kiconthemes-5.13.0.tar.xz"; - }; - }; - kitemmodels = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kitemmodels-5.13.0.tar.xz"; - sha256 = "1bcnssm0sp4xs2wm9x65705671y97bhgjlbqvngdw95qr8mjalda"; - name = "kitemmodels-5.13.0.tar.xz"; - }; - }; - kactivities = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kactivities-5.13.0.tar.xz"; - sha256 = "0k1f3iliwws30f9d3gfrx3cxqcmr3v9w0p4nxnk35qa7bflkw2jp"; - name = "kactivities-5.13.0.tar.xz"; - }; - }; - threadweaver = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/threadweaver-5.13.0.tar.xz"; - sha256 = "06hvraianc559plk50rfg4a7rwykq7s9ak343xylm37mg3sx3myn"; - name = "threadweaver-5.13.0.tar.xz"; - }; - }; - bluez-qt = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/bluez-qt-5.13.0.tar.xz"; - sha256 = "0ccylfkph8kxni2kfbdk7zzvywsn447kkvfx5xm63l19acff74c8"; - name = "bluez-qt-5.13.0.tar.xz"; - }; - }; - plasma-framework = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/plasma-framework-5.13.0.tar.xz"; - sha256 = "0fk3a7xzhi761kl2xwxhxv2kp4cblqzn7ylk6q60x2cr3vd3jxgb"; - name = "plasma-framework-5.13.0.tar.xz"; - }; - }; - kguiaddons = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kguiaddons-5.13.0.tar.xz"; - sha256 = "0p33i1hwzcbczxdw8mnkknb35v7n8m6x9jr9gysvzhg76l2z6ca7"; - name = "kguiaddons-5.13.0.tar.xz"; - }; - }; - ktexteditor = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/ktexteditor-5.13.0.tar.xz"; - sha256 = "1paiqpi73pvhqjcgk9l7agqk4s9pw9fghh1ipfw6clklrkpwjy2f"; - name = "ktexteditor-5.13.0.tar.xz"; - }; - }; - kinit = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kinit-5.13.0.tar.xz"; - sha256 = "06jcznxw346g6cr08ykgl2bc8wfann5s4rs0py6ah1al5py87jbq"; - name = "kinit-5.13.0.tar.xz"; - }; - }; - kxmlgui = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kxmlgui-5.13.0.tar.xz"; - sha256 = "06i873lsy0k67jdipzakc5gxmya82s8mkprkzb7pvac2ird2y66q"; - name = "kxmlgui-5.13.0.tar.xz"; - }; - }; - kdbusaddons = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kdbusaddons-5.13.0.tar.xz"; - sha256 = "1w118l5qc0kn5fmv5dqaxidxjsgzzq4ak9pk6vgafrdf7f79dy82"; - name = "kdbusaddons-5.13.0.tar.xz"; - }; - }; - kunitconversion = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kunitconversion-5.13.0.tar.xz"; - sha256 = "1cff7ighx6r64vv5wc88gnnq4k0c6c18k92nlj56b61g94sjx5xp"; - name = "kunitconversion-5.13.0.tar.xz"; - }; - }; - kemoticons = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kemoticons-5.13.0.tar.xz"; - sha256 = "0cxi6gldp9qpi47g0chg6bhr17w43bv36pf2gg2dsy5mymnw1iaj"; - name = "kemoticons-5.13.0.tar.xz"; - }; - }; - kcompletion = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kcompletion-5.13.0.tar.xz"; - sha256 = "0j47bwi7sw2khyi3qp0b77npgf40wfax1j9zic68xg1yjf4y52b4"; - name = "kcompletion-5.13.0.tar.xz"; - }; - }; - kpackage = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kpackage-5.13.0.tar.xz"; - sha256 = "0ybdzx33gcpb4j18vnv99hbycrlwxzhwblz07m1a0q1k2x004hla"; - name = "kpackage-5.13.0.tar.xz"; - }; - }; - kpty = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kpty-5.13.0.tar.xz"; - sha256 = "0c37zv1lrdma4659chmh27naxflhjz614h385im0m717hx67v5v0"; - name = "kpty-5.13.0.tar.xz"; - }; - }; - kservice = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kservice-5.13.0.tar.xz"; - sha256 = "1a7pz9m948xfiqphm29k7wnc24qv5xm8zb7f61mfbmzic18p4076"; - name = "kservice-5.13.0.tar.xz"; - }; - }; - kwidgetsaddons = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kwidgetsaddons-5.13.0.tar.xz"; - sha256 = "19s31brrqhb1vncc4rkik42l4si28ky3d5ysvnyx7mw2jip4929i"; - name = "kwidgetsaddons-5.13.0.tar.xz"; - }; - }; - kimageformats = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kimageformats-5.13.0.tar.xz"; - sha256 = "0lqraljikwkp88wnb1zxmylk7gn7rsp9301jn2qff3i0aa8m56ly"; - name = "kimageformats-5.13.0.tar.xz"; - }; - }; - kwindowsystem = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kwindowsystem-5.13.0.tar.xz"; - sha256 = "18ihvj1s4apsb647gbp8ghl083f3idpld693vwi138fsk89nhn67"; - name = "kwindowsystem-5.13.0.tar.xz"; - }; - }; - kxmlrpcclient = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kxmlrpcclient-5.13.0.tar.xz"; - sha256 = "18gdfb2yqzyid6zhx98xwd3vk2bnvxgpsk0dmy0098b9jl5gi39h"; - name = "kxmlrpcclient-5.13.0.tar.xz"; - }; - }; - kconfig = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kconfig-5.13.0.tar.xz"; - sha256 = "0qhymvqccl568ib975fx2jpm91ydsixx8lmf2803m89nad3bi77p"; - name = "kconfig-5.13.0.tar.xz"; - }; - }; - kdeclarative = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kdeclarative-5.13.0.tar.xz"; - sha256 = "1c65ls02pqg1apmxvw3xhi8d7i4pwvx777jp755zbz6f0k2q5h14"; - name = "kdeclarative-5.13.0.tar.xz"; - }; - }; - kapidox = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kapidox-5.13.0.tar.xz"; - sha256 = "0gg72qli7yix0v6riywbw0iw3y28jzk84p161lh7izql8kb463zj"; - name = "kapidox-5.13.0.tar.xz"; - }; - }; - knotifyconfig = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/knotifyconfig-5.13.0.tar.xz"; - sha256 = "19my0x60vhhngdzb5nr0cdi5yby4113pzqzg39wslbb1n5mcfqky"; - name = "knotifyconfig-5.13.0.tar.xz"; - }; - }; - kcodecs = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kcodecs-5.13.0.tar.xz"; - sha256 = "0b1jaxkkqmi7r013vpyhhqaqbg6hwc4nb0bm23nr1az9qasdvxzm"; - name = "kcodecs-5.13.0.tar.xz"; - }; - }; - kdnssd = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kdnssd-5.13.0.tar.xz"; - sha256 = "1jaa8lwqq4y1rl381j85qzxxyqw2if95rs8q5lsm14xq9jgwrf6r"; - name = "kdnssd-5.13.0.tar.xz"; - }; - }; - ktextwidgets = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/ktextwidgets-5.13.0.tar.xz"; - sha256 = "1p38j96z19fy1pdc249myl5mm0nbs7nrrhkmgfjig24lamivy98h"; - name = "ktextwidgets-5.13.0.tar.xz"; - }; - }; - kauth = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kauth-5.13.0.tar.xz"; - sha256 = "1j1kx9dypirpw41i8cx8dylwqaqm8rdbkxb0xmvyi7x8pax7rmkk"; - name = "kauth-5.13.0.tar.xz"; - }; - }; - kplotting = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kplotting-5.13.0.tar.xz"; - sha256 = "0f4vafy4b473407lm2kazllxzdiq1blvmypab7jlk0bj206vmdhq"; - name = "kplotting-5.13.0.tar.xz"; - }; - }; - ki18n = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/ki18n-5.13.0.tar.xz"; - sha256 = "1izriaip8r7cgm36mid6fxsvg661311lm6aalqaxq9xa70lkq3xm"; - name = "ki18n-5.13.0.tar.xz"; - }; - }; - knotifications = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/knotifications-5.13.0.tar.xz"; - sha256 = "04n50hkg6h3j49l1bi0igr79vgb8xfw74mbaw5s20nw55y2xyziv"; - name = "knotifications-5.13.0.tar.xz"; - }; - }; - kitemviews = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kitemviews-5.13.0.tar.xz"; - sha256 = "0iazr2fyhksa3wsfrqaknxs74h66fb6drg9vcg18dml9mv0v9jgw"; - name = "kitemviews-5.13.0.tar.xz"; - }; - }; - kcoreaddons = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kcoreaddons-5.13.0.tar.xz"; - sha256 = "0qc9lmc90bhrzaaf611vn7x5z549yvl1dk2ba726qaxb8hf5fhmx"; - name = "kcoreaddons-5.13.0.tar.xz"; - }; - }; - kwallet = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kwallet-5.13.0.tar.xz"; - sha256 = "0p7as0ma40dssd171mpi68sdih5fr03lcwvhy3zazhhpf5gjfwv8"; - name = "kwallet-5.13.0.tar.xz"; - }; - }; - modemmanager-qt = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/modemmanager-qt-5.13.0.tar.xz"; - sha256 = "17a4d7pp2qj7zvxfd8qicj332n25nj6d8xs585fkqlwsk5qvv5mh"; - name = "modemmanager-qt-5.13.0.tar.xz"; - }; - }; - kio = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kio-5.13.0.tar.xz"; - sha256 = "1m6vids0ahdvqw1wgiss11cb6z2x81acig8x38jgjna8al6dw7y3"; - name = "kio-5.13.0.tar.xz"; - }; - }; - baloo = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/baloo-5.13.0.tar.xz"; - sha256 = "159gkr4xsyj7sb6dqvjlldyl8hdm0sgzhbczb24q182dnwqrmmbq"; - name = "baloo-5.13.0.tar.xz"; - }; - }; - karchive = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/karchive-5.13.0.tar.xz"; - sha256 = "0qg90h4iiyb3frnqs01r440pan1m0mn6y0b4025ync1g50iyf1jz"; - name = "karchive-5.13.0.tar.xz"; - }; - }; - kdoctools = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kdoctools-5.13.0.tar.xz"; - sha256 = "0604rmrg6b8h4pw14kwal04s21f9gkrf495csj3jsm7042z5p6rf"; - name = "kdoctools-5.13.0.tar.xz"; - }; - }; - kparts = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kparts-5.13.0.tar.xz"; - sha256 = "1mqklszbhlk8pdwig88yqa5jpjbdzkz9q618c4029aqiazzjqs39"; - name = "kparts-5.13.0.tar.xz"; - }; - }; - kdewebkit = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kdewebkit-5.13.0.tar.xz"; - sha256 = "1n8x0biy5s73qihx9niivhmfdfglnai360k4llpjq9vhd8fassjx"; - name = "kdewebkit-5.13.0.tar.xz"; - }; - }; - kidletime = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kidletime-5.13.0.tar.xz"; - sha256 = "1d6p4ld8wday3sb3gdvivigw7vk33akawf531ghc8rhmi7mr2db2"; - name = "kidletime-5.13.0.tar.xz"; - }; - }; - extra-cmake-modules = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/extra-cmake-modules-5.13.0.tar.xz"; - sha256 = "1hnmsghfnl99ihgnp90pbh3ngh4l6n6d5g7ial6bfzrlfn588lms"; - name = "extra-cmake-modules-5.13.0.tar.xz"; - }; - }; - frameworkintegration = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/frameworkintegration-5.13.0.tar.xz"; - sha256 = "03pzic63vi1bmcf4vlk2kfcs6fbc9p0plzydizqmm34iiv8k48jb"; - name = "frameworkintegration-5.13.0.tar.xz"; - }; - }; - kjs = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/portingAids/kjs-5.13.0.tar.xz"; - sha256 = "1ij3f303k1higj5l7l3pxl6qlp8arf3qizbar2d36f3qczyql5r8"; - name = "kjs-5.13.0.tar.xz"; - }; - }; - krunner = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/portingAids/krunner-5.13.0.tar.xz"; - sha256 = "1yj97lp6ny9m45nankgkq7zdw929mw218pq7yalr21vqqxwvd84a"; - name = "krunner-5.13.0.tar.xz"; - }; - }; - khtml = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/portingAids/khtml-5.13.0.tar.xz"; - sha256 = "0mykidqkhs0hd6s4i8li25gk8dzysw6imc2lfjbwvyyvx6lyd55m"; - name = "khtml-5.13.0.tar.xz"; - }; - }; - kmediaplayer = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/portingAids/kmediaplayer-5.13.0.tar.xz"; - sha256 = "19kazkjsc2s1wfcslmi46ic1h7jvwdbbc6y9713jb1yymp6jzz30"; - name = "kmediaplayer-5.13.0.tar.xz"; - }; - }; - kross = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/portingAids/kross-5.13.0.tar.xz"; - sha256 = "18237mj3bzwj4vdxjxqn1b865syi3z3f1zlrnfslijssgw6qs41m"; - name = "kross-5.13.0.tar.xz"; - }; - }; - kjsembed = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/portingAids/kjsembed-5.13.0.tar.xz"; - sha256 = "0inlb47rkfriwnbkkhgb20kc86b38yl9xxwn8cjx80m61sj8ici8"; - name = "kjsembed-5.13.0.tar.xz"; - }; - }; - kdelibs4support = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/portingAids/kdelibs4support-5.13.0.tar.xz"; - sha256 = "1hlniaw259yz6vs42w0q7mjycq1vf8ggvsigc09ij8bj7k7ih3s3"; - name = "kdelibs4support-5.13.0.tar.xz"; - }; - }; - kcrash = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kcrash-5.13.0.tar.xz"; - sha256 = "07cb6jmf1w74ndcfj4mcpc60xkpnl69jzdd5ljxsi2k1awvjs58n"; - name = "kcrash-5.13.0.tar.xz"; - }; - }; - kcmutils = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kcmutils-5.13.0.tar.xz"; - sha256 = "13jc3053jf3lg2zrrqi4mcsnma6xd6p56ilaw86bgvdsq1fkr84b"; - name = "kcmutils-5.13.0.tar.xz"; - }; - }; - knewstuff = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/knewstuff-5.13.0.tar.xz"; - sha256 = "12pyxdb9rq60hcw7k8sh79mq6l5h5zdrixn778yps27ckf69icsr"; - name = "knewstuff-5.13.0.tar.xz"; - }; - }; - kded = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kded-5.13.0.tar.xz"; - sha256 = "0yfpx2dc2x7jzyxmj0k92ar2rvzabz75dwh09rr93wyzyjr1l7i9"; - name = "kded-5.13.0.tar.xz"; - }; - }; - kconfigwidgets = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kconfigwidgets-5.13.0.tar.xz"; - sha256 = "1m5n24c34sdr9hfap2riws0n58pka0a0n23gxdzxwbk9z1fj97zy"; - name = "kconfigwidgets-5.13.0.tar.xz"; - }; - }; - solid = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/solid-5.13.0.tar.xz"; - sha256 = "1s06qbicni2g99kmp7kd06xrps0pqb9d9q04pmmlqdg24fcm0aik"; - name = "solid-5.13.0.tar.xz"; - }; - }; - kjobwidgets = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kjobwidgets-5.13.0.tar.xz"; - sha256 = "0vjqidawgca5zr5vfm55lqnvzr9pk0dp1w85pdpp576rsjg34404"; - name = "kjobwidgets-5.13.0.tar.xz"; - }; - }; - kdesignerplugin = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kdesignerplugin-5.13.0.tar.xz"; - sha256 = "0iibam8d34kyvq0qpbfx1ligwcyp84x4ycr01bydnbc58qz6hg3y"; - name = "kdesignerplugin-5.13.0.tar.xz"; - }; - }; - kglobalaccel = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kglobalaccel-5.13.0.tar.xz"; - sha256 = "1fdfcyb93p39gbkvmzv43hg33vjsr9g2y9vbr07j38q9vgjipynl"; - name = "kglobalaccel-5.13.0.tar.xz"; - }; - }; - attica = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/attica-5.13.0.tar.xz"; - sha256 = "0fxqf8ab8y7lkj0c09zrshwykx2na5yqb3wxlfd8ngd6cyk34r8h"; - name = "attica-5.13.0.tar.xz"; - }; - }; - kdesu = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kdesu-5.13.0.tar.xz"; - sha256 = "0413lddgrwhx3jn2xhmi6gllv4cg2136f00bg0zxdnvgjbavj50g"; - name = "kdesu-5.13.0.tar.xz"; - }; - }; - sonnet = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/sonnet-5.13.0.tar.xz"; - sha256 = "05j79i2aq6cy2crjwsifsfj5kb74ca0bz9yl1302gkdn6qy3lx57"; - name = "sonnet-5.13.0.tar.xz"; - }; - }; - kfilemetadata = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kfilemetadata-5.13.0.tar.xz"; - sha256 = "0c7m1ha1s020jbb5925s859lknq10df1162aal8g99nxvadvkafx"; - name = "kfilemetadata-5.13.0.tar.xz"; - }; - }; - networkmanager-qt = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/networkmanager-qt-5.13.0.tar.xz"; - sha256 = "16v2vr92yfins23h2h6ddlvlf2iasbz67dr8gzyhwa9kcwr23a19"; - name = "networkmanager-qt-5.13.0.tar.xz"; - }; - }; - kbookmarks = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kbookmarks-5.13.0.tar.xz"; - sha256 = "0gmsvhphilv7aqci51hlvaikgpxhbgi6f41qb1ybkjjh6gfcz6lg"; - name = "kbookmarks-5.13.0.tar.xz"; - }; - }; - kpeople = { - version = "5.13.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.13/kpeople-5.13.0.tar.xz"; - sha256 = "1fw9jgkqv1hx5llpkws0v0pcfjjbh7z9b7z474y7ix2ycg9ikxqn"; - name = "kpeople-5.13.0.tar.xz"; - }; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.13/attica.nix b/pkgs/development/libraries/kde-frameworks-5.14/attica.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/attica.nix rename to pkgs/development/libraries/kde-frameworks-5.14/attica.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/baloo.nix b/pkgs/development/libraries/kde-frameworks-5.14/baloo.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/baloo.nix rename to pkgs/development/libraries/kde-frameworks-5.14/baloo.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/bluez-qt.nix b/pkgs/development/libraries/kde-frameworks-5.14/bluez-qt.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/bluez-qt.nix rename to pkgs/development/libraries/kde-frameworks-5.14/bluez-qt.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/default.nix b/pkgs/development/libraries/kde-frameworks-5.14/default.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/default.nix rename to pkgs/development/libraries/kde-frameworks-5.14/default.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/extra-cmake-modules/0001-extra-cmake-modules-paths.patch b/pkgs/development/libraries/kde-frameworks-5.14/extra-cmake-modules/0001-extra-cmake-modules-paths.patch similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/extra-cmake-modules/0001-extra-cmake-modules-paths.patch rename to pkgs/development/libraries/kde-frameworks-5.14/extra-cmake-modules/0001-extra-cmake-modules-paths.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.13/extra-cmake-modules/default.nix b/pkgs/development/libraries/kde-frameworks-5.14/extra-cmake-modules/default.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/extra-cmake-modules/default.nix rename to pkgs/development/libraries/kde-frameworks-5.14/extra-cmake-modules/default.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/extra-cmake-modules/setup-hook.sh b/pkgs/development/libraries/kde-frameworks-5.14/extra-cmake-modules/setup-hook.sh similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/extra-cmake-modules/setup-hook.sh rename to pkgs/development/libraries/kde-frameworks-5.14/extra-cmake-modules/setup-hook.sh diff --git a/pkgs/development/libraries/kde-frameworks-5.14/fetchsrcs.sh b/pkgs/development/libraries/kde-frameworks-5.14/fetchsrcs.sh new file mode 100755 index 00000000000..a402d406b8a --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.14/fetchsrcs.sh @@ -0,0 +1,57 @@ +#! /usr/bin/env nix-shell +#! nix-shell -i bash -p coreutils findutils gnused nix wget + +set -x + +# The trailing slash at the end is necessary! +RELEASE_URL="http://download.kde.org/stable/frameworks/5.14/" +EXTRA_WGET_ARGS='-A *.tar.xz' + +mkdir tmp; cd tmp + +rm -f ../srcs.csv + +wget -nH -r -c --no-parent $RELEASE_URL $EXTRA_WGET_ARGS + +find . | while read src; do + if [[ -f "${src}" ]]; then + # Sanitize file name + filename=$(basename "$src" | tr '@' '_') + nameVersion="${filename%.tar.*}" + name=$(echo "$nameVersion" | sed -e 's,-[[:digit:]].*,,' | sed -e 's,-opensource-src$,,') + version=$(echo "$nameVersion" | sed -e 's,^\([[:alpha:]][[:alnum:]]*-\)\+,,') + echo "$name,$version,$src,$filename" >>../srcs.csv + fi +done + +cat >../srcs.nix <>../srcs.nix <>../srcs.nix + +rm -f ../srcs.csv + +cd .. diff --git a/pkgs/development/libraries/kde-frameworks-5.13/frameworkintegration.nix b/pkgs/development/libraries/kde-frameworks-5.14/frameworkintegration.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/frameworkintegration.nix rename to pkgs/development/libraries/kde-frameworks-5.14/frameworkintegration.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kactivities.nix b/pkgs/development/libraries/kde-frameworks-5.14/kactivities.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kactivities.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kactivities.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kapidox.nix b/pkgs/development/libraries/kde-frameworks-5.14/kapidox.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kapidox.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kapidox.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/karchive.nix b/pkgs/development/libraries/kde-frameworks-5.14/karchive.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/karchive.nix rename to pkgs/development/libraries/kde-frameworks-5.14/karchive.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kauth/default.nix b/pkgs/development/libraries/kde-frameworks-5.14/kauth/default.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kauth/default.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kauth/default.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kauth/kauth-policy-install.patch b/pkgs/development/libraries/kde-frameworks-5.14/kauth/kauth-policy-install.patch similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kauth/kauth-policy-install.patch rename to pkgs/development/libraries/kde-frameworks-5.14/kauth/kauth-policy-install.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kbookmarks.nix b/pkgs/development/libraries/kde-frameworks-5.14/kbookmarks.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kbookmarks.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kbookmarks.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kcmutils/default.nix b/pkgs/development/libraries/kde-frameworks-5.14/kcmutils/default.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kcmutils/default.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kcmutils/default.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kcmutils/kcmutils-pluginselector-follow-symlinks.patch b/pkgs/development/libraries/kde-frameworks-5.14/kcmutils/kcmutils-pluginselector-follow-symlinks.patch similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kcmutils/kcmutils-pluginselector-follow-symlinks.patch rename to pkgs/development/libraries/kde-frameworks-5.14/kcmutils/kcmutils-pluginselector-follow-symlinks.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kcodecs.nix b/pkgs/development/libraries/kde-frameworks-5.14/kcodecs.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kcodecs.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kcodecs.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kcompletion.nix b/pkgs/development/libraries/kde-frameworks-5.14/kcompletion.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kcompletion.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kcompletion.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kconfig.nix b/pkgs/development/libraries/kde-frameworks-5.14/kconfig.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kconfig.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kconfig.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kconfigwidgets/default.nix b/pkgs/development/libraries/kde-frameworks-5.14/kconfigwidgets/default.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kconfigwidgets/default.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kconfigwidgets/default.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kconfigwidgets/kconfigwidgets-helpclient-follow-symlinks.patch b/pkgs/development/libraries/kde-frameworks-5.14/kconfigwidgets/kconfigwidgets-helpclient-follow-symlinks.patch similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kconfigwidgets/kconfigwidgets-helpclient-follow-symlinks.patch rename to pkgs/development/libraries/kde-frameworks-5.14/kconfigwidgets/kconfigwidgets-helpclient-follow-symlinks.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kcoreaddons.nix b/pkgs/development/libraries/kde-frameworks-5.14/kcoreaddons.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kcoreaddons.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kcoreaddons.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kcrash.nix b/pkgs/development/libraries/kde-frameworks-5.14/kcrash.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kcrash.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kcrash.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kdbusaddons.nix b/pkgs/development/libraries/kde-frameworks-5.14/kdbusaddons.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kdbusaddons.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kdbusaddons.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kdeclarative.nix b/pkgs/development/libraries/kde-frameworks-5.14/kdeclarative.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kdeclarative.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kdeclarative.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kded.nix b/pkgs/development/libraries/kde-frameworks-5.14/kded.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kded.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kded.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kdelibs4support.nix b/pkgs/development/libraries/kde-frameworks-5.14/kdelibs4support.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kdelibs4support.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kdelibs4support.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kdesignerplugin.nix b/pkgs/development/libraries/kde-frameworks-5.14/kdesignerplugin.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kdesignerplugin.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kdesignerplugin.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kdesu.nix b/pkgs/development/libraries/kde-frameworks-5.14/kdesu.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kdesu.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kdesu.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kdewebkit.nix b/pkgs/development/libraries/kde-frameworks-5.14/kdewebkit.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kdewebkit.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kdewebkit.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kdnssd.nix b/pkgs/development/libraries/kde-frameworks-5.14/kdnssd.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kdnssd.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kdnssd.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kdoctools/default.nix b/pkgs/development/libraries/kde-frameworks-5.14/kdoctools/default.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kdoctools/default.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kdoctools/default.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kdoctools/kdoctools-no-find-docbook-xml.patch b/pkgs/development/libraries/kde-frameworks-5.14/kdoctools/kdoctools-no-find-docbook-xml.patch similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kdoctools/kdoctools-no-find-docbook-xml.patch rename to pkgs/development/libraries/kde-frameworks-5.14/kdoctools/kdoctools-no-find-docbook-xml.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kemoticons.nix b/pkgs/development/libraries/kde-frameworks-5.14/kemoticons.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kemoticons.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kemoticons.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kfilemetadata.nix b/pkgs/development/libraries/kde-frameworks-5.14/kfilemetadata.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kfilemetadata.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kfilemetadata.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kglobalaccel.nix b/pkgs/development/libraries/kde-frameworks-5.14/kglobalaccel.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kglobalaccel.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kglobalaccel.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kguiaddons.nix b/pkgs/development/libraries/kde-frameworks-5.14/kguiaddons.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kguiaddons.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kguiaddons.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/khtml.nix b/pkgs/development/libraries/kde-frameworks-5.14/khtml.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/khtml.nix rename to pkgs/development/libraries/kde-frameworks-5.14/khtml.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/ki18n.nix b/pkgs/development/libraries/kde-frameworks-5.14/ki18n.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/ki18n.nix rename to pkgs/development/libraries/kde-frameworks-5.14/ki18n.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kiconthemes.nix b/pkgs/development/libraries/kde-frameworks-5.14/kiconthemes.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kiconthemes.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kiconthemes.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kidletime.nix b/pkgs/development/libraries/kde-frameworks-5.14/kidletime.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kidletime.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kidletime.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kimageformats.nix b/pkgs/development/libraries/kde-frameworks-5.14/kimageformats.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kimageformats.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kimageformats.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kinit/0001-kinit-libpath.patch b/pkgs/development/libraries/kde-frameworks-5.14/kinit/0001-kinit-libpath.patch similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kinit/0001-kinit-libpath.patch rename to pkgs/development/libraries/kde-frameworks-5.14/kinit/0001-kinit-libpath.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kinit/default.nix b/pkgs/development/libraries/kde-frameworks-5.14/kinit/default.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kinit/default.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kinit/default.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kio.nix b/pkgs/development/libraries/kde-frameworks-5.14/kio.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kio.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kio.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kitemmodels.nix b/pkgs/development/libraries/kde-frameworks-5.14/kitemmodels.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kitemmodels.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kitemmodels.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kitemviews.nix b/pkgs/development/libraries/kde-frameworks-5.14/kitemviews.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kitemviews.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kitemviews.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kjobwidgets.nix b/pkgs/development/libraries/kde-frameworks-5.14/kjobwidgets.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kjobwidgets.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kjobwidgets.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kjs.nix b/pkgs/development/libraries/kde-frameworks-5.14/kjs.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kjs.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kjs.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kjsembed.nix b/pkgs/development/libraries/kde-frameworks-5.14/kjsembed.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kjsembed.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kjsembed.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kmediaplayer.nix b/pkgs/development/libraries/kde-frameworks-5.14/kmediaplayer.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kmediaplayer.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kmediaplayer.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/knewstuff.nix b/pkgs/development/libraries/kde-frameworks-5.14/knewstuff.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/knewstuff.nix rename to pkgs/development/libraries/kde-frameworks-5.14/knewstuff.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/knotifications.nix b/pkgs/development/libraries/kde-frameworks-5.14/knotifications.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/knotifications.nix rename to pkgs/development/libraries/kde-frameworks-5.14/knotifications.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/knotifyconfig.nix b/pkgs/development/libraries/kde-frameworks-5.14/knotifyconfig.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/knotifyconfig.nix rename to pkgs/development/libraries/kde-frameworks-5.14/knotifyconfig.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kpackage/0001-allow-external-paths.patch b/pkgs/development/libraries/kde-frameworks-5.14/kpackage/0001-allow-external-paths.patch similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kpackage/0001-allow-external-paths.patch rename to pkgs/development/libraries/kde-frameworks-5.14/kpackage/0001-allow-external-paths.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kpackage/default.nix b/pkgs/development/libraries/kde-frameworks-5.14/kpackage/default.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kpackage/default.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kpackage/default.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kparts.nix b/pkgs/development/libraries/kde-frameworks-5.14/kparts.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kparts.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kparts.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kpeople.nix b/pkgs/development/libraries/kde-frameworks-5.14/kpeople.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kpeople.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kpeople.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kplotting.nix b/pkgs/development/libraries/kde-frameworks-5.14/kplotting.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kplotting.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kplotting.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kpty.nix b/pkgs/development/libraries/kde-frameworks-5.14/kpty.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kpty.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kpty.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kross.nix b/pkgs/development/libraries/kde-frameworks-5.14/kross.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kross.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kross.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/krunner.nix b/pkgs/development/libraries/kde-frameworks-5.14/krunner.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/krunner.nix rename to pkgs/development/libraries/kde-frameworks-5.14/krunner.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kservice/default.nix b/pkgs/development/libraries/kde-frameworks-5.14/kservice/default.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kservice/default.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kservice/default.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kservice/kservice-kbuildsycoca-follow-symlinks.patch b/pkgs/development/libraries/kde-frameworks-5.14/kservice/kservice-kbuildsycoca-follow-symlinks.patch similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kservice/kservice-kbuildsycoca-follow-symlinks.patch rename to pkgs/development/libraries/kde-frameworks-5.14/kservice/kservice-kbuildsycoca-follow-symlinks.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kservice/kservice-kbuildsycoca-no-canonicalize-path.patch b/pkgs/development/libraries/kde-frameworks-5.14/kservice/kservice-kbuildsycoca-no-canonicalize-path.patch similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kservice/kservice-kbuildsycoca-no-canonicalize-path.patch rename to pkgs/development/libraries/kde-frameworks-5.14/kservice/kservice-kbuildsycoca-no-canonicalize-path.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kservice/setup-hook.sh b/pkgs/development/libraries/kde-frameworks-5.14/kservice/setup-hook.sh similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kservice/setup-hook.sh rename to pkgs/development/libraries/kde-frameworks-5.14/kservice/setup-hook.sh diff --git a/pkgs/development/libraries/kde-frameworks-5.13/ktexteditor/0001-no-qcoreapplication.patch b/pkgs/development/libraries/kde-frameworks-5.14/ktexteditor/0001-no-qcoreapplication.patch similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/ktexteditor/0001-no-qcoreapplication.patch rename to pkgs/development/libraries/kde-frameworks-5.14/ktexteditor/0001-no-qcoreapplication.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.13/ktexteditor/default.nix b/pkgs/development/libraries/kde-frameworks-5.14/ktexteditor/default.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/ktexteditor/default.nix rename to pkgs/development/libraries/kde-frameworks-5.14/ktexteditor/default.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/ktextwidgets.nix b/pkgs/development/libraries/kde-frameworks-5.14/ktextwidgets.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/ktextwidgets.nix rename to pkgs/development/libraries/kde-frameworks-5.14/ktextwidgets.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kunitconversion.nix b/pkgs/development/libraries/kde-frameworks-5.14/kunitconversion.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kunitconversion.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kunitconversion.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kwallet.nix b/pkgs/development/libraries/kde-frameworks-5.14/kwallet.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kwallet.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kwallet.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kwidgetsaddons.nix b/pkgs/development/libraries/kde-frameworks-5.14/kwidgetsaddons.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kwidgetsaddons.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kwidgetsaddons.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kwindowsystem.nix b/pkgs/development/libraries/kde-frameworks-5.14/kwindowsystem.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kwindowsystem.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kwindowsystem.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kxmlgui.nix b/pkgs/development/libraries/kde-frameworks-5.14/kxmlgui.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kxmlgui.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kxmlgui.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/kxmlrpcclient.nix b/pkgs/development/libraries/kde-frameworks-5.14/kxmlrpcclient.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/kxmlrpcclient.nix rename to pkgs/development/libraries/kde-frameworks-5.14/kxmlrpcclient.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/modemmanager-qt.nix b/pkgs/development/libraries/kde-frameworks-5.14/modemmanager-qt.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/modemmanager-qt.nix rename to pkgs/development/libraries/kde-frameworks-5.14/modemmanager-qt.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/networkmanager-qt.nix b/pkgs/development/libraries/kde-frameworks-5.14/networkmanager-qt.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/networkmanager-qt.nix rename to pkgs/development/libraries/kde-frameworks-5.14/networkmanager-qt.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/plasma-framework/default.nix b/pkgs/development/libraries/kde-frameworks-5.14/plasma-framework/default.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/plasma-framework/default.nix rename to pkgs/development/libraries/kde-frameworks-5.14/plasma-framework/default.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/solid.nix b/pkgs/development/libraries/kde-frameworks-5.14/solid.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/solid.nix rename to pkgs/development/libraries/kde-frameworks-5.14/solid.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.13/sonnet.nix b/pkgs/development/libraries/kde-frameworks-5.14/sonnet.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/sonnet.nix rename to pkgs/development/libraries/kde-frameworks-5.14/sonnet.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.14/srcs.nix b/pkgs/development/libraries/kde-frameworks-5.14/srcs.nix new file mode 100644 index 00000000000..f9923e3645f --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.14/srcs.nix @@ -0,0 +1,549 @@ +# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh +{ fetchurl, mirror }: + +{ + attica = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/attica-5.14.0.tar.xz"; + sha256 = "0n5znf19112i1j2mwvyzc3g75bc83fdr1p7vljw670fjy2wm1fjy"; + name = "attica-5.14.0.tar.xz"; + }; + }; + baloo = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/baloo-5.14.0.tar.xz"; + sha256 = "0q72ij44r827259mw26q9f6518nj6jbawa94m8m2vrqdhcfjn25d"; + name = "baloo-5.14.0.tar.xz"; + }; + }; + bluez-qt = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/bluez-qt-5.14.0.tar.xz"; + sha256 = "136kjw4d91k85pkj90hs01nnqq51apppzbhjl7mx3xjqd2f15ljz"; + name = "bluez-qt-5.14.0.tar.xz"; + }; + }; + extra-cmake-modules = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/extra-cmake-modules-5.14.0.tar.xz"; + sha256 = "1c6frrvs8j56fyj0d9gcbqq3phhxmvn5ciy6bvj8vch3lynxrvyg"; + name = "extra-cmake-modules-5.14.0.tar.xz"; + }; + }; + frameworkintegration = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/frameworkintegration-5.14.0.tar.xz"; + sha256 = "194vhbjbjpdc8v69g1i08qcm8ywxfxm4ryc75dpp20117jfy9xy8"; + name = "frameworkintegration-5.14.0.tar.xz"; + }; + }; + kactivities = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kactivities-5.14.0.tar.xz"; + sha256 = "0q6c06qjypg3iy8x60wvyhm5n8fvdkcw5ibvns0zxxa8vw13l6z9"; + name = "kactivities-5.14.0.tar.xz"; + }; + }; + kapidox = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kapidox-5.14.0.tar.xz"; + sha256 = "14ai2n5ajm8sqdv0yy5hr0fg1ks9mvkf3diij7zjfzqi315wav6q"; + name = "kapidox-5.14.0.tar.xz"; + }; + }; + karchive = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/karchive-5.14.0.tar.xz"; + sha256 = "1sary49lwp09vrgwndaz3lhp6j3zkllxklbvm5s05i9mjxzgqww4"; + name = "karchive-5.14.0.tar.xz"; + }; + }; + kauth = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kauth-5.14.0.tar.xz"; + sha256 = "1kfqp6jrgx1wlznplr29spi08927cmiln718wzpzvzy8h3sfjc0l"; + name = "kauth-5.14.0.tar.xz"; + }; + }; + kbookmarks = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kbookmarks-5.14.0.tar.xz"; + sha256 = "12kv62ykys5rvmsia955nxv7m4xd551z762bjvvwjq3zds8pj5p3"; + name = "kbookmarks-5.14.0.tar.xz"; + }; + }; + kcmutils = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kcmutils-5.14.0.tar.xz"; + sha256 = "0c71b8gqja1qv8lkb7yn0z7qrgvnmhvhb751k9xsiabp306apx5f"; + name = "kcmutils-5.14.0.tar.xz"; + }; + }; + kcodecs = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kcodecs-5.14.0.tar.xz"; + sha256 = "0prhj43h7dh4811f3kfp6n0wvskczg42q17lbfn6p0d5qa0bz07y"; + name = "kcodecs-5.14.0.tar.xz"; + }; + }; + kcompletion = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kcompletion-5.14.0.tar.xz"; + sha256 = "14ba77fmcf4ldqbwc86frai9hz9jsz9663b0v8r3aca0mg7k096v"; + name = "kcompletion-5.14.0.tar.xz"; + }; + }; + kconfig = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kconfig-5.14.0.tar.xz"; + sha256 = "1c2rw3blgc7rmkaybr9jc3dfc1vzhvskrll7bc8xdm82b5m1850x"; + name = "kconfig-5.14.0.tar.xz"; + }; + }; + kconfigwidgets = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kconfigwidgets-5.14.0.tar.xz"; + sha256 = "103c2vd05ccmyzqf7yznz8d0vhd94c1381p5ajvibvzfv9cs4djg"; + name = "kconfigwidgets-5.14.0.tar.xz"; + }; + }; + kcoreaddons = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kcoreaddons-5.14.0.tar.xz"; + sha256 = "0xm2n7gvzq674cwi8gb8zkawj9pkaiv1qi63a76hl9vylidrm26q"; + name = "kcoreaddons-5.14.0.tar.xz"; + }; + }; + kcrash = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kcrash-5.14.0.tar.xz"; + sha256 = "18cc444wwfdfbr0m1064l34azl6f560f5npcz5spvz0yydlh0fs4"; + name = "kcrash-5.14.0.tar.xz"; + }; + }; + kdbusaddons = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kdbusaddons-5.14.0.tar.xz"; + sha256 = "009rzlr5a8znn4f31gz6zwi93mla09jy3rs336i7f6b111ha4yqy"; + name = "kdbusaddons-5.14.0.tar.xz"; + }; + }; + kdeclarative = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kdeclarative-5.14.0.tar.xz"; + sha256 = "1d87s26crv94w0g88xkqand3a1d02dcr9glbvpx1xxpz64mybvr4"; + name = "kdeclarative-5.14.0.tar.xz"; + }; + }; + kded = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kded-5.14.0.tar.xz"; + sha256 = "03s95pq283vjng106bs9lrj1i2fcb1pnp58cnk1fr6w3w8fp6daq"; + name = "kded-5.14.0.tar.xz"; + }; + }; + kdelibs4support = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/portingAids/kdelibs4support-5.14.0.tar.xz"; + sha256 = "1qdw5alnf643bw0pzq3yjwajl87000xpbs8h4k2c1872rmqq1m8r"; + name = "kdelibs4support-5.14.0.tar.xz"; + }; + }; + kdesignerplugin = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kdesignerplugin-5.14.0.tar.xz"; + sha256 = "1bb79szygplysckx7p4x66inbn9i2hmf6p7ikynbvkzph33zm375"; + name = "kdesignerplugin-5.14.0.tar.xz"; + }; + }; + kdesu = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kdesu-5.14.0.tar.xz"; + sha256 = "1l232jhl6x7b6xqw21qw0s342c6n2gnldsdd5fmh6grx4vv556nn"; + name = "kdesu-5.14.0.tar.xz"; + }; + }; + kdewebkit = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kdewebkit-5.14.0.tar.xz"; + sha256 = "0pz0z43mgcp4m5kdcqjl6x0cwafl0j2nidayj3vhaxcj40kn4k8l"; + name = "kdewebkit-5.14.0.tar.xz"; + }; + }; + kdnssd = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kdnssd-5.14.0.tar.xz"; + sha256 = "0cc0adzn4pc0s6mdv71bv6h8k7x0q941f6xdmj7jpcz2q6lycav1"; + name = "kdnssd-5.14.0.tar.xz"; + }; + }; + kdoctools = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kdoctools-5.14.0.tar.xz"; + sha256 = "06477pk0wni40c88c1v6rcl1yy91msfs399djb0i0ipkjnbj8gbs"; + name = "kdoctools-5.14.0.tar.xz"; + }; + }; + kemoticons = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kemoticons-5.14.0.tar.xz"; + sha256 = "1dsr9hbqjrwn44zm9i5anm8sy8jb90yjyv4s219kll5rkrbxk0zr"; + name = "kemoticons-5.14.0.tar.xz"; + }; + }; + kfilemetadata = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kfilemetadata-5.14.0.tar.xz"; + sha256 = "1ixn5yc7j4s3nvn03h7whkxsg15gf1cqnd3z2qxngvyvchzqhsd2"; + name = "kfilemetadata-5.14.0.tar.xz"; + }; + }; + kglobalaccel = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kglobalaccel-5.14.0.tar.xz"; + sha256 = "0cr62as4n3k34dbdcarmhkxkcznnkp65q57sy6k29a68jxgxq6c3"; + name = "kglobalaccel-5.14.0.tar.xz"; + }; + }; + kguiaddons = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kguiaddons-5.14.0.tar.xz"; + sha256 = "0658nn4lb59vzn6b9kmasl2a4g58c81cran6kz0fwc82d2310ncn"; + name = "kguiaddons-5.14.0.tar.xz"; + }; + }; + khtml = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/portingAids/khtml-5.14.0.tar.xz"; + sha256 = "1hj406v06isggbzvsw47ws510iz128jv5ggxw64p9pcibs3wb5j2"; + name = "khtml-5.14.0.tar.xz"; + }; + }; + ki18n = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/ki18n-5.14.0.tar.xz"; + sha256 = "0pwpxda5k7hl6njzzaj68brm1slfffprncgwknhaxksizprdh1qz"; + name = "ki18n-5.14.0.tar.xz"; + }; + }; + kiconthemes = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kiconthemes-5.14.0.tar.xz"; + sha256 = "0mhykdhzab112h5pb2s2sma821x57mnr3ydwq96qjr7xhdib8dwr"; + name = "kiconthemes-5.14.0.tar.xz"; + }; + }; + kidletime = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kidletime-5.14.0.tar.xz"; + sha256 = "07qhmyld01xcidbhkwscz5x8xvnnbphz7hfiqkn20d0n6kmlfbr8"; + name = "kidletime-5.14.0.tar.xz"; + }; + }; + kimageformats = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kimageformats-5.14.0.tar.xz"; + sha256 = "13s25pxxjddbbzvf9l0pcrjcwkkc108318v7yglqrm58ankq8pyy"; + name = "kimageformats-5.14.0.tar.xz"; + }; + }; + kinit = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kinit-5.14.0.tar.xz"; + sha256 = "1g6wvpd7kzmnayfax2ph7sng1blaa91fclzfxpvwnxqpayzj2z6a"; + name = "kinit-5.14.0.tar.xz"; + }; + }; + kio = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kio-5.14.0.tar.xz"; + sha256 = "1brirg53khh8wyyd3sbnas82924idxbbc81wqk8433ryv645i8ra"; + name = "kio-5.14.0.tar.xz"; + }; + }; + kitemmodels = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kitemmodels-5.14.0.tar.xz"; + sha256 = "0phf2278fpiyippz347l18gw3kgfvmdm2mv2wx56rsfy5inih8qf"; + name = "kitemmodels-5.14.0.tar.xz"; + }; + }; + kitemviews = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kitemviews-5.14.0.tar.xz"; + sha256 = "1yk8djnrw4z5dw7xmwwsgz3fw1n3c1yjkggkgjy75659656psac1"; + name = "kitemviews-5.14.0.tar.xz"; + }; + }; + kjobwidgets = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kjobwidgets-5.14.0.tar.xz"; + sha256 = "0ibxbhh335b8j5603z500fw4mnk776jj364ha9c1n4qdd7ar5yi0"; + name = "kjobwidgets-5.14.0.tar.xz"; + }; + }; + kjs = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/portingAids/kjs-5.14.0.tar.xz"; + sha256 = "1xwp9jpwmkc5h1rab6bda6ffib064qn1wpmz6hdhrgzp77v5ljw4"; + name = "kjs-5.14.0.tar.xz"; + }; + }; + kjsembed = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/portingAids/kjsembed-5.14.0.tar.xz"; + sha256 = "09vlq2d0nzhw1fiy7nww0ixa15ciwc6i9f4xqay746xy9f5i30vl"; + name = "kjsembed-5.14.0.tar.xz"; + }; + }; + kmediaplayer = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/portingAids/kmediaplayer-5.14.0.tar.xz"; + sha256 = "1mcvrffg9lfvhy6qs9v1caxf523zh2jy1mhd88m34p7sfdxp8azm"; + name = "kmediaplayer-5.14.0.tar.xz"; + }; + }; + knewstuff = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/knewstuff-5.14.0.tar.xz"; + sha256 = "0yprn590g5y0gcvmlk5p79v2svn29zyhgq9lmp5qzhh7wgz8jp26"; + name = "knewstuff-5.14.0.tar.xz"; + }; + }; + knotifications = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/knotifications-5.14.0.tar.xz"; + sha256 = "0w0b9wb5zpwjhzph5cqfvcgxz2dafi33f3jgwmdw9sm2cgmwavgb"; + name = "knotifications-5.14.0.tar.xz"; + }; + }; + knotifyconfig = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/knotifyconfig-5.14.0.tar.xz"; + sha256 = "04872agypbnj3kc6q0xa5ndzd7lzny5zp1llad0x10k7spvwk0rb"; + name = "knotifyconfig-5.14.0.tar.xz"; + }; + }; + kpackage = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kpackage-5.14.0.tar.xz"; + sha256 = "0rvm9vwlirk38wbjyp8kkvs2m03mb1bby63zakbd7y2x5l26hyd5"; + name = "kpackage-5.14.0.tar.xz"; + }; + }; + kparts = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kparts-5.14.0.tar.xz"; + sha256 = "149mck84rlbvw0am7jqbs6irhhabp8xd49m1b5avgdqfrkjsrrz5"; + name = "kparts-5.14.0.tar.xz"; + }; + }; + kpeople = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kpeople-5.14.0.tar.xz"; + sha256 = "08khnnywj7f3xkgr7yclz7wdhq4lyi9xfm7f7lzsfk6vpvzn84p5"; + name = "kpeople-5.14.0.tar.xz"; + }; + }; + kplotting = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kplotting-5.14.0.tar.xz"; + sha256 = "1d3fii89ziqnjv864qp7v9r5wd9v2qb56n6m5v9j0pz8gysc2fyp"; + name = "kplotting-5.14.0.tar.xz"; + }; + }; + kpty = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kpty-5.14.0.tar.xz"; + sha256 = "0lyayl4z6a1fn1lr1plikx22crdalnr1sv66nwhld7dh9j3lgd6j"; + name = "kpty-5.14.0.tar.xz"; + }; + }; + kross = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/portingAids/kross-5.14.0.tar.xz"; + sha256 = "1s7icj7xsnj8sxg99ahv3h8rbv6xnkyqpybxgaj9xs6k738rjclv"; + name = "kross-5.14.0.tar.xz"; + }; + }; + krunner = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/portingAids/krunner-5.14.0.tar.xz"; + sha256 = "0lxsbg4r0hxq9cgj2c8bs5yyzaxbpn73nsxhh1a9ivjcdbdz52x3"; + name = "krunner-5.14.0.tar.xz"; + }; + }; + kservice = { + version = "5.14.3"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kservice-5.14.3.tar.xz"; + sha256 = "0x3lbzs39vxyndh3v3kcwbp9127llfxyjgbm6yga1mff29ld57g7"; + name = "kservice-5.14.3.tar.xz"; + }; + }; + ktexteditor = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/ktexteditor-5.14.0.tar.xz"; + sha256 = "1r3zshqn7f7z81i2zzswc0a4158q21jgk5ydlx82v5w41lgsng9z"; + name = "ktexteditor-5.14.0.tar.xz"; + }; + }; + ktextwidgets = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/ktextwidgets-5.14.0.tar.xz"; + sha256 = "0nm6jaqx2jrwmqds3hdpkxmzl03vz46f147q0q659gashq9i6nlr"; + name = "ktextwidgets-5.14.0.tar.xz"; + }; + }; + kunitconversion = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kunitconversion-5.14.0.tar.xz"; + sha256 = "080y8lxggb1dm4hjv0qb6baklb42mngz7ic3fdp9nc7jrsfbn4qq"; + name = "kunitconversion-5.14.0.tar.xz"; + }; + }; + kwallet = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kwallet-5.14.0.tar.xz"; + sha256 = "1sk1mami15wygx7rmq2p445qdvx7yq10rhvbxgwclmvd4lj8vnly"; + name = "kwallet-5.14.0.tar.xz"; + }; + }; + kwidgetsaddons = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kwidgetsaddons-5.14.0.tar.xz"; + sha256 = "0vqrz54f57qz2jls7iw3hsfgglidfjhk88rkpr0sam449hmqxw2v"; + name = "kwidgetsaddons-5.14.0.tar.xz"; + }; + }; + kwindowsystem = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kwindowsystem-5.14.0.tar.xz"; + sha256 = "0fgqbrm1ngisjz11ccwvjb05v9v8fy85hvxaqnak0xysmvsw4sq1"; + name = "kwindowsystem-5.14.0.tar.xz"; + }; + }; + kxmlgui = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kxmlgui-5.14.0.tar.xz"; + sha256 = "1j3m37h6lxkk3bs2klqqlqlpnrlqvc1a3yd1hn8sr5sn279src30"; + name = "kxmlgui-5.14.0.tar.xz"; + }; + }; + kxmlrpcclient = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/kxmlrpcclient-5.14.0.tar.xz"; + sha256 = "13s1np7sjjkmnih5r6rszqs3pvq0m4wq9za73cwhwnmlha7m3q0s"; + name = "kxmlrpcclient-5.14.0.tar.xz"; + }; + }; + modemmanager-qt = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/modemmanager-qt-5.14.0.tar.xz"; + sha256 = "1njg0gmzmj6g1w6d7id44g6dw7bki8xsq3sk0p7jqh1lcnsww4ck"; + name = "modemmanager-qt-5.14.0.tar.xz"; + }; + }; + networkmanager-qt = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/networkmanager-qt-5.14.0.tar.xz"; + sha256 = "1j2srgz4z2jd6b0iyb1rj979k0jz9hk8k7wx23146cvgrr4h4s86"; + name = "networkmanager-qt-5.14.0.tar.xz"; + }; + }; + plasma-framework = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/plasma-framework-5.14.0.tar.xz"; + sha256 = "16yghp353l9apndwqcaa310cxhm6vn0c2amggzvpr5fdwa3jb6mh"; + name = "plasma-framework-5.14.0.tar.xz"; + }; + }; + solid = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/solid-5.14.0.tar.xz"; + sha256 = "0znrmpw9nr2yccqs1xr0kai3sfhi175gfr006h4h88kfr0gc9s4i"; + name = "solid-5.14.0.tar.xz"; + }; + }; + sonnet = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/sonnet-5.14.0.tar.xz"; + sha256 = "06nn9zxxvj7sf6pdg35vay1f022c2binhl8p7i29w7vmxnxdg4w9"; + name = "sonnet-5.14.0.tar.xz"; + }; + }; + threadweaver = { + version = "5.14.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.14/threadweaver-5.14.0.tar.xz"; + sha256 = "01vdqhlg5jp14dhalpggy359hw9620309zbssp0pdv7bflnwl0n3"; + name = "threadweaver-5.14.0.tar.xz"; + }; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.13/threadweaver.nix b/pkgs/development/libraries/kde-frameworks-5.14/threadweaver.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.13/threadweaver.nix rename to pkgs/development/libraries/kde-frameworks-5.14/threadweaver.nix diff --git a/pkgs/development/libraries/libbluray/default.nix b/pkgs/development/libraries/libbluray/default.nix index d8571254967..77fa6dec43e 100644 --- a/pkgs/development/libraries/libbluray/default.nix +++ b/pkgs/development/libraries/libbluray/default.nix @@ -19,12 +19,12 @@ assert withFonts -> freetype != null; stdenv.mkDerivation rec { baseName = "libbluray"; - version = "0.8.1"; + version = "0.9.0"; name = "${baseName}-${version}"; src = fetchurl { url = "ftp://ftp.videolan.org/pub/videolan/${baseName}/${version}/${name}.tar.bz2"; - sha256 = "13zvkrwy2fr877gkifgwnqfsb3krbz7hklfcwqfjbhmvqn0cdgnd"; + sha256 = "0kb9znxk6610vi0fjhqxn4z5i98nvxlsz1f8dakj99rg42livdl4"; }; nativeBuildInputs = [ pkgconfig autoreconfHook ] diff --git a/pkgs/development/libraries/libeb/default.nix b/pkgs/development/libraries/libeb/default.nix index 9315a8f12b5..ba3c6fb1a8f 100644 --- a/pkgs/development/libraries/libeb/default.nix +++ b/pkgs/development/libraries/libeb/default.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { common way to distribute electronic dictionaries in Japan. It supports the EB, EBG, EBXA, EBXA-C, S-EBXA and EPWING formats. ''; - licence = licenses.bsd3; + license = licenses.bsd3; maintainers = with maintainers; [ gebner ]; }; } diff --git a/pkgs/development/libraries/libev/default.nix b/pkgs/development/libraries/libev/default.nix index d27df16eb94..0472aeef694 100644 --- a/pkgs/development/libraries/libev/default.nix +++ b/pkgs/development/libraries/libev/default.nix @@ -2,18 +2,13 @@ stdenv.mkDerivation rec { name = "libev-${version}"; - version="4.19"; + version="4.20"; + src = fetchurl { url = "http://dist.schmorp.de/libev/Attic/${name}.tar.gz"; - sha256 = "1jyw7qbl0spxqa0dccj9x1jsw7cj7szff43cq4acmklnra4mzz48"; + sha256 = "17j47pbkr65a18mfvy2861p5k7w4pxmdgiw723ryfqd9gx636w7q"; }; - patches = [ ./noreturn.patch ]; - - # Version 4.19 is not valid C11 (which Clang default to) - # Check if this is still necessary on upgrade - NIX_CFLAGS_COMPILE = if stdenv.cc.isClang then "-std=c99" else null; - meta = { description = "A high-performance event loop/event model with lots of features"; maintainers = [ stdenv.lib.maintainers.raskin ]; diff --git a/pkgs/development/libraries/libev/noreturn.patch b/pkgs/development/libraries/libev/noreturn.patch deleted file mode 100644 index 85e2eaee6b4..00000000000 --- a/pkgs/development/libraries/libev/noreturn.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/ev.c b/ev.c -index 6f36c6d..b8a1c5f 100644 ---- a/ev.c -+++ b/ev.c -@@ -1026,7 +1026,7 @@ ecb_inline uint64_t ecb_rotr64 (uint64_t x, unsigned int count) { return (x << ( - #define ecb_unreachable() __builtin_unreachable () - #else - /* this seems to work fine, but gcc always emits a warning for it :/ */ -- ecb_inline void ecb_unreachable (void) ecb_noreturn; -+ ecb_inline ecb_noreturn void ecb_unreachable (void); - ecb_inline void ecb_unreachable (void) { } - #endif - diff --git a/pkgs/development/libraries/libmicrohttpd/default.nix b/pkgs/development/libraries/libmicrohttpd/default.nix index fb6ba1761b5..3ef4ba77c31 100644 --- a/pkgs/development/libraries/libmicrohttpd/default.nix +++ b/pkgs/development/libraries/libmicrohttpd/default.nix @@ -1,13 +1,15 @@ { lib, stdenv, fetchurl, libgcrypt }: stdenv.mkDerivation rec { - name = "libmicrohttpd-0.9.43"; + name = "libmicrohttpd-0.9.44"; src = fetchurl { url = "mirror://gnu/libmicrohttpd/${name}.tar.gz"; - sha256 = "17q6v5q0jpg57vylby6rx1qkil72bdx8gij1g9m694gxf5sb6js1"; + sha256 = "07j1p21rvbrrfpxngk8xswzkmjkh94bp1971xfjh1p0ja709qwzj"; }; + outputs = [ "out" "info" ]; + buildInputs = [ libgcrypt ]; preCheck = diff --git a/pkgs/development/libraries/libmp3splt/default.nix b/pkgs/development/libraries/libmp3splt/default.nix index 9ad2498dfa0..9074eb470b6 100644 --- a/pkgs/development/libraries/libmp3splt/default.nix +++ b/pkgs/development/libraries/libmp3splt/default.nix @@ -1,14 +1,14 @@ -{stdenv, fetchurl, libtool, libmad }: +{ stdenv, fetchurl, libtool, libmad, libid3tag }: stdenv.mkDerivation rec { name = "libmp3splt-0.9.1"; - + src = fetchurl { url = "http://prdownloads.sourceforge.net/mp3splt/${name}.tar.gz"; sha256 = "17ar9d669cnirkz1kdrim687wzi36y8inapnj4svlsvr00vdzfxa"; }; - buildInputs = [ libtool libmad ]; + buildInputs = [ libtool libmad libid3tag ]; configureFlags = "--disable-pcre"; diff --git a/pkgs/development/libraries/libnetfilter_conntrack/default.nix b/pkgs/development/libraries/libnetfilter_conntrack/default.nix index 874d9000712..72aaa1593cc 100644 --- a/pkgs/development/libraries/libnetfilter_conntrack/default.nix +++ b/pkgs/development/libraries/libnetfilter_conntrack/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "http://netfilter.org/projects/libnetfilter_conntrack/files/${name}.tar.bz2"; - sha256 = "0zcwjav1qgr7ikmvfmy7g3nc7s1kj4j4939d18mpyha9mwy4mv6r"; + sha256 = "0fnpja3g8s38cp7ipija5pvhfgna1gybn0z2bl276nk08fppv7gw"; }; buildInputs = [ libmnl ]; diff --git a/pkgs/development/libraries/libpsl/default.nix b/pkgs/development/libraries/libpsl/default.nix index 913341c49b9..80f725c0451 100644 --- a/pkgs/development/libraries/libpsl/default.nix +++ b/pkgs/development/libraries/libpsl/default.nix @@ -5,10 +5,10 @@ let version = "${libVersion}-list-${listVersion}"; - listVersion = "2015-09-25"; + listVersion = "2015-10-11"; listSources = fetchFromGitHub { - sha256 = "045snl0pz8ma5rk51xxbjcamm28hi4z2v7gd8zkkv8yrjyg9yp82"; - rev = "509db00ef21795e58bfc2c576cebf72c8ee7a6f9"; + sha256 = "1zvfywi43kyh7b6hsm8ldmdypk9n36jzp0s1lf2rzd4yzcyxwgzy"; + rev = "8952c0c398ba44d507a8ed430fd1cff7b92dfde8"; repo = "list"; owner = "publicsuffix"; }; diff --git a/pkgs/development/libraries/libtermkey/default.nix b/pkgs/development/libraries/libtermkey/default.nix index c59542fdfed..bbc7c9a6094 100644 --- a/pkgs/development/libraries/libtermkey/default.nix +++ b/pkgs/development/libraries/libtermkey/default.nix @@ -3,11 +3,11 @@ stdenv.mkDerivation rec { name = "libtermkey-${version}"; - version = "0.17"; + version = "0.18"; src = fetchzip { url = "http://www.leonerd.org.uk/code/libtermkey/libtermkey-${version}.tar.gz"; - sha256 = "085mdshgqsn76gfnnzfns7awv6lals9mgv5a6bybd9f9aj7lvrm5"; + sha256 = "0a0ih1a114phzmyq6jzgbp03x97463fwvrp1cgnl26awqw3f8sbf"; }; makeFlags = [ "PREFIX=$(out)" ] diff --git a/pkgs/development/libraries/libuv/default.nix b/pkgs/development/libraries/libuv/default.nix index 158152abade..48d12321248 100644 --- a/pkgs/development/libraries/libuv/default.nix +++ b/pkgs/development/libraries/libuv/default.nix @@ -76,33 +76,7 @@ in with lib; - mapAttrs (v: h: mkWithoutAutotools stable (toVersion v) h) { - v0_10_27 = "0i00v216ha74xi374yhgmfrb4h84q2w4y1ync3y1qsngbm8irjhg"; - } - // mapAttrs (v: h: mkWithAutotools unstable (toVersion v) h) { - # Versions >= 0.11.1 and < 0.11.6 do not build a dynamic library - v0_11_6 = "15h903hz6kn8j1lp1160ia7llx0ypa5ch8ygkwpmrm31p50ng8r4"; - v0_11_7 = "1l6hrz3g2c7qspy28inbrcd7byn2sncd42ncf4pr0ifpkkj083hh"; - v0_11_8 = "0aag2v7bfi7kksna0867srlqcjxn8m287bpl2j5k11d07m382zs1"; - v0_11_9 = "12ap0ix5ra24f30adgdr48l175vxfmh398mlilm8kdkld0dqfx24"; - v0_11_10 = "17mn9xbygc2jpqv4a068i57rcp585bmcalpb9jpyz1jf030lllyy"; - v0_11_11 = "1l06sznvd5nxzg3fqqb451g4fzygyb37apqyhyvbdb6dmklcm7xk"; - v0_11_12 = "1kwqd3wk06mffhglawx7b2g4yddkg5597aa5jyw2zhzwkz2z4a27"; - v0_11_13 = "0z30ljwgxbm120dy0i4knhj5zw6q7jcx5wi9v0v51ax6mhdgqy8a"; - v0_11_14 = "0bk1bchfkbyyry3d4ggv754w5fyj6qbivbd42ggcr0hq55h49iwg"; - v0_11_15 = "09qayz2k0337h7jbf8zs9lyxgp3ln0gq37r43wixfll7jjjkacvd"; - v0_11_16 = "06jrwwnliqadqgp7fn2093xxljiz8iwdyywh2yljyp4zk8r4vzis"; - v0_11_17 = "0i6nlxnlxwzpib0sp1191h9yymfvgwjwciiq9avcqljiklfg432r"; - v0_11_18 = "0jxrfxf4iq34fjgbwdrvi36hqzgph87928n4q4gchpahywf2pjxk"; - v0_11_19 = "16aw8jx571xxc6am4sbz17j2wb9pylv1svsmwxbczb3vd624vm32"; - v0_11_20 = "0r7cyzxysgcfl4h9xis050b7x8cvmrwzwh1rr545q53j0gjxvzvi"; - v0_11_21 = "0bxjzrlcs2f0va26i0ahvcpjbb0j66rq74smi95s6q73zl99n326"; - v0_11_22 = "0r6nfavsndm1dzinzzxndr2h75g33vigx21z3f7w2x7qwa8a8hpp"; - v0_11_23 = "01dlmpk8a4zvq6lm88bsfi7dzhl7xvma7q5ygi2x5ghdm4svki1m"; - v0_11_24 = "1hygn81iwbdshzrq603qm6k1r7pjflx9qqazmlb72c3vy1hq21c6"; - v0_11_25 = "1abszivlxf0sddwvcj3jywfsip5q9vz6axvn40qqyl8sjs80zcvj"; - v0_11_26 = "1pfjdwrxhqz1vqcdm42g3j45ghrb4yl7wsngvraclhgqicff1sc3"; v0_11_29 = "1z07phfwryfy2155p3lxcm2a33h20sfl96lds5dghn157x6csz7m"; } // diff --git a/pkgs/development/libraries/libwps/default.nix b/pkgs/development/libraries/libwps/default.nix index e17540e96a4..798284c3b89 100644 --- a/pkgs/development/libraries/libwps/default.nix +++ b/pkgs/development/libraries/libwps/default.nix @@ -1,17 +1,18 @@ { stdenv, fetchurl, boost, pkgconfig, librevenge, zlib }: +let version = "0.4.2"; in stdenv.mkDerivation rec { name = "libwps-${version}"; - version = "0.4.1"; src = fetchurl { url = "mirror://sourceforge/libwps/${name}.tar.gz"; - sha256 = "0nc44ia5sn9mmhkq5hjacz0vm520wldq03whc5psgcb9dahvsjsc"; + sha256 = "0c90i3zafxxsj989bd9bs577blx3mrb90rj52iv6ijc4qivi4wkr"; }; buildInputs = [ boost pkgconfig librevenge zlib ]; meta = with stdenv.lib; { + inherit version; homepage = http://libwps.sourceforge.net/; description = "Microsoft Works file word processor format import filter library"; platforms = platforms.linux; diff --git a/pkgs/development/libraries/neon/0.29.nix b/pkgs/development/libraries/neon/0.29.nix new file mode 100644 index 00000000000..1be9f453bb4 --- /dev/null +++ b/pkgs/development/libraries/neon/0.29.nix @@ -0,0 +1,44 @@ +{ stdenv, fetchurl, libxml2, pkgconfig +, compressionSupport ? true, zlib ? null +, sslSupport ? true, openssl ? null +, static ? false +, shared ? true +}: + +assert compressionSupport -> zlib != null; +assert sslSupport -> openssl != null; +assert static || shared; + +let + inherit (stdenv.lib) optionals; +in + +stdenv.mkDerivation rec { + version = "0.29.6"; + name = "neon-${version}"; + + src = fetchurl { + url = "http://www.webdav.org/neon/${name}.tar.gz"; + sha256 = "0hzbjqdx1z8zw0vmbknf159wjsxbcq8ii0wgwkqhxj3dimr0nr4w"; + }; + + patches = optionals stdenv.isDarwin [ ./0.29.6-darwin-fix-configure.patch ]; + + buildInputs = [libxml2 pkgconfig openssl] + ++ stdenv.lib.optional compressionSupport zlib; + + configureFlags = '' + ${if shared then "--enable-shared" else "--disable-shared"} + ${if static then "--enable-static" else "--disable-static"} + ${if compressionSupport then "--with-zlib" else "--without-zlib"} + ${if sslSupport then "--with-ssl" else "--without-ssl"} + --enable-shared + ''; + + passthru = {inherit compressionSupport sslSupport;}; + + meta = { + description = "An HTTP and WebDAV client library"; + homepage = http://www.webdav.org/neon/; + }; +} diff --git a/pkgs/development/libraries/opensubdiv/default.nix b/pkgs/development/libraries/opensubdiv/default.nix new file mode 100644 index 00000000000..91ebc7cc661 --- /dev/null +++ b/pkgs/development/libraries/opensubdiv/default.nix @@ -0,0 +1,47 @@ +{ lib, stdenv, fetchurl, fetchFromGitHub, cmake, pkgconfig, xorg, mesa, glew +, cudaSupport ? false, cudatoolkit +}: + +stdenv.mkDerivation { + name = "opensubdiv-3.0.3"; + + src = fetchFromGitHub { + owner = "PixarAnimationStudios"; + repo = "OpenSubdiv"; + rev = "v3_0_3"; + sha256 = "1pd7xsz4lx5l2hdixfgqx9yijchw108wqkvxj78rbblkkawvqhmx"; + }; + + patches = + [ # Fix for building with cudatoolkit 7. + (fetchurl { + url = "https://github.com/opeca64/OpenSubdiv/commit/c3c258d00feaeffe1123f6077179c155e71febfb.patch"; + sha256 = "0vazhp35v8vsgnvprkzwvfkbalr0kzcwlin9ygyfb77cz7mwicnf"; + }) + ]; + + buildInputs = + [ cmake pkgconfig mesa + # FIXME: these are not actually needed, but the configure script wants them. + glew xorg.libX11 xorg.libXrandr xorg.libXxf86vm xorg.libXcursor xorg.libXinerama + ] + ++ lib.optional cudaSupport cudatoolkit; + + cmakeFlags = + [ "-DNO_TUTORIALS=1" + "-DNO_REGRESSION=1" + "-DNO_EXAMPLES=1" + "-DGLEW_INCLUDE_DIR=${glew}/include" + "-DGLEW_LIBRARY=${glew}/lib" + ]; + + enableParallelBuilding = true; + + meta = { + description = "An Open-Source subdivision surface library"; + homepage = http://graphics.pixar.com/opensubdiv; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.eelco ]; + license = lib.licenses.asl20; + }; +} diff --git a/pkgs/development/libraries/pcre2/default.nix b/pkgs/development/libraries/pcre2/default.nix new file mode 100644 index 00000000000..4f8d5cf1aaa --- /dev/null +++ b/pkgs/development/libraries/pcre2/default.nix @@ -0,0 +1,23 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation { + name = "pcre2-10.20"; + src = fetchurl { + url = "ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre2-10.20.tar.bz2"; + sha256 = "0yj8mm9ll9zj3v47rvmmqmr1ybxk72rr2lym3rymdsf905qjhbik"; + }; + + configureFlags = [ + "--enable-pcre2-16" + "--enable-pcre2-32" + "--enable-jit" + ]; + + meta = { + description = "Perl Compatible Regular Expressions"; + homepage = "http://www.pcre.org/"; + license = stdenv.lib.licenses.bsd3; + maintainers = [ stdenv.lib.maintainers.ttuegel ]; + platforms = stdenv.lib.platforms.all; + }; +} diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/setup-hook.sh b/pkgs/development/libraries/qt-5/5.5/qtbase/setup-hook.sh index d9690559b42..9f1bafc9f49 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/setup-hook.sh +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/setup-hook.sh @@ -62,9 +62,9 @@ setQMakePath() { wrapQtProgram() { wrapProgram "$1" \ - --set QT_PLUGIN_PATH : "$QT_PLUGIN_PATH" \ - --set QML_IMPORT_PATH : "$QML_IMPORT_PATH" \ - --set QML2_IMPORT_PATH : "$QML2_IMPORT_PATH" \ + --set QT_PLUGIN_PATH "$QT_PLUGIN_PATH" \ + --set QML_IMPORT_PATH "$QML_IMPORT_PATH" \ + --set QML2_IMPORT_PATH "$QML2_IMPORT_PATH" \ "$@" } diff --git a/pkgs/development/libraries/science/math/ipopt/default.nix b/pkgs/development/libraries/science/math/ipopt/default.nix index 89d2a242f96..f9897e4add3 100644 --- a/pkgs/development/libraries/science/math/ipopt/default.nix +++ b/pkgs/development/libraries/science/math/ipopt/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, unzip, openblas, gfortran }: stdenv.mkDerivation rec { - version = "3.12.3"; + version = "3.12.4"; name = "ipopt-${version}"; src = fetchurl { url = "http://www.coin-or.org/download/source/Ipopt/Ipopt-${version}.zip"; - sha256 = "0h8qx3hq2m21qrg4v3n26v2qbhl6saxrpa7rbhnmkkcfj5s942yr"; + sha256 = "0hxmpi3zx5zgv2ijscdvc40xf88hx5if0d9sgch155z70g15wx0l"; }; preConfigure = '' diff --git a/pkgs/development/libraries/science/math/openblas/default.nix b/pkgs/development/libraries/science/math/openblas/default.nix index a4bf1efbb73..7a1a860b9e4 100644 --- a/pkgs/development/libraries/science/math/openblas/default.nix +++ b/pkgs/development/libraries/science/math/openblas/default.nix @@ -6,6 +6,8 @@ with stdenv.lib; +let blas64_ = blas64; in + let local = config.openblas.preferLocalBuild or false; binary = { i686-linux = "32"; @@ -18,11 +20,11 @@ let local = config.openblas.preferLocalBuild or false; ]; localFlags = config.openblas.flags or optionals (hasAttr "target" config.openblas) [ "TARGET=${config.openblas.target}" ]; - blas64Orig = blas64; -in -stdenv.mkDerivation rec { - version = "0.2.14"; + blas64 = if blas64_ != null then blas64_ else hasPrefix "x86_64" stdenv.system; + version = "0.2.14"; +in +stdenv.mkDerivation { name = "openblas-${version}"; src = fetchurl { url = "https://github.com/xianyi/OpenBLAS/tarball/v${version}"; @@ -30,6 +32,8 @@ stdenv.mkDerivation rec { name = "openblas-${version}.tar.gz"; }; + inherit blas64; + preBuild = "cp ${liblapack.src} lapack-${liblapack.meta.version}.tgz"; nativeBuildInputs = optionals stdenv.isDarwin [coreutils] ++ [gfortran perl]; @@ -50,7 +54,8 @@ stdenv.mkDerivation rec { "INTERFACE64=${if blas64 then "1" else "0"}" ]; - blas64 = if blas64Orig != null then blas64Orig else hasPrefix "x86_64" stdenv.system; + doCheck = true; + checkTarget = "tests"; meta = with stdenv.lib; { description = "Basic Linear Algebra Subprograms"; diff --git a/pkgs/development/libraries/science/math/openlibm/default.nix b/pkgs/development/libraries/science/math/openlibm/default.nix new file mode 100644 index 00000000000..e38e6c9e31f --- /dev/null +++ b/pkgs/development/libraries/science/math/openlibm/default.nix @@ -0,0 +1,19 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation { + name = "openlibm-0.4.1"; + src = fetchurl { + url = "https://github.com/JuliaLang/openlibm/archive/v0.4.1.tar.gz"; + sha256 = "0cwqqqlblj3kzp9aq1wnpfs1fl0qd1wp1xzm5shb09w06i4rh9nn"; + }; + + makeFlags = [ "prefix=$(out)" ]; + + meta = { + description = "High quality system independent, portable, open source libm implementation"; + homepage = "http://www.openlibm.org/"; + license = stdenv.lib.licenses.mit; + maintainers = [ stdenv.lib.maintainers.ttuegel ]; + platforms = stdenv.lib.platforms.all; + }; +} diff --git a/pkgs/development/libraries/science/math/openspecfun/default.nix b/pkgs/development/libraries/science/math/openspecfun/default.nix new file mode 100644 index 00000000000..1988c0c07af --- /dev/null +++ b/pkgs/development/libraries/science/math/openspecfun/default.nix @@ -0,0 +1,21 @@ +{ stdenv, fetchurl, gfortran }: + +stdenv.mkDerivation { + name = "openspecfun-0.4"; + src = fetchurl { + url = "https://github.com/JuliaLang/openspecfun/archive/v0.4.tar.gz"; + sha256 = "0nsa3jjmlhcqkw5ba5ypbn3n0c8b6lc22zzlxnmxkxi9shhdx65z"; + }; + + makeFlags = [ "prefix=$(out)" ]; + + nativeBuildInputs = [ gfortran ]; + + meta = { + description = "A collection of special mathematical functions"; + homepage = "https://github.com/JuliaLang/openspecfun"; + license = stdenv.lib.licenses.mit; + maintainers = [ stdenv.lib.maintainers.ttuegel ]; + platforms = stdenv.lib.platforms.all; + }; +} diff --git a/pkgs/development/libraries/science/math/suitesparse/default.nix b/pkgs/development/libraries/science/math/suitesparse/default.nix index f30db472b0d..e32b8b34426 100644 --- a/pkgs/development/libraries/science/math/suitesparse/default.nix +++ b/pkgs/development/libraries/science/math/suitesparse/default.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation { for i in "$out"/lib/lib*.a; do ar -x $i done - gcc *.o --shared -o "$out/lib/libsuitesparse.so" + gcc *.o --shared -o "$out/lib/libsuitesparse.so" -lopenblas ) for i in umfpack cholmod amd camd colamd spqr; do ln -s libsuitesparse.so "$out"/lib/lib$i.so; diff --git a/pkgs/development/libraries/swiften/default.nix b/pkgs/development/libraries/swiften/default.nix new file mode 100644 index 00000000000..3978461d0ca --- /dev/null +++ b/pkgs/development/libraries/swiften/default.nix @@ -0,0 +1,30 @@ +{ stdenv, python, fetchurl, openssl, boost }: +stdenv.mkDerivation rec { + name = "swiften-${version}"; + version = "3.0beta2"; + + buildInputs = [ python ]; + propagatedBuildInputs = [ openssl boost ]; + + src = fetchurl { + url = "http://swift.im/downloads/releases/swift-${version}/swift-${version}.tar.gz"; + sha256 = "0i6ks122rry9wvg6qahk3yiggi7nlkpgws1z0r41vi4i1siq0ls0"; + }; + + buildPhase = '' + ./scons openssl=${openssl} \ + boost_includedir=${boost.dev}/include \ + boost_libdir=${boost.lib}/lib \ + boost_bundled_enable=false \ + SWIFTEN_INSTALLDIR=$out $out + ''; + installPhase = "true"; + + meta = with stdenv.lib; { + description = "An XMPP library for C++, used by the Swift client"; + homepage = http://swift.im/swiften.html; + license = licenses.gpl2Plus; + platforms = platforms.linux; + maintainers = [ maintainers.twey ]; + }; +} diff --git a/pkgs/development/libraries/utf8proc/default.nix b/pkgs/development/libraries/utf8proc/default.nix index c8a2fd6a4e9..4b7d06fe8c7 100644 --- a/pkgs/development/libraries/utf8proc/default.nix +++ b/pkgs/development/libraries/utf8proc/default.nix @@ -1,14 +1,12 @@ -{ stdenv, fetchFromGitHub }: +{ stdenv, fetchurl }: stdenv.mkDerivation rec { name = "utf8proc-${version}"; - version = "v1.2"; + version = "1.3"; - src = fetchFromGitHub { - owner = "JuliaLang"; - repo = "utf8proc"; - rev = "${version}"; - sha256 = "1ryjlcnpfm7fpkq6444ybi576hbnh2l0w7kjhbqady5lxwjyg3pf"; + src = fetchurl { + url = "https://github.com/JuliaLang/utf8proc/archive/v${version}.tar.gz"; + sha256 = "07r7djkmd399wl9cn0s2iqjhmm7l5iifp5h1yf2in9s366mlhkkg"; }; makeFlags = [ "prefix=$(out)" ]; diff --git a/pkgs/development/libraries/zeroc-ice/default.nix b/pkgs/development/libraries/zeroc-ice/default.nix index d89fae5c964..144af122d73 100644 --- a/pkgs/development/libraries/zeroc-ice/default.nix +++ b/pkgs/development/libraries/zeroc-ice/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "zeroc-ice-${version}"; - version = "3.6.0"; + version = "3.6.1"; src = fetchFromGitHub { owner = "zeroc-ice"; repo = "ice"; rev = "v${version}"; - sha256 = "192lhynf369bbrvbb9nldc49n09kyxp8vg8j9d7w5h2c1yxpjgjq"; + sha256 = "044511zbhwiach1867r3xjz8i4931wn7c1l3nz4kcpgks16kqhhz"; }; buildInputs = [ mcpp bzip2 expat openssl db5 ]; diff --git a/pkgs/development/mobile/androidenv/addon.xml b/pkgs/development/mobile/androidenv/addon.xml index 334626b93ac..9892b386d00 100644 --- a/pkgs/development/mobile/androidenv/addon.xml +++ b/pkgs/development/mobile/androidenv/addon.xml @@ -763,14 +763,14 @@ August 15, 2011 - + google Google Inc. google_apis Google APIs Android + Google APIs 15 - 2 + 3 com.google.android.maps @@ -784,23 +784,23 @@ August 15, 2011 - 106612472 - 6757c12788da0ea00c2ab58e54cb438b9f2bcf66 - google_apis-15_r02.zip + 106624396 + d0d2bf26805eb271693570a1aaec33e7dc3f45e9 + google_apis-15_r03.zip - + google Google Inc. google_apis Google APIs Android + Google APIs 16 - 3 + 4 com.google.android.maps @@ -814,23 +814,23 @@ August 15, 2011 - 127278413 - 63467dd32f471e3e81e33e9772c22f33235aa3b3 - google_apis-16_r03.zip + 127341982 + ee6acf1b01020bfa8a8e24725dbc4478bee5e792 + google_apis-16_r04.zip - + google Google Inc. google_apis Google APIs Android + Google APIs 17 - 3 + 4 com.google.android.maps @@ -844,23 +844,23 @@ August 15, 2011 - 137156978 - 8246f61d24f0408c8e7bc352a1e522b7e2b619ba - google_apis-17_r03.zip + 137231243 + a076be0677f38df8ca5536b44dfb411a0c808c4f + google_apis-17_r04.zip - + google Google Inc. google_apis Google APIs Android + Google APIs 18 - 3 + 4 com.google.android.maps @@ -874,23 +874,23 @@ August 15, 2011 - 143149689 - 147bce09c1163edc17194f3db496ec1086fcf965 - google_apis-18_r03.zip + 143195183 + 6109603409debdd40854d4d4a92eaf8481462c8b + google_apis-18_r04.zip - + google Google Inc. google_apis Google APIs (ARM System Image) Android + Google APIs 19 - 13 + 16 com.google.android.maps @@ -904,9 +904,9 @@ August 15, 2011 - 181034400 - 75c8af27f1fdf83dc28057537b5bd62b794365cc - google_apis-19_r13.zip + 182452246 + d92f2a2fe219e578633c6445397e1f675edc6a28 + google_apis-19_r16.zip @@ -997,13 +997,32 @@ August 15, 2011 + + + google + Google Inc. + google_apis + Google APIs + Android + Google APIs + 23 + 1 + + + + 179900 + 04c5cc1a7c88967250ebba9561d81e24104167db + google_apis-23_r01.zip + + + + - + - 22 - 1 + 23 + 0 1 Android @@ -1013,18 +1032,18 @@ August 15, 2011 compatibility - 8475991 - 88bdc7b4074065ed28681f39e6b32c4f7ab45d94 - support_r22.1.1.zip + 9553739 + fbe529716943053d0ce0d7f058d79f1a848cdff9 + support_r23.0.1.zip - + - 14 + 21 Android android @@ -1033,9 +1052,9 @@ August 15, 2011 m2repository - 68533453 - 0011dfe1473ccdfb1a533a19cad152c59dcd6b45 - android_m2repository_r14.zip + 142136028 + acb915c5d2c730bf98303c0cd0122bedb2954cb3 + android_m2repository_r21.zip @@ -1049,15 +1068,15 @@ August 15, 2011 Google Repository m2repository - 17 + 22 Local Maven repository for Google Libraries - 43508126 - a91a809149b69fab1efb4652c21b439e8b9e7150 - google_m2repository_r17.zip + 59491846 + 4c114ac217f4b2f066d731ce906eeb635ee2a5b4 + google_m2repository_r22.zip @@ -1131,16 +1150,16 @@ August 15, 2011 Google Play services google_play_services - 24 + 27 Google Play services client library and sample code https://developers.google.com/android/google-play-services/index - 17636517 - 9dc5092c1043d6d9c162d481e668b95fc2f36782 - google_play_services_7327000_r24.zip + 21163425 + cdb13f826ca82d3c3730cf1df9f3bf58565fd4bb + google_play_services_8115000_r27.zip @@ -1290,4 +1309,40 @@ August 15, 2011 + + + google + Google Inc. + Android Auto Desktop Head Unit emulator + auto + + 1 + 0 + + + Head unit emulator for developers targeting the Android Auto platform. + + http://developer.android.com/tools/help/desktop-head-unit.html + + + 1346136 + e054563f9efdc2f6089693566bce5b8fba2cd1c6 + extras/auto/desktop-head-unit-linux_r01.zip + linux + + + 2691813 + 499bb4520f95e708585947c9fc72efeeb610685f + extras/auto/desktop-head-unit-windows_r01.zip + windows + + + 2389261 + 64510b97c3c2c6dccab7932a816a20b84d9a5dc3 + extras/auto/desktop-head-unit-macosx_r01.zip + macosx + + + + diff --git a/pkgs/development/mobile/androidenv/addons.nix b/pkgs/development/mobile/androidenv/addons.nix index ca4870cf4c8..d397cd766fb 100644 --- a/pkgs/development/mobile/androidenv/addons.nix +++ b/pkgs/development/mobile/androidenv/addons.nix @@ -19,7 +19,7 @@ in google_apis_3 = buildGoogleApis { name = "google_apis-3"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/google_apis-3-r03.zip; + url = https://dl.google.com/android/repository/google_apis-3-r03.zip; sha1 = "1f92abf3a76be66ae8032257fc7620acbd2b2e3a"; }; meta = { @@ -31,7 +31,7 @@ in google_apis_4 = buildGoogleApis { name = "google_apis-4"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/google_apis-4_r02.zip; + url = https://dl.google.com/android/repository/google_apis-4_r02.zip; sha1 = "9b6e86d8568558de4d606a7debc4f6049608dbd0"; }; meta = { @@ -43,7 +43,7 @@ in google_apis_5 = buildGoogleApis { name = "google_apis-5"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/google_apis-5_r01.zip; + url = https://dl.google.com/android/repository/google_apis-5_r01.zip; sha1 = "46eaeb56b645ee7ffa24ede8fa17f3df70db0503"; }; meta = { @@ -55,7 +55,7 @@ in google_apis_6 = buildGoogleApis { name = "google_apis-6"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/google_apis-6_r01.zip; + url = https://dl.google.com/android/repository/google_apis-6_r01.zip; sha1 = "5ff545d96e031e09580a6cf55713015c7d4936b2"; }; meta = { @@ -67,7 +67,7 @@ in google_apis_7 = buildGoogleApis { name = "google_apis-7"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/google_apis-7_r01.zip; + url = https://dl.google.com/android/repository/google_apis-7_r01.zip; sha1 = "2e7f91e0fe34fef7f58aeced973c6ae52361b5ac"; }; meta = { @@ -79,7 +79,7 @@ in google_apis_8 = buildGoogleApis { name = "google_apis-8"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/google_apis-8_r02.zip; + url = https://dl.google.com/android/repository/google_apis-8_r02.zip; sha1 = "3079958e7ec87222cac1e6b27bc471b27bf2c352"; }; meta = { @@ -91,7 +91,7 @@ in google_apis_9 = buildGoogleApis { name = "google_apis-9"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/google_apis-9_r02.zip; + url = https://dl.google.com/android/repository/google_apis-9_r02.zip; sha1 = "78664645a1e9accea4430814f8694291a7f1ea5d"; }; meta = { @@ -103,7 +103,7 @@ in google_apis_10 = buildGoogleApis { name = "google_apis-10"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/google_apis-10_r02.zip; + url = https://dl.google.com/android/repository/google_apis-10_r02.zip; sha1 = "cc0711857c881fa7534f90cf8cc09b8fe985484d"; }; meta = { @@ -115,7 +115,7 @@ in google_apis_11 = buildGoogleApis { name = "google_apis-11"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/google_apis-11_r01.zip; + url = https://dl.google.com/android/repository/google_apis-11_r01.zip; sha1 = "5eab5e81addee9f3576d456d205208314b5146a5"; }; meta = { @@ -127,7 +127,7 @@ in google_apis_12 = buildGoogleApis { name = "google_apis-12"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/google_apis-12_r01.zip; + url = https://dl.google.com/android/repository/google_apis-12_r01.zip; sha1 = "e9999f4fa978812174dfeceec0721c793a636e5d"; }; meta = { @@ -139,7 +139,7 @@ in google_apis_13 = buildGoogleApis { name = "google_apis-13"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/google_apis-13_r01.zip; + url = https://dl.google.com/android/repository/google_apis-13_r01.zip; sha1 = "3b153edd211c27dc736c893c658418a4f9041417"; }; meta = { @@ -151,7 +151,7 @@ in google_apis_14 = buildGoogleApis { name = "google_apis-14"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/google_apis-14_r02.zip; + url = https://dl.google.com/android/repository/google_apis-14_r02.zip; sha1 = "f8eb4d96ad0492b4c0db2d7e4f1a1a3836664d39"; }; meta = { @@ -163,8 +163,8 @@ in google_apis_15 = buildGoogleApis { name = "google_apis-15"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/google_apis-15_r02.zip; - sha1 = "6757c12788da0ea00c2ab58e54cb438b9f2bcf66"; + url = https://dl.google.com/android/repository/google_apis-15_r03.zip; + sha1 = "d0d2bf26805eb271693570a1aaec33e7dc3f45e9"; }; meta = { description = "Android + Google APIs"; @@ -175,8 +175,8 @@ in google_apis_16 = buildGoogleApis { name = "google_apis-16"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/google_apis-16_r03.zip; - sha1 = "63467dd32f471e3e81e33e9772c22f33235aa3b3"; + url = https://dl.google.com/android/repository/google_apis-16_r04.zip; + sha1 = "ee6acf1b01020bfa8a8e24725dbc4478bee5e792"; }; meta = { description = "Android + Google APIs"; @@ -187,8 +187,8 @@ in google_apis_17 = buildGoogleApis { name = "google_apis-17"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/google_apis-17_r03.zip; - sha1 = "8246f61d24f0408c8e7bc352a1e522b7e2b619ba"; + url = https://dl.google.com/android/repository/google_apis-17_r04.zip; + sha1 = "a076be0677f38df8ca5536b44dfb411a0c808c4f"; }; meta = { description = "Android + Google APIs"; @@ -199,8 +199,8 @@ in google_apis_18 = buildGoogleApis { name = "google_apis-18"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/google_apis-18_r03.zip; - sha1 = "147bce09c1163edc17194f3db496ec1086fcf965"; + url = https://dl.google.com/android/repository/google_apis-18_r04.zip; + sha1 = "6109603409debdd40854d4d4a92eaf8481462c8b"; }; meta = { description = "Android + Google APIs"; @@ -211,8 +211,8 @@ in google_apis_19 = buildGoogleApis { name = "google_apis-19"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/google_apis-19_r13.zip; - sha1 = "75c8af27f1fdf83dc28057537b5bd62b794365cc"; + url = https://dl.google.com/android/repository/google_apis-19_r16.zip; + sha1 = "d92f2a2fe219e578633c6445397e1f675edc6a28"; }; meta = { description = "Android + Google APIs"; @@ -223,7 +223,7 @@ in google_apis_21 = buildGoogleApis { name = "google_apis-21"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/google_apis-21_r01.zip; + url = https://dl.google.com/android/repository/google_apis-21_r01.zip; sha1 = "66a754efb24e9bb07cc51648426443c7586c9d4a"; }; meta = { @@ -235,7 +235,7 @@ in google_apis_22 = buildGoogleApis { name = "google_apis-22"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/google_apis-22_r01.zip; + url = https://dl.google.com/android/repository/google_apis-22_r01.zip; sha1 = "5def0f42160cba8acff51b9c0c7e8be313de84f5"; }; meta = { @@ -244,11 +244,23 @@ in }; }; + google_apis_23 = buildGoogleApis { + name = "google_apis-23"; + src = fetchurl { + url = https://dl.google.com/android/repository/google_apis-23_r01.zip; + sha1 = "04c5cc1a7c88967250ebba9561d81e24104167db"; + }; + meta = { + description = "Android + Google APIs"; + + }; + }; + android_support_extra = buildGoogleApis { name = "android_support_extra"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/support_r22.1.1.zip; - sha1 = "88bdc7b4074065ed28681f39e6b32c4f7ab45d94"; + url = https://dl.google.com/android/repository/support_r23.0.1.zip; + sha1 = "fbe529716943053d0ce0d7f058d79f1a848cdff9"; }; meta = { description = "Android Support Library"; @@ -259,8 +271,8 @@ in google_play_services = buildGoogleApis { name = "google_play_services"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/google_play_services_7327000_r24.zip; - sha1 = "9dc5092c1043d6d9c162d481e668b95fc2f36782"; + url = https://dl.google.com/android/repository/google_play_services_8115000_r27.zip; + sha1 = "cdb13f826ca82d3c3730cf1df9f3bf58565fd4bb"; }; meta = { description = "Google Play services client library and sample code"; diff --git a/pkgs/development/mobile/androidenv/androidsdk.nix b/pkgs/development/mobile/androidenv/androidsdk.nix index 52b146b87f4..055c307f2cc 100644 --- a/pkgs/development/mobile/androidenv/androidsdk.nix +++ b/pkgs/development/mobile/androidenv/androidsdk.nix @@ -5,20 +5,20 @@ , libX11, libXext, libXrender, libxcb, libXau, libXdmcp, libXtst, mesa, alsaLib , freetype, fontconfig, glib, gtk, atk, file, jdk, coreutils }: -{platformVersions, abiVersions, useGoogleAPIs, useExtraSupportLibs?false, useGooglePlayServices?false}: +{ platformVersions, abiVersions, useGoogleAPIs, useExtraSupportLibs ? false, useGooglePlayServices ? false }: stdenv.mkDerivation rec { name = "android-sdk-${version}"; - version = "24.1.2"; + version = "24.3.4"; src = if (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux") then fetchurl { url = "http://dl.google.com/android/android-sdk_r${version}-linux.tgz"; - sha1 = "a46298bjpgzsnchhpcm1i86c4r50x638"; + sha1 = "fb293d7bca42e05580be56b1adc22055d46603dd"; } else if stdenv.system == "x86_64-darwin" then fetchurl { url = "http://dl.google.com/android/android-sdk_r${version}-macosx.zip"; - sha1 = "as109624lgrn8krylmyvm33yapqkzr00"; + sha1 = "128f10fba668ea490cc94a08e505a48a608879b9"; } else throw "platform not ${stdenv.system} supported!"; @@ -53,12 +53,21 @@ stdenv.mkDerivation rec { done ''} - # The android script used SWT and wants to dynamically load some GTK+ stuff. - # The following wrapper ensures that they can be found: + # The following scripts used SWT and wants to dynamically load some GTK+ stuff. + # Creating these wrappers ensure that they can be found: + wrapProgram `pwd`/android \ --prefix PATH : ${jdk}/bin \ --prefix LD_LIBRARY_PATH : ${glib}/lib:${gtk}/lib:${libXtst}/lib + wrapProgram `pwd`/uiautomatorviewer \ + --prefix PATH : ${jdk}/bin \ + --prefix LD_LIBRARY_PATH : ${glib}/lib:${gtk}/lib:${libXtst}/lib + + wrapProgram `pwd`/hierarchyviewer \ + --prefix PATH : ${jdk}/bin \ + --prefix LD_LIBRARY_PATH : ${glib}/lib:${gtk}/lib:${libXtst}/lib + # The emulators need additional libraries, which are dynamically loaded => let's wrap them for i in emulator emulator-arm emulator-mips emulator-x86 diff --git a/pkgs/development/mobile/androidenv/build-tools.nix b/pkgs/development/mobile/androidenv/build-tools.nix index 3a7df3ce1af..1b49c8f6fc4 100644 --- a/pkgs/development/mobile/androidenv/build-tools.nix +++ b/pkgs/development/mobile/androidenv/build-tools.nix @@ -1,16 +1,16 @@ -{stdenv, stdenv_32bit, fetchurl, unzip, zlib_32bit}: +{stdenv, stdenv_32bit, fetchurl, unzip, zlib_32bit, ncurses_32bit}: stdenv.mkDerivation rec { - version="22.0.1"; + version = "23.0.1"; name = "android-build-tools-r${version}"; src = if (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux") then fetchurl { - url = "https://dl-ssl.google.com/android/repository/build-tools_r${version}-linux.zip"; - sha1 = "8sb05s9f1h03qa7hdj72jffy7rf9r2ys"; + url = "https://dl.google.com/android/repository/build-tools_r${version}-linux.zip"; + sha1 = "b6ba7c399d5fa487d95289d8832e4ad943aed556"; } else if stdenv.system == "x86_64-darwin" then fetchurl { - url = "https://dl-ssl.google.com/android/repository/build-tools_r${version}-macosx.zip"; - sha1 = "pxdwrz6bb8b13fknf6qm67g013vdgnjk"; + url = "https://dl.google.com/android/repository/build-tools_r${version}-macosx.zip"; + sha1 = "d96ec1522721e9a179ae2c591c99f75d31d39718"; } else throw "System ${stdenv.system} not supported!"; @@ -24,34 +24,43 @@ stdenv.mkDerivation rec { cd android-* # Patch the interpreter - for i in aapt aidl dexdump llvm-rs-cc + for i in aapt aidl bcc_compat dexdump llvm-rs-cc do patchelf --set-interpreter ${stdenv_32bit.cc.libc}/lib/ld-linux.so.2 $i done # These binaries need to find libstdc++ and libgcc_s - for i in aidl libLLVM.so + for i in aidl lib/libLLVM.so do patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib $i done # These binaries need to find libstdc++, libgcc_s and libraries in the current folder - for i in libbcc.so libbcinfo.so libclang.so llvm-rs-cc + for i in lib/libbcc.so lib/libbcinfo.so lib/libclang.so aidl do - patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib:`pwd` $i + patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib:`pwd`/lib $i + done + + # Create link to make libtinfo.so.5 work + ln -s ${ncurses_32bit}/lib/libncurses.so.5 `pwd`/lib/libtinfo.so.5 + + # These binaries need to find libstdc++, libgcc_s, ncurses, and libraries in the current folder + for i in bcc_compat llvm-rs-cc + do + patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib:${ncurses_32bit}/lib:`pwd`/lib $i done # These binaries also need zlib in addition to libstdc++ - for i in zipalign + for i in arm-linux-androideabi-ld i686-linux-android-ld mipsel-linux-android-ld split-select zipalign do patchelf --set-interpreter ${stdenv_32bit.cc.libc}/lib/ld-linux.so.2 $i - patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib:${zlib_32bit}/lib $i + patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib:${zlib_32bit}/lib:`pwd`/lib $i done # These binaries need to find libstdc++, libgcc_s, and zlib for i in aapt dexdump do - patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib:${zlib_32bit}/lib $i + patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib:${zlib_32bit}/lib:`pwd`/lib $i done ''} diff --git a/pkgs/development/mobile/androidenv/default.nix b/pkgs/development/mobile/androidenv/default.nix index 693a53cf428..86d82abbea4 100644 --- a/pkgs/development/mobile/androidenv/default.nix +++ b/pkgs/development/mobile/androidenv/default.nix @@ -4,12 +4,14 @@ rec { platformTools = import ./platform-tools.nix { inherit (pkgs) stdenv fetchurl unzip; stdenv_32bit = pkgs_i686.stdenv; + zlib_32bit = pkgs_i686.zlib; }; buildTools = import ./build-tools.nix { inherit (pkgs) stdenv fetchurl unzip; stdenv_32bit = pkgs_i686.stdenv; zlib_32bit = pkgs_i686.zlib; + ncurses_32bit = pkgs_i686.ncurses; }; support = import ./support.nix { @@ -155,6 +157,12 @@ rec { useExtraSupportLibs = true; useGooglePlayServices = true; }; + + androidsdk_6_0 = androidsdk { + platformVersions = [ "23" ]; + abiVersions = [ "armeabi-v7a" "x86" "x86_64"]; + useGoogleAPIs = true; + }; androidndk = import ./androidndk.nix { inherit (pkgs) stdenv fetchurl zlib ncurses p7zip lib makeWrapper; @@ -167,7 +175,6 @@ rec { inherit (pkgs) coreutils file findutils gawk gnugrep gnused jdk which; inherit platformTools; }; - buildApp = import ./build-app.nix { inherit (pkgs) stdenv jdk ant gnumake gawk file which; diff --git a/pkgs/development/mobile/androidenv/fetch.sh b/pkgs/development/mobile/androidenv/fetch.sh index 92abb18f25f..c14c060fc67 100755 --- a/pkgs/development/mobile/androidenv/fetch.sh +++ b/pkgs/development/mobile/androidenv/fetch.sh @@ -5,9 +5,9 @@ android list sdk | grep 'Parse XML:' | cut -f8- -d\ # | xargs -n 1 curl -O # we skip the intel addons, as they are Windows+osX only # we skip the default sys-img (arm?) because it is empty -curl -o repository-10.xml https://dl-ssl.google.com/android/repository/repository-10.xml -curl -o addon.xml https://dl-ssl.google.com/android/repository/addon.xml -curl -o sys-img.xml https://dl-ssl.google.com/android/repository/sys-img/android/sys-img.xml +curl -o repository-11.xml https://dl.google.com/android/repository/repository-11.xml +curl -o addon.xml https://dl.google.com/android/repository/addon.xml +curl -o sys-img.xml https://dl.google.com/android/repository/sys-img/android/sys-img.xml ./generate-addons.sh ./generate-platforms.sh diff --git a/pkgs/development/mobile/androidenv/generate-addons.xsl b/pkgs/development/mobile/androidenv/generate-addons.xsl index a43731fdd08..9658088c7fb 100644 --- a/pkgs/development/mobile/androidenv/generate-addons.xsl +++ b/pkgs/development/mobile/androidenv/generate-addons.xsl @@ -25,7 +25,7 @@ in google_apis_ = buildGoogleApis { name = "-"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/; + url = https://dl.google.com/android/repository/; sha1 = ""; }; meta = { @@ -39,7 +39,7 @@ in android_support_extra = buildGoogleApis { name = "android_support_extra"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/; + url = https://dl.google.com/android/repository/; sha1 = ""; }; meta = { @@ -51,7 +51,7 @@ in google_play_services = buildGoogleApis { name = "google_play_services"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/; + url = https://dl.google.com/android/repository/; sha1 = ""; }; meta = { diff --git a/pkgs/development/mobile/androidenv/generate-platforms.sh b/pkgs/development/mobile/androidenv/generate-platforms.sh index 58d3ba58d37..ce89f6a8036 100755 --- a/pkgs/development/mobile/androidenv/generate-platforms.sh +++ b/pkgs/development/mobile/androidenv/generate-platforms.sh @@ -1,4 +1,4 @@ #!/bin/sh -e -xsltproc --stringparam os linux generate-platforms.xsl repository-10.xml > platforms-linux.nix -xsltproc --stringparam os macosx generate-platforms.xsl repository-10.xml > platforms-macosx.nix +xsltproc --stringparam os linux generate-platforms.xsl repository-11.xml > platforms-linux.nix +xsltproc --stringparam os macosx generate-platforms.xsl repository-11.xml > platforms-macosx.nix diff --git a/pkgs/development/mobile/androidenv/generate-platforms.xsl b/pkgs/development/mobile/androidenv/generate-platforms.xsl index 7851f4899bf..1c80cde5bb3 100644 --- a/pkgs/development/mobile/androidenv/generate-platforms.xsl +++ b/pkgs/development/mobile/androidenv/generate-platforms.xsl @@ -1,7 +1,7 @@ + xmlns:sdk="http://schemas.android.com/sdk/android/repository/11"> @@ -13,7 +13,7 @@ - https://dl-ssl.google.com/android/repository/ + https://dl.google.com/android/repository/ diff --git a/pkgs/development/mobile/androidenv/generate-sysimages.xsl b/pkgs/development/mobile/androidenv/generate-sysimages.xsl index aa1e05e85a0..c31e81f4bf8 100644 --- a/pkgs/development/mobile/androidenv/generate-sysimages.xsl +++ b/pkgs/development/mobile/androidenv/generate-sysimages.xsl @@ -11,7 +11,7 @@ sysimg__ = buildSystemImage { name = "sysimg--"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/sys-img/android/; + url = https://dl.google.com/android/repository/sys-img/android/; sha1 = ""; }; }; diff --git a/pkgs/development/mobile/androidenv/platform-tools.nix b/pkgs/development/mobile/androidenv/platform-tools.nix index 1be54adaaed..1243ba429a3 100644 --- a/pkgs/development/mobile/androidenv/platform-tools.nix +++ b/pkgs/development/mobile/androidenv/platform-tools.nix @@ -1,20 +1,16 @@ -{stdenv, stdenv_32bit, fetchurl, unzip}: +{stdenv, stdenv_32bit, zlib_32bit, fetchurl, unzip}: -let - version = "22"; - -in - -stdenv.mkDerivation { +stdenv.mkDerivation rec { + version = "23.0.1"; name = "android-platform-tools-r${version}"; src = if (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux") then fetchurl { - url = "https://dl-ssl.google.com/android/repository/platform-tools_r${version}-linux.zip"; - sha256 = "1kbp5fzfdas6c431n53a9w0z0182ihhadd1h8a64m1alkw0swr41"; + url = "https://dl.google.com/android/repository/platform-tools_r${version}-linux.zip"; + sha1 = "94dcc5072b3d0d74cc69e4101958b6c2e227e738"; } else if stdenv.system == "x86_64-darwin" then fetchurl { - url = "https://dl-ssl.google.com/android/repository/platform-tools_r${version}-macosx.zip"; - sha256 = "0r359xxicn7zw9z0jbrmsppx1372fijg09ck907gg8x1cvzj2ry0"; + url = "https://dl.google.com/android/repository/platform-tools_r${version}-macosx.zip"; + sha1 = "c461d66f3ca9fbae8ea0fa1a49c203b3b6fd653f"; } else throw "System ${stdenv.system} not supported!"; @@ -26,10 +22,16 @@ stdenv.mkDerivation { ${stdenv.lib.optionalString (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux") '' - for i in adb fastboot + for i in adb dmtracedump fastboot hprof-conv sqlite3 do patchelf --set-interpreter ${stdenv_32bit.cc.libc}/lib/ld-linux.so.2 $i - patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib $i + patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib:`pwd`/lib $i + done + + for i in etc1tool + do + patchelf --set-interpreter ${stdenv_32bit.cc.libc}/lib/ld-linux.so.2 $i + patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib:${zlib_32bit}/lib:`pwd`/lib $i done ''} diff --git a/pkgs/development/mobile/androidenv/platforms-linux.nix b/pkgs/development/mobile/androidenv/platforms-linux.nix index cf509cdff97..cc21ce2dbeb 100644 --- a/pkgs/development/mobile/androidenv/platforms-linux.nix +++ b/pkgs/development/mobile/androidenv/platforms-linux.nix @@ -163,7 +163,7 @@ in platform_14 = buildPlatform { name = "android-platform-4.0"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/android-14_r04.zip; + url = https://dl.google.com/android/repository/android-14_r04.zip; sha1 = "d4f1d8fbca25225b5f0e7a0adf0d39c3d6e60b3c"; }; meta = { @@ -175,7 +175,7 @@ in platform_15 = buildPlatform { name = "android-platform-4.0.3"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/android-15_r05.zip; + url = https://dl.google.com/android/repository/android-15_r05.zip; sha1 = "69ab4c443b37184b2883af1fd38cc20cbeffd0f3"; }; meta = { @@ -187,7 +187,7 @@ in platform_16 = buildPlatform { name = "android-platform-4.1.2"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/android-16_r05.zip; + url = https://dl.google.com/android/repository/android-16_r05.zip; sha1 = "12a5ce6235a76bc30f62c26bda1b680e336abd07"; }; meta = { @@ -199,7 +199,7 @@ in platform_17 = buildPlatform { name = "android-platform-4.2.2"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/android-17_r03.zip; + url = https://dl.google.com/android/repository/android-17_r03.zip; sha1 = "dbe14101c06e6cdb34e300393e64e64f8c92168a"; }; meta = { @@ -211,7 +211,7 @@ in platform_18 = buildPlatform { name = "android-platform-4.3.1"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/android-18_r03.zip; + url = https://dl.google.com/android/repository/android-18_r03.zip; sha1 = "e6b09b3505754cbbeb4a5622008b907262ee91cb"; }; meta = { @@ -223,7 +223,7 @@ in platform_19 = buildPlatform { name = "android-platform-4.4.2"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/android-19_r04.zip; + url = https://dl.google.com/android/repository/android-19_r04.zip; sha1 = "2ff20d89e68f2f5390981342e009db5a2d456aaa"; }; meta = { @@ -235,7 +235,7 @@ in platform_20 = buildPlatform { name = "android-platform-4.4W.2"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/android-20_r02.zip; + url = https://dl.google.com/android/repository/android-20_r02.zip; sha1 = "a9251f8a3f313ab05834a07a963000927637e01d"; }; meta = { @@ -247,7 +247,7 @@ in platform_21 = buildPlatform { name = "android-platform-5.0.1"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/android-21_r02.zip; + url = https://dl.google.com/android/repository/android-21_r02.zip; sha1 = "53536556059bb29ae82f414fd2e14bc335a4eb4c"; }; meta = { @@ -259,7 +259,7 @@ in platform_22 = buildPlatform { name = "android-platform-5.1.1"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/android-22_r02.zip; + url = https://dl.google.com/android/repository/android-22_r02.zip; sha1 = "5d1bd10fea962b216a0dece1247070164760a9fc"; }; meta = { @@ -268,4 +268,16 @@ in }; }; + platform_23 = buildPlatform { + name = "android-platform-6.0"; + src = fetchurl { + url = https://dl.google.com/android/repository/android-23_r01.zip; + sha1 = "cbccca8d3127e894845556ce999b28281de541bd"; + }; + meta = { + description = "Android SDK Platform 6.0"; + + }; + }; + } diff --git a/pkgs/development/mobile/androidenv/platforms-macosx.nix b/pkgs/development/mobile/androidenv/platforms-macosx.nix index c9ec3dd6e84..c6d83f71108 100644 --- a/pkgs/development/mobile/androidenv/platforms-macosx.nix +++ b/pkgs/development/mobile/androidenv/platforms-macosx.nix @@ -163,7 +163,7 @@ in platform_14 = buildPlatform { name = "android-platform-4.0"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/android-14_r04.zip; + url = https://dl.google.com/android/repository/android-14_r04.zip; sha1 = "d4f1d8fbca25225b5f0e7a0adf0d39c3d6e60b3c"; }; meta = { @@ -175,7 +175,7 @@ in platform_15 = buildPlatform { name = "android-platform-4.0.3"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/android-15_r05.zip; + url = https://dl.google.com/android/repository/android-15_r05.zip; sha1 = "69ab4c443b37184b2883af1fd38cc20cbeffd0f3"; }; meta = { @@ -187,7 +187,7 @@ in platform_16 = buildPlatform { name = "android-platform-4.1.2"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/android-16_r05.zip; + url = https://dl.google.com/android/repository/android-16_r05.zip; sha1 = "12a5ce6235a76bc30f62c26bda1b680e336abd07"; }; meta = { @@ -199,7 +199,7 @@ in platform_17 = buildPlatform { name = "android-platform-4.2.2"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/android-17_r03.zip; + url = https://dl.google.com/android/repository/android-17_r03.zip; sha1 = "dbe14101c06e6cdb34e300393e64e64f8c92168a"; }; meta = { @@ -211,7 +211,7 @@ in platform_18 = buildPlatform { name = "android-platform-4.3.1"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/android-18_r03.zip; + url = https://dl.google.com/android/repository/android-18_r03.zip; sha1 = "e6b09b3505754cbbeb4a5622008b907262ee91cb"; }; meta = { @@ -223,7 +223,7 @@ in platform_19 = buildPlatform { name = "android-platform-4.4.2"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/android-19_r04.zip; + url = https://dl.google.com/android/repository/android-19_r04.zip; sha1 = "2ff20d89e68f2f5390981342e009db5a2d456aaa"; }; meta = { @@ -235,7 +235,7 @@ in platform_20 = buildPlatform { name = "android-platform-4.4W.2"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/android-20_r02.zip; + url = https://dl.google.com/android/repository/android-20_r02.zip; sha1 = "a9251f8a3f313ab05834a07a963000927637e01d"; }; meta = { @@ -247,7 +247,7 @@ in platform_21 = buildPlatform { name = "android-platform-5.0.1"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/android-21_r02.zip; + url = https://dl.google.com/android/repository/android-21_r02.zip; sha1 = "53536556059bb29ae82f414fd2e14bc335a4eb4c"; }; meta = { @@ -259,7 +259,7 @@ in platform_22 = buildPlatform { name = "android-platform-5.1.1"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/android-22_r02.zip; + url = https://dl.google.com/android/repository/android-22_r02.zip; sha1 = "5d1bd10fea962b216a0dece1247070164760a9fc"; }; meta = { @@ -268,4 +268,16 @@ in }; }; + platform_23 = buildPlatform { + name = "android-platform-6.0"; + src = fetchurl { + url = https://dl.google.com/android/repository/android-23_r01.zip; + sha1 = "cbccca8d3127e894845556ce999b28281de541bd"; + }; + meta = { + description = "Android SDK Platform 6.0"; + + }; + }; + } diff --git a/pkgs/development/mobile/androidenv/repository-10.xml b/pkgs/development/mobile/androidenv/repository-11.xml similarity index 90% rename from pkgs/development/mobile/androidenv/repository-10.xml rename to pkgs/development/mobile/androidenv/repository-11.xml index fa07307e01e..1495aae4286 100644 --- a/pkgs/development/mobile/androidenv/repository-10.xml +++ b/pkgs/development/mobile/androidenv/repository-11.xml @@ -14,7 +14,7 @@ * See the License for the specific language governing permissions and * limitations under the License. --> - + To get started with the Android SDK, you must agree to the following terms and conditions. @@ -285,6 +285,49 @@ June 2014. + + 1 + Android NDK + + + 1083342126 + 6be8598e4ed3d9dd42998c8cb666f0ee502b1294 + https://dl-ssl.google.com/android/repository/android-ndk-r10e-darwin-x86_64.zip + macosx + 64 + + + 1110915721 + f692681b007071103277f6edc6f91cb5c5494a32 + https://dl-ssl.google.com/android/repository/android-ndk-r10e-linux-x86_64.zip + linux + 64 + + + 1113873239 + d3510a0e298f6d3b13dc0283bfd92951ccd3a281 + https://dl-ssl.google.com/android/repository/android-ndk-r10e-linux-x86.zip + linux + 32 + + + 1066110352 + a29f3ae41fb02b64ca8ad2b0903f74356f953d9f + https://dl-ssl.google.com/android/repository/android-ndk-r10e-windows-x86_64.zip + windows + 64 + + + 1029711228 + 1d0b8f2835be741f3048fb03c0a3e9f71ab7f357 + https://dl-ssl.google.com/android/repository/android-ndk-r10e-windows-x86.zip + windows + 32 + + + + + 1.1 2 @@ -858,6 +901,29 @@ June 2014. + + + 1 + Android SDK Platform 6.0 + 6.0 + 23 + + 22 + + + 15 + 1 + + + + 70408061 + cbccca8d3127e894845556ce999b28281de541bd + android-23_r01.zip + + + + + @@ -1105,14 +1171,28 @@ June 2014. - - 5 + + 6 22 - 107981157 - dbc5cc27b5d15acc25cd6b94b8c2971806b70bb0 - samples-22_r05.zip + 124512215 + 1f6f4a81a8f19a9b9c9bf4adb64a91330a861c7f + samples-22_r06.zip + + + + + + + + 2 + 23 + + + 127582326 + 94d2857476987cfb7b18c8be61755c21b0a6e599 + samples-23_r02.zip @@ -1121,35 +1201,66 @@ June 2014. - + - 22 + 23 0 - 0 + 1 - 1848028 - 720214bd29d08eb82673cd81a8159b083eef19d7 - platform-tools_r22-windows.zip + 2402978 + 8f32d5f724618ad58e71909cc963ae006d0867b0 + platform-tools_r23.0.1-windows.zip windows - 1751911 - b78be9cc31cf9f9fe0609e29a6a133beacf03b52 - platform-tools_r22-linux.zip + 2520021 + 94dcc5072b3d0d74cc69e4101958b6c2e227e738 + platform-tools_r23.0.1-linux.zip linux - 1743025 - ddc96385bccf8a15d4f8a11eb1cb9d2a08a531c8 - platform-tools_r22-macosx.zip + 2489850 + c461d66f3ca9fbae8ea0fa1a49c203b3b6fd653f + platform-tools_r23.0.1-macosx.zip macosx + + + + 23 + 1 + 0 + 1 + + + + 2594786 + 0467934bfbbb8bd72959f7365e1a3ce2683b68f6 + platform-tools_r23.1_rc1-windows.zip + windows + + + 2873688 + b04d1dbdfd734b0263fb04182e76ff565447f498 + platform-tools_r23.1_rc1-linux.zip + linux + + + 2752137 + c92d9fdfdf79e04a69412492d6480d4f937d1bcc + platform-tools_r23.1_rc1-macosx.zip + macosx + + + + + @@ -1708,35 +1819,97 @@ June 2014. + + + + + 23 + 0 + 0 + + + + + 38570715 + 3874948f35f2f8946597679cc6e9151449f23b5d + build-tools_r23-windows.zip + windows + + + 39080519 + c1d6209212b01469f80fa804e0c1d39a06bc9060 + build-tools_r23-linux.zip + linux + + + 38070540 + 90ba6e716f7703a236cd44b2e71c5ff430855a03 + build-tools_r23-macosx.zip + macosx + + + + + + + + + 23 + 0 + 1 + + + + 38558889 + cc1d37231d228f7a6f130e1f8d8c940052f0f8ab + build-tools_r23.0.1-windows.zip + windows + + + 39069295 + b6ba7c399d5fa487d95289d8832e4ad943aed556 + build-tools_r23.0.1-linux.zip + linux + + + 38059328 + d96ec1522721e9a179ae2c591c99f75d31d39718 + build-tools_r23.0.1-macosx.zip + macosx + + + + + - + 24 - 1 - 2 + 4 + 0 20 - 159505060 - c20ffa023618c5cb6953131d6dbb0c628a3a1a14 - tools_r24.1.2-windows.zip + 197016004 + c3b5d466a8f75d86db79d3c9b8724a4b1d287f5a + tools_r24.4-windows.zip windows - 169061591 - c7c30f6da6eff6323260f0353ccaacc984ea6b3e - tools_r24.1.2-linux.zip + 320385195 + f120858b1f7eedb573608d4ebf16a046d8833024 + tools_r24.4-linux.zip linux - 89081357 - e32ba2fb21cc92ec4f1f01b5cb9a06f666eee460 - tools_r24.1.2-macosx.zip + 101816531 + b83ba3875b4e701b978a11d6506e8997907efca1 + tools_r24.4-macosx.zip macosx @@ -1746,14 +1919,14 @@ June 2014. - + 1 - 22 + 23 - 296467484 - 419791c49fa0a305a06966fd1734cf5b0498ea1a - docs-22_r01.zip + 332171437 + 060ebab2f74861e1ddd9136df26b837312bc087f + docs-23_r01.zip @@ -1888,5 +2061,17 @@ June 2014. + + + 1 + 23 + + + 31771965 + b0f15da2762b42f543c5e364c2b15b198cc99cc2 + sources-23_r01.zip + + + + - diff --git a/pkgs/development/mobile/androidenv/support-repository.nix b/pkgs/development/mobile/androidenv/support-repository.nix index c0c2fb47fcd..436936f7c42 100644 --- a/pkgs/development/mobile/androidenv/support-repository.nix +++ b/pkgs/development/mobile/androidenv/support-repository.nix @@ -1,11 +1,11 @@ {stdenv, fetchurl, unzip}: stdenv.mkDerivation rec { - version = "14"; + version = "21"; name = "android-support-repository-r${version}"; src = fetchurl { - url = "http://dl-ssl.google.com/android/repository/android_m2repository_r${version}.zip"; - sha256 = "027mmfzvs07nbp28vn6c6cgszqdrmmgwdfzda87936lpi5dwg34p"; + url = "http://dl.google.com/android/repository/android_m2repository_r${version}.zip"; + sha1 = "acb915c5d2c730bf98303c0cd0122bedb2954cb3"; }; buildCommand = '' diff --git a/pkgs/development/mobile/androidenv/support.nix b/pkgs/development/mobile/androidenv/support.nix index 772ecad8f8a..17125c60dd2 100644 --- a/pkgs/development/mobile/androidenv/support.nix +++ b/pkgs/development/mobile/androidenv/support.nix @@ -1,11 +1,11 @@ {stdenv, fetchurl, unzip}: stdenv.mkDerivation rec { - version = "22.1.1"; + version = "23.0.1"; name = "android-support-r${version}"; src = fetchurl { - url = "https://dl-ssl.google.com/android/repository/support_r${version}.zip"; - sha1 = "jifv8yjg5jrycf8zd0lfsra00yscggc8"; + url = "https://dl.google.com/android/repository/support_r${version}.zip"; + sha1 = "fbe529716943053d0ce0d7f058d79f1a848cdff9"; }; buildCommand = '' diff --git a/pkgs/development/mobile/androidenv/sys-img.xml b/pkgs/development/mobile/androidenv/sys-img.xml index ef6507035f3..66a674042bd 100644 --- a/pkgs/development/mobile/androidenv/sys-img.xml +++ b/pkgs/development/mobile/androidenv/sys-img.xml @@ -436,16 +436,16 @@ ANY PRE-RELEASE MATERIALS ARE NON-QUALIFIED AND, AS SUCH, ARE PROVIDED “AS IS - - 2 + + 3 Android SDK Platform 4.0.3 15 armeabi-v7a - 96227377 - 1bf977d6cb4e0ad38dceac0c4863d1caa21f326e - sysimg_armv7a-15_r02.zip + 96240395 + 0a47f586e172b1cf3db2ada857a70c2bdec24ef8 + sysimg_armv7a-15_r03.zip @@ -453,16 +453,16 @@ ANY PRE-RELEASE MATERIALS ARE NON-QUALIFIED AND, AS SUCH, ARE PROVIDED “AS IS - - 3 - Android SDK Platform 4.1 + + 4 + Android SDK Platform 4.1.2 16 armeabi-v7a - 112528368 - d1cddb23f17aad5821a089c403d4cddad2cf9ef7 - sysimg_armv7a-16_r03.zip + 112608076 + 39c093ea755098f0ee79f607be7df9e54ba4943f + sysimg_armv7a-16_r04.zip @@ -470,16 +470,16 @@ ANY PRE-RELEASE MATERIALS ARE NON-QUALIFIED AND, AS SUCH, ARE PROVIDED “AS IS - - 2 + + 3 Android SDK Platform 4.2.2 17 armeabi-v7a - 116553808 - 1c321cda1af793b84d47d1a8d15f85444d265e3c - sysimg_armv7a-17_r02.zip + 118663847 + 97cfad22b51c8475e228b207dd36dbef1c18fa38 + sysimg_armv7a-17_r03.zip @@ -487,16 +487,16 @@ ANY PRE-RELEASE MATERIALS ARE NON-QUALIFIED AND, AS SUCH, ARE PROVIDED “AS IS - - 2 - Android SDK Platform 4.3 + + 3 + Android SDK Platform 4.3.1 18 armeabi-v7a - 125457135 - 4a1a93200210d8c42793324362868846f67401ab - sysimg_armv7a-18_r02.zip + 125503391 + 2d7d51f4d2742744766511e5d6b491bd49161c51 + sysimg_armv7a-18_r03.zip @@ -504,16 +504,16 @@ ANY PRE-RELEASE MATERIALS ARE NON-QUALIFIED AND, AS SUCH, ARE PROVIDED “AS IS - - 2 - Android SDK Platform 4.4.2 + + 3 + Android SDK Platform 4.4.4 19 armeabi-v7a - 158478012 - e0d375397e28e3d5d9577a00132463a4696248e5 - sysimg_armv7a-19_r02.zip + 159399028 + 5daf7718e3ab03d9bd8792b492dd305f386ef12f + sysimg_armv7a-19_r03.zip @@ -537,19 +537,36 @@ ANY PRE-RELEASE MATERIALS ARE NON-QUALIFIED AND, AS SUCH, ARE PROVIDED “AS IS + + + 1 + Android SDK Platform 5.1 + 22 + armeabi-v7a + default + + + 193687339 + 2aa6a887ee75dcf3ac34627853d561997792fcb8 + sysimg_arm-22_r01.zip + + + + + Android SDK Platform 2.3.7 - 2 + 3 10 x86 - 55463895 - 34e2436f69606cdfe35d3ef9112f0c64e3ff021d - https://dl-ssl.google.com/android/repository/sys-img/android/sysimg_x86-10_r02.zip + 66997702 + 6b8539eaca9685d2d3289bf8e6d21d366d791326 + sysimg_x86-10_r03.zip default @@ -557,15 +574,15 @@ ANY PRE-RELEASE MATERIALS ARE NON-QUALIFIED AND, AS SUCH, ARE PROVIDED “AS IS Android SDK Platform 4.0.4 - 1 + 2 15 x86 - 112619605 - d540325952e0f097509622b9e685737584b83e40 - https://dl-ssl.google.com/android/repository/sys-img/android/sysimg_x86-15_r01.zip + 109019058 + 56b8d4b3d0f6a8876bc78d654da186f3b7b7c44f + sysimg_x86-15_r02.zip default @@ -573,63 +590,65 @@ ANY PRE-RELEASE MATERIALS ARE NON-QUALIFIED AND, AS SUCH, ARE PROVIDED “AS IS Android SDK Platform 4.1.1 - 1 + 2 16 x86 - 131840348 - 9d35bcaa4f9b40443941f32b8a50337f413c021a - https://dl-ssl.google.com/android/repository/sys-img/android/sysimg_x86-16_r01.zip + 135252264 + 36c2a2e394bcb3290583ce09815eae7711d0b2c2 + sysimg_x86-16_r02.zip default - Android SDK Platform 4.2 - 1 + + 2 + Android SDK Platform 4.2.2 17 x86 - + - 138799122 - ddb3313e8dcd07926003f7b828eafea1115ea35b - https://dl-ssl.google.com/android/repository/sys-img/android/sysimg_x86-17_r01.zip + 136075512 + bd8c7c5411431af7e051cbe961be430fc31e773d + sysimg_x86-17_r02.zip default - Android SDK Platform 4.3 - 1 + + 2 + Android SDK Platform 4.3.1 18 x86 - + - 155656419 - f11bc9fccd3e7e46c07d8b26e112a8d0b45966c1 - https://dl-ssl.google.com/android/repository/sys-img/android/sysimg_x86-18_r01.zip + 143899902 + ab3de121a44fca43ac3aa83f7d68cc47fc643ee8 + sysimg_x86-18_r02.zip default - - 2 - Android SDK Platform 4.4.2 + + 3 + Android SDK Platform 4.4.4 19 x86 - 178922720 - 8889cb418984a2a7916a359da7c429d2431ed060 - sysimg_x86-19_r02.zip + 180245668 + 3782f3ebac5e54b3de454570add401989515ffca + sysimg_x86-19_r03.zip @@ -704,22 +723,6 @@ ANY PRE-RELEASE MATERIALS ARE NON-QUALIFIED AND, AS SUCH, ARE PROVIDED “AS IS - - - 1 - Android SDK Platform 5.1 - 22 - armeabi-v7a - default - - - 193687339 - 2aa6a887ee75dcf3ac34627853d561997792fcb8 - sysimg_arm-22_r01.zip - - - - @@ -776,4 +779,54 @@ ANY PRE-RELEASE MATERIALS ARE NON-QUALIFIED AND, AS SUCH, ARE PROVIDED “AS IS default + + + 3 + Android SDK Platform 6.0 + 23 + x86 + default + + + 240896796 + 3cb2e8efb575c35a558b091eac7e1bc5843f5f12 + sysimg_x86-23_r03.zip + + + + + + + + 3 + Android SDK Platform 6.0 + 23 + x86_64 + default + + + 337897181 + 226510856431bc4a73690540a8d7cbad974bedd3 + sysimg_x86_64-23_r03.zip + + + + + + + + 3 + Android SDK Platform 6.0 + 23 + armeabi-v7a + default + + + 226879660 + 7bb8768ec4333500192fd9627d4234f505fa98dc + sysimg_arm-23_r03.zip + + + + diff --git a/pkgs/development/mobile/androidenv/sysimages.nix b/pkgs/development/mobile/androidenv/sysimages.nix index 83ca0d49830..82bfce7a62f 100644 --- a/pkgs/development/mobile/androidenv/sysimages.nix +++ b/pkgs/development/mobile/androidenv/sysimages.nix @@ -18,7 +18,7 @@ in sysimg_armeabi-v7a_14 = buildSystemImage { name = "sysimg-armeabi-v7a-14"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/sys-img/android/sysimg_armv7a-14_r02.zip; + url = https://dl.google.com/android/repository/sys-img/android/sysimg_armv7a-14_r02.zip; sha1 = "d8991b0c06b18d7d6ed4169d67460ee1add6661b"; }; }; @@ -26,103 +26,111 @@ in sysimg_armeabi-v7a_15 = buildSystemImage { name = "sysimg-armeabi-v7a-15"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/sys-img/android/sysimg_armv7a-15_r02.zip; - sha1 = "1bf977d6cb4e0ad38dceac0c4863d1caa21f326e"; + url = https://dl.google.com/android/repository/sys-img/android/sysimg_armv7a-15_r03.zip; + sha1 = "0a47f586e172b1cf3db2ada857a70c2bdec24ef8"; }; }; sysimg_armeabi-v7a_16 = buildSystemImage { name = "sysimg-armeabi-v7a-16"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/sys-img/android/sysimg_armv7a-16_r03.zip; - sha1 = "d1cddb23f17aad5821a089c403d4cddad2cf9ef7"; + url = https://dl.google.com/android/repository/sys-img/android/sysimg_armv7a-16_r04.zip; + sha1 = "39c093ea755098f0ee79f607be7df9e54ba4943f"; }; }; sysimg_armeabi-v7a_17 = buildSystemImage { name = "sysimg-armeabi-v7a-17"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/sys-img/android/sysimg_armv7a-17_r02.zip; - sha1 = "1c321cda1af793b84d47d1a8d15f85444d265e3c"; + url = https://dl.google.com/android/repository/sys-img/android/sysimg_armv7a-17_r03.zip; + sha1 = "97cfad22b51c8475e228b207dd36dbef1c18fa38"; }; }; sysimg_armeabi-v7a_18 = buildSystemImage { name = "sysimg-armeabi-v7a-18"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/sys-img/android/sysimg_armv7a-18_r02.zip; - sha1 = "4a1a93200210d8c42793324362868846f67401ab"; + url = https://dl.google.com/android/repository/sys-img/android/sysimg_armv7a-18_r03.zip; + sha1 = "2d7d51f4d2742744766511e5d6b491bd49161c51"; }; }; sysimg_armeabi-v7a_19 = buildSystemImage { name = "sysimg-armeabi-v7a-19"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/sys-img/android/sysimg_armv7a-19_r02.zip; - sha1 = "e0d375397e28e3d5d9577a00132463a4696248e5"; + url = https://dl.google.com/android/repository/sys-img/android/sysimg_armv7a-19_r03.zip; + sha1 = "5daf7718e3ab03d9bd8792b492dd305f386ef12f"; }; }; sysimg_armeabi-v7a_21 = buildSystemImage { name = "sysimg-armeabi-v7a-21"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/sys-img/android/sysimg_arm-21_r03.zip; + url = https://dl.google.com/android/repository/sys-img/android/sysimg_arm-21_r03.zip; sha1 = "0b2e21421d29f48211b5289ca4addfa7f4c7ae5a"; }; }; + sysimg_armeabi-v7a_22 = buildSystemImage { + name = "sysimg-armeabi-v7a-22"; + src = fetchurl { + url = https://dl.google.com/android/repository/sys-img/android/sysimg_arm-22_r01.zip; + sha1 = "2aa6a887ee75dcf3ac34627853d561997792fcb8"; + }; + }; + sysimg_x86_10 = buildSystemImage { name = "sysimg-x86-10"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/sys-img/android/sysimg_x86-10_r02.zip; - sha1 = "34e2436f69606cdfe35d3ef9112f0c64e3ff021d"; + url = https://dl.google.com/android/repository/sys-img/android/sysimg_x86-10_r03.zip; + sha1 = "6b8539eaca9685d2d3289bf8e6d21d366d791326"; }; }; sysimg_x86_15 = buildSystemImage { name = "sysimg-x86-15"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/sys-img/android/sysimg_x86-15_r01.zip; - sha1 = "d540325952e0f097509622b9e685737584b83e40"; + url = https://dl.google.com/android/repository/sys-img/android/sysimg_x86-15_r02.zip; + sha1 = "56b8d4b3d0f6a8876bc78d654da186f3b7b7c44f"; }; }; sysimg_x86_16 = buildSystemImage { name = "sysimg-x86-16"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/sys-img/android/sysimg_x86-16_r01.zip; - sha1 = "9d35bcaa4f9b40443941f32b8a50337f413c021a"; + url = https://dl.google.com/android/repository/sys-img/android/sysimg_x86-16_r02.zip; + sha1 = "36c2a2e394bcb3290583ce09815eae7711d0b2c2"; }; }; sysimg_x86_17 = buildSystemImage { name = "sysimg-x86-17"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/sys-img/android/sysimg_x86-17_r01.zip; - sha1 = "ddb3313e8dcd07926003f7b828eafea1115ea35b"; + url = https://dl.google.com/android/repository/sys-img/android/sysimg_x86-17_r02.zip; + sha1 = "bd8c7c5411431af7e051cbe961be430fc31e773d"; }; }; sysimg_x86_18 = buildSystemImage { name = "sysimg-x86-18"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/sys-img/android/sysimg_x86-18_r01.zip; - sha1 = "f11bc9fccd3e7e46c07d8b26e112a8d0b45966c1"; + url = https://dl.google.com/android/repository/sys-img/android/sysimg_x86-18_r02.zip; + sha1 = "ab3de121a44fca43ac3aa83f7d68cc47fc643ee8"; }; }; sysimg_x86_19 = buildSystemImage { name = "sysimg-x86-19"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/sys-img/android/sysimg_x86-19_r02.zip; - sha1 = "8889cb418984a2a7916a359da7c429d2431ed060"; + url = https://dl.google.com/android/repository/sys-img/android/sysimg_x86-19_r03.zip; + sha1 = "3782f3ebac5e54b3de454570add401989515ffca"; }; }; sysimg_x86_21 = buildSystemImage { name = "sysimg-x86-21"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/sys-img/android/sysimg_x86-21_r03.zip; + url = https://dl.google.com/android/repository/sys-img/android/sysimg_x86-21_r03.zip; sha1 = "a0b510c66769e84fa5e40515531be2d266a4247f"; }; }; @@ -130,7 +138,7 @@ in sysimg_x86_64_21 = buildSystemImage { name = "sysimg-x86_64-21"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/sys-img/android/sysimg_x86_64-21_r03.zip; + url = https://dl.google.com/android/repository/sys-img/android/sysimg_x86_64-21_r03.zip; sha1 = "2f205b728695d84488156f4846beb83a353ea64b"; }; }; @@ -138,7 +146,7 @@ in sysimg_x86_22 = buildSystemImage { name = "sysimg-x86-22"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/sys-img/android/sysimg_x86-22_r01.zip; + url = https://dl.google.com/android/repository/sys-img/android/sysimg_x86-22_r01.zip; sha1 = "6c7bb51e41a16099bb1f2a3cc81fdb5aa053fc15"; }; }; @@ -146,23 +154,15 @@ in sysimg_x86_64_22 = buildSystemImage { name = "sysimg-x86_64-22"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/sys-img/android/sysimg_x86_64-22_r01.zip; + url = https://dl.google.com/android/repository/sys-img/android/sysimg_x86_64-22_r01.zip; sha1 = "05752813603f9fa03a58dcf7f8f5e779be722aae"; }; }; - sysimg_armeabi-v7a_22 = buildSystemImage { - name = "sysimg-armeabi-v7a-22"; - src = fetchurl { - url = https://dl-ssl.google.com/android/repository/sys-img/android/sysimg_arm-22_r01.zip; - sha1 = "2aa6a887ee75dcf3ac34627853d561997792fcb8"; - }; - }; - sysimg_mips_15 = buildSystemImage { name = "sysimg-mips-15"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/sys-img/android/sysimg_mips-15_r01.zip; + url = https://dl.google.com/android/repository/sys-img/android/sysimg_mips-15_r01.zip; sha1 = "a753bb4a6783124dad726c500ce9aec9d2c1b2d9"; }; }; @@ -170,7 +170,7 @@ in sysimg_mips_16 = buildSystemImage { name = "sysimg-mips-16"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/sys-img/android/sysimg_mips-16_r04.zip; + url = https://dl.google.com/android/repository/sys-img/android/sysimg_mips-16_r04.zip; sha1 = "67943c54fb3943943ffeb05fdd39c0b753681f6e"; }; }; @@ -178,8 +178,32 @@ in sysimg_mips_17 = buildSystemImage { name = "sysimg-mips-17"; src = fetchurl { - url = https://dl-ssl.google.com/android/repository/sys-img/android/sysimg_mips-17_r01.zip; + url = https://dl.google.com/android/repository/sys-img/android/sysimg_mips-17_r01.zip; sha1 = "f0c6e153bd584c29e51b5c9723cfbf30f996a05d"; }; }; + + sysimg_x86_23 = buildSystemImage { + name = "sysimg-x86-23"; + src = fetchurl { + url = https://dl.google.com/android/repository/sys-img/android/sysimg_x86-23_r03.zip; + sha1 = "3cb2e8efb575c35a558b091eac7e1bc5843f5f12"; + }; + }; + + sysimg_x86_64_23 = buildSystemImage { + name = "sysimg-x86_64-23"; + src = fetchurl { + url = https://dl.google.com/android/repository/sys-img/android/sysimg_x86_64-23_r03.zip; + sha1 = "226510856431bc4a73690540a8d7cbad974bedd3"; + }; + }; + + sysimg_armeabi-v7a_23 = buildSystemImage { + name = "sysimg-armeabi-v7a-23"; + src = fetchurl { + url = https://dl.google.com/android/repository/sys-img/android/sysimg_arm-23_r03.zip; + sha1 = "7bb8768ec4333500192fd9627d4234f505fa98dc"; + }; + }; } diff --git a/pkgs/development/ocaml-modules/alcotest/default.nix b/pkgs/development/ocaml-modules/alcotest/default.nix index 68edfca25a8..ddc710bc7ed 100644 --- a/pkgs/development/ocaml-modules/alcotest/default.nix +++ b/pkgs/development/ocaml-modules/alcotest/default.nix @@ -1,18 +1,18 @@ -{stdenv, buildOcaml, fetchurl, ounit, re, cmdliner}: +{ stdenv, buildOcaml, fetchzip, cmdliner, stringext }: buildOcaml rec { name = "alcotest"; - version = "0.3.1"; + version = "0.4.5"; - src = fetchurl { - url = "https://github.com/samoht/alcotest/archive/${version}.tar.gz"; - sha256 = "a0e6c9a33c59b206ecc949655fa6e17bdd1078c8b610b14d8f6f0f1b489b0b43"; + src = fetchzip { + url = "https://github.com/mirage/alcotest/archive/${version}.tar.gz"; + sha256 = "1wcn9hkjf4cbnrz99w940qfjpi0lvd8v63yxwpnafkff871dwk6k"; }; - propagatedBuildInputs = [ ounit re cmdliner ]; + propagatedBuildInputs = [ cmdliner stringext ]; meta = with stdenv.lib; { - homepage = https://github.com/samoht/alcotest; + homepage = https://github.com/mirage/alcotest; description = "A lightweight and colourful test framework"; license = stdenv.lib.licenses.isc; maintainers = [ maintainers.ericbmerritt ]; diff --git a/pkgs/development/ocaml-modules/cmdliner/default.nix b/pkgs/development/ocaml-modules/cmdliner/default.nix index e90e7c4571c..ba955061740 100644 --- a/pkgs/development/ocaml-modules/cmdliner/default.nix +++ b/pkgs/development/ocaml-modules/cmdliner/default.nix @@ -2,11 +2,11 @@ let pname = "cmdliner"; - version = "0.9.7"; + version = "0.9.8"; ocaml_version = (builtins.parseDrvName ocaml.name).version; in -assert stdenv.lib.versionAtLeast ocaml_version "4.00"; +assert stdenv.lib.versionAtLeast ocaml_version "3.12"; stdenv.mkDerivation { @@ -14,7 +14,7 @@ stdenv.mkDerivation { src = fetchurl { url = "http://erratique.ch/software/${pname}/releases/${pname}-${version}.tbz"; - sha256 = "0ymzy1l6z85b6779lfxk179igfpf7rgfik70kr3c7lxmzwy8j6cw"; + sha256 = "0hdxlkgiwjml9dpaa80282a8350if7mc1m6yz2mrd7gci3fszykx"; }; unpackCmd = "tar xjf $src"; diff --git a/pkgs/development/ocaml-modules/eliom/default.nix b/pkgs/development/ocaml-modules/eliom/default.nix index 7fe26863b3d..23959306d2d 100644 --- a/pkgs/development/ocaml-modules/eliom/default.nix +++ b/pkgs/development/ocaml-modules/eliom/default.nix @@ -3,6 +3,8 @@ ipaddr, ocamlnet, ocaml_ssl, ocaml_pcre, ocaml_optcomp, reactivedata, opam}: +assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4"; + stdenv.mkDerivation rec { pname = "eliom"; diff --git a/pkgs/development/ocaml-modules/gg/default.nix b/pkgs/development/ocaml-modules/gg/default.nix index a40d4ae7978..653b627fc0b 100644 --- a/pkgs/development/ocaml-modules/gg/default.nix +++ b/pkgs/development/ocaml-modules/gg/default.nix @@ -4,7 +4,7 @@ let inherit (stdenv.lib) getVersion versionAtLeast; pname = "gg"; - version = "0.9.0"; + version = "0.9.1"; webpage = "http://erratique.ch/software/${pname}"; in @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "${webpage}/releases/${pname}-${version}.tbz"; - sha256 = "055pza6jbjjj7wgzf7pbn0ccxw76i8w5b2bcnaz8b9m4x6jaa6gh"; + sha256 = "0czj41sr8jsivl3z8wyblf9k971j3kx2wc3s0c1nhzcc8allg9i2"; }; buildInputs = [ ocaml findlib opam ]; diff --git a/pkgs/development/ocaml-modules/nocrypto/default.nix b/pkgs/development/ocaml-modules/nocrypto/default.nix new file mode 100644 index 00000000000..a5d73839cb2 --- /dev/null +++ b/pkgs/development/ocaml-modules/nocrypto/default.nix @@ -0,0 +1,33 @@ +{ stdenv, fetchzip, ocaml, findlib, cstruct, type_conv, zarith, ounit }: + +let + version = "0.5.1"; + ocaml_version = stdenv.lib.getVersion ocaml; +in + +assert stdenv.lib.versionAtLeast ocaml_version "4.01"; + +stdenv.mkDerivation { + name = "ocaml-nocrypto-${version}"; + + src = fetchzip { + url = "https://github.com/mirleft/ocaml-nocrypto/archive/${version}.tar.gz"; + sha256 = "15gffvixk12ghsfra9amfszd473c8h188zfj03ngvblbdm0d80m0"; + }; + + buildInputs = [ ocaml findlib type_conv ounit ]; + propagatedBuildInputs = [ cstruct zarith ]; + + configureFlags = "--enable-tests"; + doCheck = true; + checkTarget = "test"; + createFindlibDestdir = true; + + meta = { + homepage = https://github.com/mirleft/ocaml-nocrypto; + description = "Simplest possible crypto to support TLS"; + platforms = ocaml.meta.platforms; + license = stdenv.lib.licenses.bsd2; + maintainers = with stdenv.lib.maintainers; [ vbgl ]; + }; +} diff --git a/pkgs/development/ocaml-modules/twt/default.nix b/pkgs/development/ocaml-modules/twt/default.nix index 0dc7170552c..4ddbc6705a5 100644 --- a/pkgs/development/ocaml-modules/twt/default.nix +++ b/pkgs/development/ocaml-modules/twt/default.nix @@ -1,11 +1,11 @@ -{stdenv, fetchurl, ocaml, findlib }: +{ stdenv, fetchzip, ocaml, findlib }: stdenv.mkDerivation { - name = "ocaml-twt-0.93.2"; + name = "ocaml-twt-0.94.0"; - src = fetchurl { - url = https://github.com/mlin/twt/archive/v0.93.2.tar.gz; - sha256 = "aec091fbd1e6c4d252cf9664237418b4bc8c7d6b7a17475589be78365397e768"; + src = fetchzip { + url = https://github.com/mlin/twt/archive/v0.94.0.tar.gz; + sha256 = "0298gdgzl4cifxnc1d8sbrvz1lkiq5r5ifkq1fparm6gvqywpf65"; }; buildInputs = [ ocaml findlib ]; diff --git a/pkgs/development/r-modules/bioc-packages.nix b/pkgs/development/r-modules/bioc-packages.nix index 2501cd9662b..8deffbdcc91 100644 --- a/pkgs/development/r-modules/bioc-packages.nix +++ b/pkgs/development/r-modules/bioc-packages.nix @@ -4,7 +4,8 @@ # Rscript generate-r-packages.R bioc >new && mv new bioc-packages.nix { self, derive }: with self; { -ABSSeq = derive { name="ABSSeq"; version="1.5.0"; sha256="1glzkjq7ih4vqwfcvl7rc8dmlb5a3pl5f6x21df6fljdxiff23vk"; depends=[Rcpp]; }; +ABAEnrichment = derive { name="ABAEnrichment"; version="0.99.6"; sha256="0a7lszpdqfj6ssflviiylazm62inm7m3i6gwz6xw6qxcb2n9bqr5"; depends=[gplots Rcpp]; }; +ABSSeq = derive { name="ABSSeq"; version="1.5.1"; sha256="0x9w0n3i100pdampb7pfq4bdmpbbsdjj16s384aflkqs666jwrxi"; depends=[limma locfit]; }; ABarray = derive { name="ABarray"; version="1.37.0"; sha256="06pvn3nbi0gnj6inwyy1hy6r0m6axm4aqw36966va02vby4937ln"; depends=[Biobase multtest]; }; ACME = derive { name="ACME"; version="2.25.0"; sha256="1kni4wvp7dw1yy813dyq2329a0v8wgskq0wr2yvkpjiagg5j36km"; depends=[Biobase BiocGenerics]; }; ADaCGH2 = derive { name="ADaCGH2"; version="2.9.3"; sha256="0rs0ih1zjrmqm56hh9vdz737c9g009x70q4h7g9d612xb38cbfhv"; depends=[aCGH bit cluster DNAcopy ff ffbase GLAD snapCGH tilingArray waveslim]; }; @@ -21,12 +22,13 @@ AffyExpress = derive { name="AffyExpress"; version="1.35.0"; sha256="1ysn3c8mpnq AffyRNADegradation = derive { name="AffyRNADegradation"; version="1.15.0"; sha256="0x7mwlzvcxplvijprch0anwbfmj1qkrxqd9rc6f4p0zf88z2csal"; depends=[affy]; }; AffyTiling = derive { name="AffyTiling"; version="1.27.0"; sha256="1jqil9hd10cwsqdlxjd7c8s0p9fvrfcqxiw8rfrq117c8dlgl7w6"; depends=[affxparser affy preprocessCore]; }; AgiMicroRna = derive { name="AgiMicroRna"; version="2.19.0"; sha256="1m1fi6pdqwnfn21a4i7psxdg12bn6bhvcsi43bhwlzxzkrz00257"; depends=[affy affycoretools Biobase limma preprocessCore]; }; -AllelicImbalance = derive { name="AllelicImbalance"; version="1.7.19"; sha256="09kjl7rka00vqysg13naqqcks5mjygg45yb6z6k1qmbc7xd19ggl"; depends=[AnnotationDbi BiocGenerics Biostrings GenomeInfoDb GenomicAlignments GenomicFeatures GenomicRanges Gviz IRanges lattice Rsamtools S4Vectors seqinr SummarizedExperiment VariantAnnotation]; }; -AnalysisPageServer = derive { name="AnalysisPageServer"; version="1.1.3"; sha256="1k07v1flb7zvni6gmmpjrwl5hrs7adfhcjcg58vqj0b3nbij7aa0"; depends=[Biobase graph log4r rjson]; }; -AnnotationDbi = derive { name="AnnotationDbi"; version="1.31.17"; sha256="04xkhqnr9hmgxihfhn35a6s68s8x5layl7mf5whwhwxmlcd76lx4"; depends=[Biobase BiocGenerics DBI IRanges RSQLite S4Vectors]; }; -AnnotationForge = derive { name="AnnotationForge"; version="1.11.15"; sha256="02z3kxqcn87ykdsxfzs9j0qzpjkb2k79sz89lxrggk24jxk0rr35"; depends=[AnnotationDbi Biobase BiocGenerics DBI RSQLite S4Vectors]; }; +AllelicImbalance = derive { name="AllelicImbalance"; version="1.7.23"; sha256="1w2x8kcbfspw68lhy32ikdacq7mgk2jfiz6189n56wawh9i8m43x"; depends=[AnnotationDbi BiocGenerics Biostrings GenomeInfoDb GenomicAlignments GenomicFeatures GenomicRanges Gviz IRanges lattice Rsamtools S4Vectors seqinr SummarizedExperiment VariantAnnotation]; }; +AnalysisPageServer = derive { name="AnalysisPageServer"; version="1.2.0"; sha256="1klamfijdwyl92qmpmr7q4c2wza993d3rv8dl88l4zlf4g1agysl"; depends=[Biobase graph log4r rjson]; }; +AnnotationDbi = derive { name="AnnotationDbi"; version="1.31.18"; sha256="1cnq5px6qi7kwmqzbi6xm3w9n7c06vvkgprwc3xkl80mkj8w6hm7"; depends=[Biobase BiocGenerics DBI IRanges RSQLite S4Vectors]; }; +AnnotationForge = derive { name="AnnotationForge"; version="1.11.19"; sha256="0hqrd96n5j1c832jaqzxkjff04pczr3y8m4c9x4sq7dqj7fcd4a0"; depends=[AnnotationDbi Biobase BiocGenerics DBI RSQLite S4Vectors]; }; AnnotationFuncs = derive { name="AnnotationFuncs"; version="1.19.0"; sha256="1qjvkbqpyhwibdqv1c4n2z5wjnzx0h3kdas3fs33jhb597bxhl1y"; depends=[AnnotationDbi]; }; -AnnotationHub = derive { name="AnnotationHub"; version="2.1.32"; sha256="1a8hxbj97fhg64zxfhwk107ih8y4zgq48yx6xgpzm2pdsx5x9ndx"; depends=[AnnotationDbi BiocGenerics BiocInstaller httr interactiveDisplayBase RSQLite S4Vectors]; }; +AnnotationHub = derive { name="AnnotationHub"; version="2.1.40"; sha256="1c7jbgiwf9cv9w1wax7yk5awvfm9iv4f7p7kgp3z3xixhrirj3ap"; depends=[AnnotationDbi BiocGenerics BiocInstaller httr interactiveDisplayBase RSQLite S4Vectors]; }; +AnnotationHubData = derive { name="AnnotationHubData"; version="0.99.1"; sha256="1wj65r331l5ix0l5bv8syc60bfiq2c77g0l0glj84xvqvy99pscb"; depends=[AnnotationDbi AnnotationForge AnnotationHub Biobase BiocGenerics BiocInstaller Biostrings DBI futile_logger GenomeInfoDb GenomicFeatures GenomicRanges GEOquery httr IRanges jsonlite OrganismDbi rBiopaxParser RCurl Rsamtools RSQLite rtracklayer S4Vectors XML]; }; ArrayExpress = derive { name="ArrayExpress"; version="1.29.1"; sha256="0gyckxsmmh81ykf7mj952h2a4z58xrf9lbnmv884hz7zj317lf83"; depends=[affy Biobase limma XML]; }; ArrayExpressHTS = derive { name="ArrayExpressHTS"; version="1.19.0"; sha256="0qyd9jhkvw4lxqjvix28yzdx08hi7vf77ynlqxcl2q1lb3gmbxar"; depends=[Biobase BiocGenerics biomaRt Biostrings bitops DESeq edgeR GenomicRanges Hmisc IRanges R2HTML RColorBrewer rJava Rsamtools sampling sendmailR ShortRead snow svMisc XML]; }; ArrayTV = derive { name="ArrayTV"; version="1.7.0"; sha256="11dlq4lmzw0x8z2qrxff6xlcilp95nd71jpdvg3i5yni3ws6z5m1"; depends=[DNAcopy foreach oligoClasses]; }; @@ -35,16 +37,17 @@ AtlasRDF = derive { name="AtlasRDF"; version="1.5.0"; sha256="12l629rpkwdmvxjy5k BAC = derive { name="BAC"; version="1.29.0"; sha256="0xhhpxv8z9f0q4hb1l327x4vzm3jyk1xx9dbbpnhlyjfj9hzzn38"; depends=[]; }; BADER = derive { name="BADER"; version="1.7.0"; sha256="0v1p0s77pi2vxjpsn578741gyr2mgvkppfcaf75qkhs9b6g2m3ps"; depends=[]; }; BAGS = derive { name="BAGS"; version="2.9.0"; sha256="0hhgi874kq98nclmlsqkng0g9gs2jy9qkwl6vmgb7p37h61pmjli"; depends=[Biobase]; }; +BBCAnalyzer = derive { name="BBCAnalyzer"; version="0.99.4"; sha256="1jz57h7i3f8pc3xd11944jy8ljmjxdamil7wnsyzz7pbja4m1sy5"; depends=[Rsamtools VariantAnnotation]; }; BCRANK = derive { name="BCRANK"; version="1.31.0"; sha256="12w7yk5911ll3nrksxv861z4lzymakk4yfsqm5j0y6wf1mwd7wyc"; depends=[Biostrings]; }; BEAT = derive { name="BEAT"; version="1.7.0"; sha256="0s4mkp09n913dw2s5d7hms7rbcqzi1rsk8dmc5fdc3wlp7hw277w"; depends=[Biostrings BSgenome GenomicRanges ShortRead]; }; -BEclear = derive { name="BEclear"; version="1.1.0"; sha256="1icaxkxwr2rkii4ffflna51jxz4f1ijszrxj1ndz6r4gbrzdy374"; depends=[Matrix snowfall]; }; +BEclear = derive { name="BEclear"; version="1.1.1"; sha256="02il362iyfccd91id6q77nvvcr50n07jbdv2fr0a0l3vvm1kz2gd"; depends=[Matrix snowfall]; }; BGmix = derive { name="BGmix"; version="1.29.0"; sha256="0s2s6ylbw2wvdkn28842ghsflhcmcn156zw3fxmbdnz7xs29qs1f"; depends=[KernSmooth]; }; -BHC = derive { name="BHC"; version="1.21.0"; sha256="0f8qqid4qxw52zjvvm024wcmn0afr7avkr4hr2jfyvs0ga49khx8"; depends=[]; }; +BHC = derive { name="BHC"; version="1.21.1"; sha256="1jx9w37mglcswj9drmz8szhb7a7wj1wcvnf4hlmmxkm84g9s9d1p"; depends=[]; }; BRAIN = derive { name="BRAIN"; version="1.15.0"; sha256="09yd3xf3h85wdf56p38mnspyqbswl2v8zb81yg0a008p0l5ax8xr"; depends=[Biostrings lattice PolynomF]; }; -BSgenome = derive { name="BSgenome"; version="1.37.4"; sha256="09vwkl517nnq9krxwyaf70xaqnk3r3ddxdd834pwrhyij7r49sqr"; depends=[BiocGenerics Biostrings GenomeInfoDb GenomicRanges IRanges Rsamtools rtracklayer S4Vectors XVector]; }; +BSgenome = derive { name="BSgenome"; version="1.37.5"; sha256="0dkivazijij2jg3sb3p1k32xm2r8dqmcwprxlw9zq2dvp3j2fydq"; depends=[BiocGenerics Biostrings GenomeInfoDb GenomicRanges IRanges Rsamtools rtracklayer S4Vectors XVector]; }; BUS = derive { name="BUS"; version="1.25.0"; sha256="1n3s0pw4ijgh927mahwqybks8i6ysybp7xn4a86nrbpr2kqhznrd"; depends=[infotheo minet]; }; BaseSpaceR = derive { name="BaseSpaceR"; version="1.13.2"; sha256="17g87vfx6yy4cdqxchl9ig6s2vhnpfbarssw80ha6kbqw81jh55h"; depends=[RCurl RJSONIO]; }; -Basic4Cseq = derive { name="Basic4Cseq"; version="1.5.1"; sha256="0a4b11rv5ilv84qqpvf320c3knaajg4hlby5km0zzms3vbisr4hi"; depends=[Biostrings caTools GenomicAlignments GenomicRanges RCircos]; }; +Basic4Cseq = derive { name="Basic4Cseq"; version="1.5.2"; sha256="1q4xmn7ch5i9np01cmb396cw1jcjbrgrap10any6liia898yrdkm"; depends=[Biostrings caTools GenomicAlignments GenomicRanges RCircos]; }; BayesPeak = derive { name="BayesPeak"; version="1.21.0"; sha256="0mz00mk6gmc5g79iifn5hzfwf7s568n6s6wy46vrnnnnr3sk9w49"; depends=[IRanges]; }; BeadDataPackR = derive { name="BeadDataPackR"; version="1.21.1"; sha256="16dh7byvigd6161qznd1k9cz9hp0r50nbrd8nqlsh28zr60pvrj3"; depends=[]; }; BiGGR = derive { name="BiGGR"; version="1.5.0"; sha256="1q9m870pyhxd1627n94c259094k8jyrg22ni26qpnxkapj18lr0b"; depends=[hyperdraw hypergraph LIM rsbml stringr]; }; @@ -52,29 +55,29 @@ BiRewire = derive { name="BiRewire"; version="2.3.6"; sha256="1i2fn3lfc93gxy3llc BiSeq = derive { name="BiSeq"; version="1.9.2"; sha256="1z401p2y9sa2cs1zwnkvf3968nyv5c7wcbxvldjyl5dg04qw88wn"; depends=[betareg Biobase BiocGenerics Formula GenomeInfoDb GenomicRanges globaltest IRanges lokern rtracklayer S4Vectors SummarizedExperiment]; }; BicARE = derive { name="BicARE"; version="1.27.0"; sha256="19hslc78nijcs6gyxzzcd8856wa1gf5dsrvm4x6r9lprfrk7d7fb"; depends=[Biobase GSEABase multtest]; }; BioMVCClass = derive { name="BioMVCClass"; version="1.37.0"; sha256="1k4ba98cjaqhy33vsmflnwasi0vxr30dvj6861pz625m87fyp2g6"; depends=[Biobase graph MVCClass Rgraphviz]; }; -BioNet = derive { name="BioNet"; version="1.29.0"; sha256="0q86sfv29y8haq8zhxc93p7zl1nh8aq0yj31hvw8xx6g75xlapaz"; depends=[AnnotationDbi Biobase graph igraph RBGL]; }; +BioNet = derive { name="BioNet"; version="1.29.1"; sha256="1zgvzc0xkgjqdqphipcrq8wfn06sh48kwcx6149v9j0p0pnjwlww"; depends=[AnnotationDbi Biobase graph igraph RBGL]; }; BioSeqClass = derive { name="BioSeqClass"; version="1.27.0"; sha256="1pv7zibcrgbh7xlf2j04jc0m2ddlx8wa198ikvwi85qm09hrvmmk"; depends=[Biobase Biostrings class e1071 foreign ipred klaR nnet party randomForest rpart scatterplot3d tree]; }; Biobase = derive { name="Biobase"; version="2.29.1"; sha256="12cckssh7x4dd8vaapp5nfc5bfcqls8k3rblcfi17z5cpi0jply6"; depends=[BiocGenerics]; }; BiocCaseStudies = derive { name="BiocCaseStudies"; version="1.31.0"; sha256="05nj9i9y8clf406bjcflj8lsrp9x9iw6my1bdqnxg3nv2krp37xn"; depends=[Biobase]; }; -BiocCheck = derive { name="BiocCheck"; version="1.5.6"; sha256="0gpmrqvj31n73bqljf23wbsw3hp44hl3z1jhc2q86s3mw6hlcfip"; depends=[BiocInstaller biocViews codetools devtools graph httr knitr optparse]; }; -BiocGenerics = derive { name="BiocGenerics"; version="0.15.5"; sha256="0l8gqzqqnxx99ziamclsf4krmlyrq6fjzifh19xg7wqiyp59h41x"; depends=[]; }; -BiocInstaller = derive { name="BiocInstaller"; version="1.19.9"; sha256="14z4wgvry2mbbv847mlns6ff0irwfpyk1yfcxbr27wmlisk14wxz"; depends=[]; }; -BiocParallel = derive { name="BiocParallel"; version="1.3.47"; sha256="0y3nv2ff8r2mijhljrgkky6b1vyb22iywbq38rv1ac6kbbpf680p"; depends=[futile_logger snow]; }; -BiocStyle = derive { name="BiocStyle"; version="1.7.6"; sha256="1bdsz8s74wfgbq6afihi40ra1kljf8w8vxrgna34aks49908rxnd"; depends=[]; }; -Biostrings = derive { name="Biostrings"; version="2.37.2"; sha256="0j6701qgrnphsy9p34sf3s6d91j1zbd824zwv9rsfdmdffbkqq3b"; depends=[BiocGenerics IRanges S4Vectors XVector zlibbioc]; }; +BiocCheck = derive { name="BiocCheck"; version="1.5.8"; sha256="14q32ph6p5q6jp877j8g5nixdgpqwp7gbri4z6gv2q75pm28hh46"; depends=[BiocInstaller biocViews codetools devtools graph httr knitr optparse]; }; +BiocGenerics = derive { name="BiocGenerics"; version="0.15.6"; sha256="1pb7bpla9ngp04v4i8rjfd8ki827rhfc9dhz475s4v2375cakavr"; depends=[]; }; +BiocInstaller = derive { name="BiocInstaller"; version="1.19.14"; sha256="0kbpc5j6xm8w47hwmv2cff2njqfwnymlz9lskd8cdhl0dnr54kdn"; depends=[]; }; +BiocParallel = derive { name="BiocParallel"; version="1.3.52"; sha256="1xara11zz1s37rgrx77gzizqigl0lafx28b7cjpnqg9ci18yra01"; depends=[futile_logger snow]; }; +BiocStyle = derive { name="BiocStyle"; version="1.7.7"; sha256="1swxcgmh044azq1437lgapn5ji11mdr6s1gd7ivqshngy5bzfk6w"; depends=[]; }; +Biostrings = derive { name="Biostrings"; version="2.37.8"; sha256="1x1s2whb3ydkpchjifbrx3blb7ny6wyw0wzkdpdxf3vircj06652"; depends=[BiocGenerics IRanges S4Vectors XVector]; }; BitSeq = derive { name="BitSeq"; version="1.13.0"; sha256="1d397bcdyi3d35l1q1661spm3xhr7hqlsrjr5a2ybsjs3wqkf4fj"; depends=[IRanges Rsamtools S4Vectors zlibbioc]; }; BrainStars = derive { name="BrainStars"; version="1.13.0"; sha256="07wygi0fw0ilg404gx1ifswr61w6qlg8j0vkmnsr0migm70rgzzg"; depends=[Biobase RCurl RJSONIO]; }; BridgeDbR = derive { name="BridgeDbR"; version="1.3.0"; sha256="1z72dd7vvbsz6nc4asfc9qim6svxhmfbpi8f876d45kds2dfgyd5"; depends=[RCurl rJava]; }; -BrowserViz = derive { name="BrowserViz"; version="1.1.4"; sha256="1ilzf8k0bqrwidk01b7yyc0mhrif02j5a6aqi70mvxfy1dfj5yj0"; depends=[BiocGenerics httpuv jsonlite Rcpp]; }; +BrowserViz = derive { name="BrowserViz"; version="1.1.7"; sha256="12dxpibmx95jgc2nhnmigvd04jij0v3r7as62wzs2jx9wk73v20b"; depends=[BiocGenerics httpuv jsonlite Rcpp]; }; BrowserVizDemo = derive { name="BrowserVizDemo"; version="1.1.0"; sha256="1q04fsl3nxwlmzwxn27bgd66pcjy8sywsmpdny6206kl6rs2a9yk"; depends=[BiocGenerics BrowserViz httpuv jsonlite Rcpp]; }; -BubbleTree = derive { name="BubbleTree"; version="1.1.0"; sha256="1vyv0klid43jwcjkrsm6fmgqaigb1f76i0q3yc38qm5q8z55vx8n"; depends=[dplyr GenomicRanges geosphere IRanges mixdist plyr shape]; }; +BubbleTree = derive { name="BubbleTree"; version="1.99.1"; sha256="0na8q2pp9fq79b5bng5r4x8gh6qf3pda5d9g2wiwxn6wm2x337fp"; depends=[Biobase BiocGenerics BiocStyle biovizBase dplyr GenomicRanges ggplot2 gridExtra gtable gtools IRanges limma magrittr plyr rainbow RColorBrewer rgl scales WriteXLS]; }; BufferedMatrix = derive { name="BufferedMatrix"; version="1.33.0"; sha256="0db35771j5hnifn9avs2m1zazr07pga4ybr0vq5q5a1krg73kqn0"; depends=[]; }; BufferedMatrixMethods = derive { name="BufferedMatrixMethods"; version="1.33.0"; sha256="14x330kwv4fj1l974xr0djy6xvmi6z8z7wc3ri3d824rxc6glcld"; depends=[BufferedMatrix]; }; CAFE = derive { name="CAFE"; version="1.5.0"; sha256="1kzy0g0kwvzvlls316cpvwrvnv5m9vklzjjsiiykvfq1wd21s96f"; depends=[affy annotate Biobase biovizBase GenomicRanges ggbio ggplot2 gridExtra IRanges]; }; -CAGEr = derive { name="CAGEr"; version="1.11.0"; sha256="1rz1r55aji1av70c661d7czwipxah9507h5i9hcngy84ic1m72f1"; depends=[beanplot BSgenome data_table GenomicRanges IRanges Rsamtools rtracklayer som VGAM]; }; +CAGEr = derive { name="CAGEr"; version="1.11.1"; sha256="0s2qw9dcp833azd6im1hc28rfngrgnhx18g0livlvvvisp5iqs3v"; depends=[beanplot BSgenome data_table GenomicRanges IRanges Rsamtools rtracklayer som VGAM]; }; CALIB = derive { name="CALIB"; version="1.35.0"; sha256="08fgzq80ws4i6i1ppbqxdq3ba9qfdv4h0dyi08f9k91kfh1y31x4"; depends=[limma]; }; -CAMERA = derive { name="CAMERA"; version="1.25.1"; sha256="0g8w5g6kr1s039cyvxk3pkw1mbskrij2vlc657bbxvs6pb3h2mrm"; depends=[Biobase graph Hmisc igraph RBGL xcms]; }; -CAnD = derive { name="CAnD"; version="1.1.1"; sha256="1zyp4z86fda83wdhjfdh1ck9ynvdvrrxcvdlgld7h4x295r35r3s"; depends=[ggplot2 reshape]; }; +CAMERA = derive { name="CAMERA"; version="1.25.2"; sha256="1yydvqkzg0g79g4zd56pj34y87z7l9hik0js9ji6l4w1asiy68pi"; depends=[Biobase graph Hmisc igraph RBGL xcms]; }; +CAnD = derive { name="CAnD"; version="1.1.2"; sha256="0nhm8vpm7q7j6ga309l5g46kswzwxsz3limg77mwbgip95n9xz8z"; depends=[ggplot2 reshape]; }; CFAssay = derive { name="CFAssay"; version="1.3.0"; sha256="04zgyvm0rrs780z1vn4zzrh3w01lnhaywyn5ar6dvxcyxnr2y3qs"; depends=[]; }; CGEN = derive { name="CGEN"; version="3.3.0"; sha256="03sdyw6z5xw9ndwkwdli7bz6v0ki8w2slx30v5lgm31lqgl4lpf6"; depends=[mvtnorm survival]; }; CGHbase = derive { name="CGHbase"; version="1.29.0"; sha256="1a9j82jgppbajl6zkkymjdq61lgyrv8aavr2lzi88ipafmqajnvd"; depends=[Biobase marray]; }; @@ -83,21 +86,21 @@ CGHnormaliter = derive { name="CGHnormaliter"; version="1.23.0"; sha256="1rd7lbz CGHregions = derive { name="CGHregions"; version="1.27.0"; sha256="0ah7cxaq1qvgwxvgp8jzkwyzdqa4yji7ylhdq2whysvc73aciikg"; depends=[Biobase CGHbase]; }; CMA = derive { name="CMA"; version="1.27.0"; sha256="10bbmlyd8370dr1azrsljlslail5i9pwy8m524laqq85196lf6lv"; depends=[Biobase]; }; CNAnorm = derive { name="CNAnorm"; version="1.15.0"; sha256="13wraamvj1vr5iiwknz5g1jq8zmq3gqzcsphn156rmxivpkxmk8l"; depends=[DNAcopy]; }; -CNEr = derive { name="CNEr"; version="1.5.4"; sha256="10qvxgrp6g8yq7gn089v4aq3xyhvi21mml30aszwv718lq5xhcrz"; depends=[Biostrings DBI GenomeInfoDb GenomicAlignments GenomicRanges IRanges RSQLite rtracklayer S4Vectors XVector]; }; +CNEr = derive { name="CNEr"; version="1.5.5"; sha256="13w0r1w0547r3xj61ngqnq4vimylr9dzi9j8gjzb0av0vjb4mk9r"; depends=[Biostrings DBI GenomeInfoDb GenomicAlignments GenomicRanges IRanges RSQLite rtracklayer S4Vectors XVector]; }; CNORdt = derive { name="CNORdt"; version="1.11.0"; sha256="1c01ra85j04wdwaqzvc3qvva9sf878qcy4xaz8kxd6b49ringcia"; depends=[abind CellNOptR]; }; -CNORfeeder = derive { name="CNORfeeder"; version="1.9.0"; sha256="1d2lskj5vlg0ry3gkm61i1cahf6m9vg2599qj6v8z7w9wmp37cb7"; depends=[CellNOptR graph]; }; +CNORfeeder = derive { name="CNORfeeder"; version="1.9.2"; sha256="1kcaa7jd605pyr4i49wbxkmad4yhbyg5czlmgfn1dc864nb808xs"; depends=[CellNOptR graph]; }; CNORfuzzy = derive { name="CNORfuzzy"; version="1.11.0"; sha256="0kzlad2mkfvqxv4lv8hcc10cspcg31yp49r6pdn2vakif5gbpnz3"; depends=[CellNOptR nloptr]; }; CNORode = derive { name="CNORode"; version="1.11.0"; sha256="0cmv9s23pcd48fpzg92i5h2g10z49n091f2lnarldsay3sj8wlcy"; depends=[CellNOptR genalg]; }; CNTools = derive { name="CNTools"; version="1.25.0"; sha256="05k939z92mmqajirl4w872qnh59093dpxk6da5bcmrr43h65dn95"; depends=[genefilter]; }; -CNVPanelizer = derive { name="CNVPanelizer"; version="0.99.6"; sha256="1p5kffb7j8k38gj0h6qs6fhn9yj0i0ap2lbf7zmgi3h5jkx1pwks"; depends=[BiocParallel cn_mops exomeCopy foreach GenomicRanges ggplot2 IRanges matrixStats plyr Rsamtools xlsx]; }; +CNVPanelizer = derive { name="CNVPanelizer"; version="0.99.9"; sha256="0wppjv0rd1mf1d4r9pwlfnibfkzd6y5n3c9i1gdisxi4hq1dxay0"; depends=[exomeCopy foreach GenomicRanges ggplot2 IRanges NOISeq plyr Rsamtools xlsx]; }; CNVrd2 = derive { name="CNVrd2"; version="1.7.0"; sha256="18970q33dw51b7jas26dl2cr2ghwjxrllgmqykq0f50b55sv01p7"; depends=[DNAcopy ggplot2 gridExtra IRanges rjags Rsamtools VariantAnnotation]; }; CNVtools = derive { name="CNVtools"; version="1.63.0"; sha256="005xw4rbp4zdg78jhrq5l4201kq5889py0jh49kfjpk000nvvmj9"; depends=[survival]; }; CODEX = derive { name="CODEX"; version="1.1.0"; sha256="0k3ncnngblbx8hhv5p31dac4s9asjc8hddn4b0z20zkqncpgs16s"; depends=[GenomeInfoDb Rsamtools]; }; COHCAP = derive { name="COHCAP"; version="1.7.0"; sha256="0clr1jh4jnq54phsnl90zfqy1rqy9zpzffyqpziahpfifsaq0kl2"; depends=[WriteXLS]; }; -COMPASS = derive { name="COMPASS"; version="1.7.2"; sha256="0c83fsrmi7d2888pa3lnln42mlbnjgvpxw337vdh3dar1185a5b0"; depends=[abind clue data_table knitr plyr RColorBrewer Rcpp scales]; }; +COMPASS = derive { name="COMPASS"; version="1.7.3"; sha256="1zyhidq4qw8xgvamqq18sqysbjjymksy5w1n5kp9y1ihfglymbff"; depends=[abind clue data_table knitr plyr RColorBrewer Rcpp scales]; }; CORREP = derive { name="CORREP"; version="1.35.0"; sha256="0hlij2ch8r3lv130hvyshb82lfqz2c7kr56bka1ghmg6jp0xf1n6"; depends=[e1071]; }; COSNet = derive { name="COSNet"; version="1.3.3"; sha256="0l9sn0cki0mxacxv0bwp3cczcl8rscx8g3lnr0r448f13j8198f4"; depends=[]; }; -CRISPRseek = derive { name="CRISPRseek"; version="1.9.7"; sha256="164f12s8arg1460fcsaa9l3igav4vjn4niwwpxaj19i4iar1f3pw"; depends=[BiocGenerics Biostrings BSgenome seqinr]; }; +CRISPRseek = derive { name="CRISPRseek"; version="1.9.9"; sha256="1i727610w054ck1h81ydp6b71wzcyaxh906v1wp1j63hampm85k4"; depends=[BiocGenerics Biostrings BSgenome seqinr]; }; CRImage = derive { name="CRImage"; version="1.17.0"; sha256="1sab95gngwi7c333n9hnbd9fdvdy9i69pjpx5ic5799s7qr03llw"; depends=[aCGH DNAcopy e1071 EBImage foreach MASS sgeostat]; }; CSAR = derive { name="CSAR"; version="1.21.0"; sha256="1wn7zxmy5ssj2jkk2624j42yv67wdcigp5ksb6fc2kzpgnvqmxl1"; depends=[GenomeInfoDb GenomicRanges IRanges S4Vectors]; }; CSSP = derive { name="CSSP"; version="1.7.0"; sha256="1ydxj358sfaygzjvh0b042p7gymjyl7nr5cnxrh8c7x2mv2hdh4d"; depends=[]; }; @@ -106,25 +109,26 @@ Cardinal = derive { name="Cardinal"; version="1.1.0"; sha256="0n87rzcfvy5km17n2b Category = derive { name="Category"; version="2.35.1"; sha256="12y0mgr7lsdb4hhb95qgylxfbdjiqwv1gs9iknvgnyj37gdpxajz"; depends=[annotate AnnotationDbi Biobase BiocGenerics genefilter graph GSEABase Matrix RBGL]; }; CausalR = derive { name="CausalR"; version="0.99.12"; sha256="038raljgrdwsp8dzc5qbzbwr8j8n7dlwmx0jx8liq153l3nwp01p"; depends=[igraph]; }; CellNOptR = derive { name="CellNOptR"; version="1.15.0"; sha256="14x68i7wss44hmfihyqkw340lc0dpsccqsn1l2a0zs0gfkwgw3a5"; depends=[ggplot2 graph hash RBGL RCurl Rgraphviz XML]; }; -CexoR = derive { name="CexoR"; version="1.7.2"; sha256="1rhz97c8avmx9g3zf4vdzqb56v98dlh9xw74nywqvznn7wbq8rvp"; depends=[genomation GenomeInfoDb GenomicRanges idr IRanges RColorBrewer Rsamtools rtracklayer S4Vectors]; }; -ChAMP = derive { name="ChAMP"; version="1.7.0"; sha256="0ll50qyq9k8x4bv30dap6g6lpavh7diwxllm501jgg39kp956d08"; depends=[DNAcopy GenomicRanges impute IRanges limma marray minfi plyr preprocessCore RPMM sva wateRmelon]; }; -ChIPQC = derive { name="ChIPQC"; version="1.5.2"; sha256="0g630lpzwfbg5hgicg0s906a3a6gidswmidszx0hmn3479fah74m"; depends=[Biobase BiocGenerics BiocParallel chipseq DiffBind GenomicAlignments GenomicRanges ggplot2 gtools IRanges Nozzle_R1 reshape2 Rsamtools S4Vectors]; }; +CexoR = derive { name="CexoR"; version="1.7.4"; sha256="0mcb1pbq4dif3np9cr492g092vvw8ajc44znlbycac8214gjvhf9"; depends=[genomation GenomeInfoDb GenomicRanges idr IRanges RColorBrewer Rsamtools rtracklayer S4Vectors]; }; +ChAMP = derive { name="ChAMP"; version="1.7.1"; sha256="19m5crx8l5v3m2ikgs3yh3p07p5xxxy5v38158jxwbiybjpca5rx"; depends=[DNAcopy GenomicRanges impute IRanges limma marray minfi plyr preprocessCore RPMM sva wateRmelon]; }; +ChIPComp = derive { name="ChIPComp"; version="0.99.3"; sha256="0ln43j22i5w5fyy2lw8744dk23h19z3xpb82rz0j23gbgbai2mfg"; depends=[BiocGenerics GenomeInfoDb GenomicRanges IRanges limma Rsamtools rtracklayer S4Vectors]; }; +ChIPQC = derive { name="ChIPQC"; version="1.5.3"; sha256="0l5777ywn8pmkxkvkg2z3slb1bjphc31h6bj5cg48rw8ygxfnnh9"; depends=[Biobase BiocGenerics BiocParallel chipseq DiffBind GenomicAlignments GenomicRanges ggplot2 gtools IRanges Nozzle_R1 reshape2 Rsamtools S4Vectors]; }; ChIPXpress = derive { name="ChIPXpress"; version="1.11.0"; sha256="11aifr69ss1hakrhba985bwz6k1sqkpzvv7gnzn8cgqnzxyr2i6b"; depends=[affy biganalytics bigmemory Biobase frma GEOquery]; }; -ChIPpeakAnno = derive { name="ChIPpeakAnno"; version="3.3.2"; sha256="0ww3ddnvdc561lhz27h8n3ywi1xpx1cbsqk2i8m5rkpykkkkr2dh"; depends=[AnnotationDbi BiocGenerics BiocInstaller biomaRt Biostrings BSgenome GenomicFeatures GenomicRanges graph IRanges limma multtest RBGL VennDiagram]; }; -ChIPseeker = derive { name="ChIPseeker"; version="1.5.8"; sha256="14prgyzrhh5r6mmrf88my8a0r3n6m45rx2ik0ajlz76avjpzdawr"; depends=[AnnotationDbi BiocGenerics boot dplyr GenomeInfoDb GenomicFeatures GenomicRanges ggplot2 gplots gridBase gtools IRanges magrittr plotrix plyr RColorBrewer rtracklayer S4Vectors UpSetR]; }; +ChIPpeakAnno = derive { name="ChIPpeakAnno"; version="3.3.7"; sha256="0ndi7b451v49f3mxpj5i7zcrl00zglhavmwq2m14xfda1spx3qf7"; depends=[AnnotationDbi Biobase BiocGenerics BiocInstaller biomaRt Biostrings BSgenome DBI ensembldb GenomeInfoDb GenomicFeatures GenomicRanges graph IRanges limma matrixStats multtest RBGL regioneR S4Vectors VennDiagram]; }; +ChIPseeker = derive { name="ChIPseeker"; version="1.5.11"; sha256="1rjahr2gj1rqsm27w4xvz5g1snbv1x52n4fcfhv93r8waywk5j9m"; depends=[AnnotationDbi BiocGenerics boot dplyr GenomeInfoDb GenomicFeatures GenomicRanges ggplot2 gplots gridBase gtools IRanges magrittr plotrix plyr RColorBrewer rtracklayer S4Vectors UpSetR]; }; ChIPseqR = derive { name="ChIPseqR"; version="1.23.2"; sha256="1k1vbck7kjyzzgm0hg8hxpq6zfg71rca76q3998fcnnlzsmgvcf4"; depends=[BiocGenerics Biostrings fBasics GenomicRanges HilbertVis IRanges S4Vectors ShortRead timsac]; }; ChIPsim = derive { name="ChIPsim"; version="1.23.1"; sha256="13kniwvwa49n1kc9114ljn1fmzaiyb2nh33if596llql60p7nd23"; depends=[Biostrings IRanges ShortRead XVector]; }; ChemmineOB = derive { name="ChemmineOB"; version="1.7.1"; sha256="04agfsdzccsvvvis6vy1gg83gfs4nrph950v6bbzgk15ki32rsjz"; depends=[BH BiocGenerics Rcpp zlibbioc]; }; -ChemmineR = derive { name="ChemmineR"; version="2.21.7"; sha256="01riyjdjxnw1fybps1g5sbbcv1yn3mn222wg3w825m7lcb1hg13z"; depends=[BH BiocGenerics DBI digest ggplot2 Rcpp RCurl rjson]; }; +ChemmineR = derive { name="ChemmineR"; version="2.21.8"; sha256="0qsnj8l446mb0anhqgjh9s76ykqsgqqqmwap48lc56wq9dh9kg9v"; depends=[BH BiocGenerics DBI digest ggplot2 Rcpp RCurl rjson]; }; ChromHeatMap = derive { name="ChromHeatMap"; version="1.23.0"; sha256="1z0w201lbhsapx4p0gn9x65zxjbzh8g51jjfcvy61xrqbbyshwv1"; depends=[annotate AnnotationDbi Biobase BiocGenerics IRanges rtracklayer]; }; -ClassifyR = derive { name="ClassifyR"; version="1.3.4"; sha256="1bq4czpmz5s3xpgfhv355xjgwslswj5kpza5nz3ribdqs762943w"; depends=[Biobase BiocParallel locfit ROCR]; }; +ClassifyR = derive { name="ClassifyR"; version="1.3.16"; sha256="1yl766viqk31jy9kbl65abip81xn8yzl4byhvhmh9lbvl907zwpf"; depends=[Biobase BiocParallel locfit ROCR]; }; Clomial = derive { name="Clomial"; version="1.5.0"; sha256="1kxc0bgfrfj0bbx696513mn8n6vficdsd3ag5pqs5xz2bb7vx4qn"; depends=[matrixStats permute]; }; Clonality = derive { name="Clonality"; version="1.17.0"; sha256="1irb13wi5lq28nni0b89fy06vvjwpzigfdwfmzjscrmhzdysrfa6"; depends=[DNAcopy]; }; CoCiteStats = derive { name="CoCiteStats"; version="1.41.0"; sha256="0shp06qy8cvwq0723xc7qxrxv9qhkids3gq3aqqhlvn1s66nw7nq"; depends=[AnnotationDbi]; }; -CoGAPS = derive { name="CoGAPS"; version="2.3.2"; sha256="0jh5ij66x3isz67mj0jwypyshplk1l1p47n2hvwgq87xmjzv6c8p"; depends=[BH gplots RColorBrewer Rcpp]; }; +CoGAPS = derive { name="CoGAPS"; version="2.3.3"; sha256="1i9hh6n0lbvb5zn3hi0vxsdjkrz3n50dxgxcy4zcz4zxviamjiwv"; depends=[BH gplots RColorBrewer Rcpp]; }; CoRegNet = derive { name="CoRegNet"; version="1.5.0"; sha256="14yq1f005fcfmfp88h2fy05gdgbskjws11qbdh0ndx3sf93nzxm2"; depends=[arules igraph shiny]; }; CompGO = derive { name="CompGO"; version="1.5.0"; sha256="128ib7w0jxba0p32s796i864b73zjfxac56znd0v4wv4vxv3jiv6"; depends=[GenomicFeatures ggplot2 pathview pcaMethods RDAVIDWebService reshape2 Rgraphviz rtracklayer]; }; -ComplexHeatmap = derive { name="ComplexHeatmap"; version="1.2.6"; sha256="0n0bn69ms6ny42i0rvajhvrwivxd21spgk9s9xzqbln7758fvnw2"; depends=[circlize colorspace dendextend GetoptLong RColorBrewer]; }; +ComplexHeatmap = derive { name="ComplexHeatmap"; version="1.4.3"; sha256="0q3dwbf6gd28qyfslv9i5rimrr89dbm361wd1z6s3v8piinf88r0"; depends=[circlize colorspace dendextend GetoptLong GlobalOptions RColorBrewer]; }; ConsensusClusterPlus = derive { name="ConsensusClusterPlus"; version="1.23.0"; sha256="13iikfh234d2z4k487lb3shmnrfijygrf6gz3x481gba2psnbjyw"; depends=[Biobase cluster]; }; CopyNumber450k = derive { name="CopyNumber450k"; version="1.5.0"; sha256="0mjhmh4shgckv43zvg4yqr17jfi9p9xnc40fwy9fw9c4vjcfsvsj"; depends=[Biobase BiocGenerics DNAcopy minfi preprocessCore]; }; CopywriteR = derive { name="CopywriteR"; version="2.1.3"; sha256="0qhl3lbdf9fsm6hx45sk2nihikbzh08lbnwaz1as3wf5cx7zm08c"; depends=[BiocParallel chipseq data_table DNAcopy futile_logger GenomeInfoDb GenomicAlignments GenomicRanges gtools IRanges matrixStats Rsamtools S4Vectors]; }; @@ -135,32 +139,34 @@ DART = derive { name="DART"; version="1.17.1"; sha256="1z7lf4d9yjcyikq9j3348z5sx DASiR = derive { name="DASiR"; version="1.9.0"; sha256="0b3b7kmhsd6bb1s57c89h495j1ax6779wfca112fq6ba3z4dih3n"; depends=[Biostrings GenomicRanges IRanges XML]; }; DAVIDQuery = derive { name="DAVIDQuery"; version="1.29.0"; sha256="0gvm6qjx8y61nbnbz66md74pfc4awj4900pjr8q1m5sip5yzbxj2"; depends=[RCurl]; }; DBChIP = derive { name="DBChIP"; version="1.13.0"; sha256="0gk9kgmyp9540sq5gpbn77ii8rl5kjm0nxsr80r5cn4q9gsjyyis"; depends=[DESeq edgeR]; }; -DECIPHER = derive { name="DECIPHER"; version="1.15.0"; sha256="1kbdsqvkznzsk4ljy91r5ipndwxb8hhkm46qqkakgr24mia3yvl1"; depends=[Biostrings DBI IRanges RSQLite S4Vectors XVector]; }; +DECIPHER = derive { name="DECIPHER"; version="1.15.2"; sha256="17g0y27q686msgh3k8w65bc25k06f9p0ykfcaa3zil5phl9qxpz1"; depends=[Biostrings DBI IRanges RSQLite S4Vectors XVector]; }; DEDS = derive { name="DEDS"; version="1.43.0"; sha256="1z049ppkrbyp0xjpiygz5i6rbxbv3vvnvspwz2vv77495v7ykj6z"; depends=[]; }; DEGraph = derive { name="DEGraph"; version="1.21.0"; sha256="17f04qngcx8y4glr5wiryi8fifbla8fxh8nb6wagnrai5x6vhzis"; depends=[graph KEGGgraph lattice mvtnorm NCIgraph R_methodsS3 R_utils RBGL Rgraphviz rrcov]; }; DEGreport = derive { name="DEGreport"; version="1.5.0"; sha256="14mrfnmkik74yf5vml03x96brq7qlja2hpvndbffxr5a8ddb7117"; depends=[coda edgeR ggplot2 Nozzle_R1 plyr quantreg]; }; DEGseq = derive { name="DEGseq"; version="1.23.0"; sha256="0993f140wwv9z9l53f9g74x7l28bflxq7wdcbilfz7ijhh7isr7p"; depends=[qvalue samr]; }; DESeq = derive { name="DESeq"; version="1.21.0"; sha256="13f6phdf9g325dlpn38l7zrq3mzldhldil134acxi9p3l50bx23y"; depends=[Biobase BiocGenerics genefilter geneplotter lattice locfit MASS RColorBrewer]; }; -DESeq2 = derive { name="DESeq2"; version="1.9.26"; sha256="0b7w0csg7q5nqbrmc83rviiwhahq88zlqmxwlkz5g01w9zzkgc80"; depends=[Biobase BiocGenerics BiocParallel genefilter geneplotter GenomicRanges ggplot2 Hmisc IRanges locfit Rcpp RcppArmadillo S4Vectors SummarizedExperiment]; }; -DEXSeq = derive { name="DEXSeq"; version="1.15.10"; sha256="1sddciia2zxn5jxpzyrg3mxcrl28kcvxfbc6nk5dwrnqd9mj53jj"; depends=[Biobase BiocGenerics BiocParallel biomaRt DESeq2 genefilter geneplotter GenomicRanges hwriter IRanges RColorBrewer Rsamtools statmod stringr]; }; +DESeq2 = derive { name="DESeq2"; version="1.9.41"; sha256="1d7h95cyaqn63wnrf1avj8z72rsqssl0nnwvn8b61792sq75qfyw"; depends=[Biobase BiocGenerics BiocParallel genefilter geneplotter GenomicRanges ggplot2 Hmisc IRanges locfit Rcpp RcppArmadillo S4Vectors SummarizedExperiment]; }; +DEXSeq = derive { name="DEXSeq"; version="1.15.11"; sha256="19b2s0h8k2h6m83x4hyc3r1x3wdlm366gw4l3cmk9xj8kw540x3b"; depends=[Biobase BiocGenerics BiocParallel biomaRt DESeq2 genefilter geneplotter GenomicRanges hwriter IRanges RColorBrewer Rsamtools statmod stringr]; }; DFP = derive { name="DFP"; version="1.27.0"; sha256="0xcipbhfzvrpbm6dh2y3lbvfbwpn4wly32sssfm702zik5wm9dy1"; depends=[Biobase]; }; DMRcaller = derive { name="DMRcaller"; version="1.1.1"; sha256="1g7q7cwivvb0m2y4fixvbxp51zfag1jv66bdlai3gawr94pcx56y"; depends=[GenomicRanges IRanges Rcpp RcppRoll S4Vectors]; }; DMRcate = derive { name="DMRcate"; version="1.5.61"; sha256="0ss8zk2b1y83q49pv9fdm2rqw5hlnd189knfg1y8y0psfjhc9knp"; depends=[limma minfi]; }; DMRforPairs = derive { name="DMRforPairs"; version="1.5.0"; sha256="0d14qgx07xq7wa687a2znpfw0zcg8ccvxjawkjdbi6ayjwpb6zd7"; depends=[GenomicRanges Gviz R2HTML]; }; +DNABarcodes = derive { name="DNABarcodes"; version="0.99.6"; sha256="0m4ga55lm0dxdkqw4x1lkyjsp9lm5zj4nd043nqz5pfk0wn7j401"; depends=[BH Matrix Rcpp]; }; DNAcopy = derive { name="DNAcopy"; version="1.43.0"; sha256="1v1i4bfkblimdmazv29csqr46jaiv8lncihgywvq5wfn8ccr7xl9"; depends=[]; }; -DOQTL = derive { name="DOQTL"; version="1.3.0"; sha256="0g3nyamqdhjg8105kcq6nsgjgqzcxkp04194j82v1xb31baj53bg"; depends=[annotate annotationTools Biobase BiocGenerics biomaRt corpcor GenomicRanges hwriter IRanges mclust QTLRel Rsamtools RUnit S4Vectors XML]; }; -DOSE = derive { name="DOSE"; version="2.7.10"; sha256="093gyplk5ylwndynlcvm8s44ra8b6i6xrkqswc7zprndkawc4bgp"; depends=[AnnotationDbi ggplot2 GOSemSim igraph plyr qvalue reshape2 scales]; }; -DSS = derive { name="DSS"; version="2.8.1"; sha256="0nhrq05b5rsfdcxc96pdsppnfwz106k7xdxccgr0xjypbhm01hsk"; depends=[Biobase bsseq]; }; +DOQTL = derive { name="DOQTL"; version="1.3.1"; sha256="1yvpafff24kzwsbr0l21fcnccbj4khil1s5wsnd07kj23wnsakz6"; depends=[annotate annotationTools Biobase BiocGenerics biomaRt corpcor doParallel foreach GenomicRanges ggbio ggplot2 hwriter IRanges iterators mclust QTLRel regress rhdf5 Rsamtools RUnit VariantAnnotation XML]; }; +DOSE = derive { name="DOSE"; version="2.7.11"; sha256="0762rvy5sxz7789iyhksq6wzyyhfjjfk58mxnymkl6jg6ypvhy0w"; depends=[AnnotationDbi ggplot2 GOSemSim igraph plyr qvalue reshape2 scales]; }; +DSS = derive { name="DSS"; version="2.8.2"; sha256="076pkw1i5d3qi2k91ix5mrs6fjc2wknrzfanxyynhzv28mwm25gw"; depends=[Biobase bsseq]; }; DTA = derive { name="DTA"; version="2.15.0"; sha256="0amibwj5mnm2plkf3ys8sgy4lpwr60fnvika0psdrahgb4blmkzp"; depends=[LSD scatterplot3d]; }; DeMAND = derive { name="DeMAND"; version="0.99.9"; sha256="013zwa4flbsf9rwlnbzhg1sgfqwvrr01v9bhgpk73kx312zg30sg"; depends=[KernSmooth]; }; DeconRNASeq = derive { name="DeconRNASeq"; version="1.11.0"; sha256="0665chwpbs2pw753nb2x65cs9r9ghb5123bsrzrv6pz2p3ni8yz7"; depends=[ggplot2 limSolve pcaMethods]; }; DiffBind = derive { name="DiffBind"; version="1.15.3"; sha256="1akx65vi8razwpfxnvilh4x1vb8qbsfr2q8lygsb3imfrrb83q44"; depends=[amap edgeR GenomicAlignments GenomicRanges gplots IRanges lattice limma locfit RColorBrewer Rsamtools SummarizedExperiment systemPipeR zlibbioc]; }; +DiffLogo = derive { name="DiffLogo"; version="0.99.5"; sha256="1p2826lnr5xrf9va9h76r371fs3lgjrlkjjnyfvian6nz2xp9ibj"; depends=[cba]; }; DirichletMultinomial = derive { name="DirichletMultinomial"; version="1.11.2"; sha256="01wmvs7alq7gy1nmb5gdbglfs51qdhwysbmmjvh7yyhb8dqbvrj4"; depends=[IRanges S4Vectors]; }; DriverNet = derive { name="DriverNet"; version="1.9.0"; sha256="0visiafw9m7i0yy70fvnmdkhg9z946sg5hdl5vnvj8c6g3mfacxy"; depends=[]; }; DrugVsDisease = derive { name="DrugVsDisease"; version="2.9.0"; sha256="1wmw1r0x7kkmp47743aq0pp71wamnf5gsk6bhz6rdvswzb12iyqk"; depends=[affy annotate ArrayExpress BiocGenerics biomaRt GEOquery limma qvalue RUnit xtable]; }; DupChecker = derive { name="DupChecker"; version="1.7.0"; sha256="02wwwnx3w8rxiassd62xr295paw8py9pqsk1396qb5k773l6bfxv"; depends=[R_utils RCurl]; }; DynDoc = derive { name="DynDoc"; version="1.47.0"; sha256="0gpmhqav4dx8p86pkh18fpmlki60zqaz00m2zhziiawigbrz41ph"; depends=[]; }; -EBImage = derive { name="EBImage"; version="4.11.7"; sha256="1zddydckv3zy8wf0wh34g5yg8s1p255h66ym6lnw3l5id7v32wz8"; depends=[abind BiocGenerics fftwtools jpeg locfit png tiff]; }; +EBImage = derive { name="EBImage"; version="4.11.19"; sha256="1m7753dk5ddya53zm2rajhmn4x7kmag38pnbl1q1jnmwl0nr6vwp"; depends=[abind BiocGenerics fftwtools jpeg locfit png tiff]; }; EBSeq = derive { name="EBSeq"; version="1.9.4"; sha256="01pzjhqx61005jbw3l3m24h10225fkml9889aqvxdxzv5n4rvc03"; depends=[blockmodeling gplots testthat]; }; EBSeqHMM = derive { name="EBSeqHMM"; version="1.3.1"; sha256="0lyf363f1wfgacrj5cyq8n3f3ssl5q400mn2q94cpai6k0qmvgs1"; depends=[EBSeq]; }; EBarrays = derive { name="EBarrays"; version="2.33.0"; sha256="1zvfqf49chiks5vmj5ki89pvy14bm1cman47n3ybba1gg8z8mw94"; depends=[Biobase cluster lattice]; }; @@ -168,36 +174,39 @@ EBcoexpress = derive { name="EBcoexpress"; version="1.13.0"; sha256="0fl0a7xasqc EDASeq = derive { name="EDASeq"; version="2.3.2"; sha256="0l1mmpy71pqqmqnx4xxn1v0kvsk0cfik98qszczh1ag8wyi1ky3m"; depends=[AnnotationDbi aroma_light Biobase BiocGenerics biomaRt Biostrings DESeq GenomicFeatures GenomicRanges IRanges Rsamtools ShortRead]; }; EDDA = derive { name="EDDA"; version="1.7.0"; sha256="0dyyhnc9v232njqnrcaq78g2m1qws30qcf6bsswq2di235ymk2g0"; depends=[baySeq DESeq edgeR Rcpp ROCR snow]; }; ELBOW = derive { name="ELBOW"; version="1.5.0"; sha256="0lnc5hw2x4p9yd561w9dwplf7q2slcaghxsh5796bmyxjxhxanpy"; depends=[]; }; -ELMER = derive { name="ELMER"; version="1.00.0"; sha256="1kb7rixq02cc0cwm52acji69p89jq07zsagg7a8qva6gshs94k86"; depends=[GenomeInfoDb GenomicFeatures GenomicRanges ggplot2 gridExtra IRanges minfi reshape S4Vectors]; }; -EMDomics = derive { name="EMDomics"; version="1.1.2"; sha256="14gh59gq0wjhkmrclpmlixn3mbabwwq01bwq6hilf9s2s0i8qkpv"; depends=[BiocParallel CDFt emdist ggplot2 matrixStats preprocessCore]; }; -ENCODExplorer = derive { name="ENCODExplorer"; version="1.1.3"; sha256="054cm1ldas26gv4xn16w3i25kykwnikj4s83g7sxxdij93m5rmlb"; depends=[jsonlite RSQLite]; }; +ELMER = derive { name="ELMER"; version="1.1.1"; sha256="0f777sm920175g0ppq4cc0bn83wcdy12by5nkslxh3n97prqclhm"; depends=[GenomeInfoDb GenomicFeatures GenomicRanges ggplot2 gridExtra IRanges minfi reshape S4Vectors]; }; +EMDomics = derive { name="EMDomics"; version="1.1.3"; sha256="0jrgz3rbg9ap33n0wigzc76vivvnd5hiv1pfhfyymir76qd9jhar"; depends=[BiocParallel CDFt emdist ggplot2 matrixStats preprocessCore]; }; +ENCODExplorer = derive { name="ENCODExplorer"; version="1.1.6"; sha256="12jfibll1zyf14nb3fhkffj0dw6hxd4bjsf43jzwhnnn2cxsbrqq"; depends=[jsonlite RSQLite]; }; ENVISIONQuery = derive { name="ENVISIONQuery"; version="1.17.0"; sha256="1dnlw62hwysij63yc856c2sncgfwdq0rpmcds6i6wigdcfd21w8q"; depends=[rJava XML]; }; -ENmix = derive { name="ENmix"; version="1.1.7"; sha256="0p5ywjnm0xknr6k7bnkhcn69870f5wwlq70yfqiah7syqmyim67d"; depends=[Biobase doParallel foreach geneplotter impute MASS minfi preprocessCore sva wateRmelon]; }; +ENmix = derive { name="ENmix"; version="1.2.0"; sha256="06l732fipnrhbmr6wylv3g289n2zj1dfazqgppxgvnmf3wh6308r"; depends=[Biobase doParallel foreach geneplotter impute MASS minfi preprocessCore sva wateRmelon]; }; EasyqpcR = derive { name="EasyqpcR"; version="1.11.1"; sha256="0s2jyg6b14wbyl0c1n89c7bi7p88g7s1rz8d830p9hh2x75ly6zj"; depends=[gWidgetsRGtk2 matrixStats plotrix plyr]; }; -EnrichmentBrowser = derive { name="EnrichmentBrowser"; version="1.99.6"; sha256="17xchpf0ddxihz6p0lm0nhhyrbaahcar1phl842b30ccv877ibrs"; depends=[AnnotationDbi Biobase biocGraph biomaRt ComplexHeatmap DESeq2 EDASeq edgeR geneplotter graph GSEABase hwriter KEGGgraph KEGGREST limma MASS mixtools neaGUI npGSEA PathNet pathview ReportingTools Rgraphviz S4Vectors safe SPIA stringr SummarizedExperiment topGO]; }; +EnrichedHeatmap = derive { name="EnrichedHeatmap"; version="0.99.1"; sha256="1i0lzsbclvfk02kqlsx3p38wwlzf2f6dr29049gpr2xwlq9hdmnh"; depends=[ComplexHeatmap GenomicRanges IRanges matrixStats]; }; +EnrichmentBrowser = derive { name="EnrichmentBrowser"; version="1.99.9"; sha256="1njrmz2cgwcafdpvf47bwlb47m6lcasc3pg029ngdxh8cympd2yj"; depends=[AnnotationDbi Biobase biocGraph biomaRt ComplexHeatmap DESeq2 EDASeq edgeR geneplotter graph GSEABase hwriter KEGGgraph KEGGREST limma MASS mixtools neaGUI npGSEA PathNet pathview ReportingTools Rgraphviz S4Vectors safe SparseM SPIA stringr SummarizedExperiment topGO]; }; ExiMiR = derive { name="ExiMiR"; version="2.11.0"; sha256="1gmfrn3jq4pz5wmijywhxr0kx79534fhrfnqyhjmqq3s9sjn2cbh"; depends=[affy affyio Biobase limma preprocessCore]; }; ExpressionView = derive { name="ExpressionView"; version="1.21.0"; sha256="026w9f119j26c1078nwg4rhfc54wlb3i56iy8bi0cjpvbm4p698f"; depends=[AnnotationDbi bitops caTools eisa isa2]; }; -FEM = derive { name="FEM"; version="2.3.0"; sha256="112mmah33ar36cpqjwanrfyhdwjfympnvmxwirxbbnk0nfp9cvpr"; depends=[AnnotationDbi corrplot igraph impute limma marray Matrix]; }; -FGNet = derive { name="FGNet"; version="3.3.3"; sha256="026spxqdwwz4654fv4k6lhafckfkiqcryr3az0kcfnn6fzaji2g9"; depends=[hwriter igraph plotrix png R_utils RColorBrewer reshape2 XML]; }; +FEM = derive { name="FEM"; version="2.5.2"; sha256="03mxw6rx23cqw50jnbrn6mbjzm83f2p0gdf7zhn3ra0852inj7qg"; depends=[AnnotationDbi BiocGenerics corrplot graph igraph impute limma marray Matrix]; }; +FGNet = derive { name="FGNet"; version="3.3.6"; sha256="1cq2ishqf9cbw42n5agq6bwas0vvh6b9m474cn4g29q6rw6y490f"; depends=[hwriter igraph plotrix png R_utils RColorBrewer reshape2 XML]; }; FISHalyseR = derive { name="FISHalyseR"; version="1.3.0"; sha256="0xnmww7ldyxghq7mfjc3zhx1qahskmny3088ar0mj9v4iz4a987q"; depends=[abind EBImage]; }; FRGEpistasis = derive { name="FRGEpistasis"; version="1.5.0"; sha256="1vvcphgirvghzjvic5yq6nl229ryc0y4kp5qd25kgspbcgblg01q"; depends=[fda MASS]; }; +FindMyFriends = derive { name="FindMyFriends"; version="0.99.1"; sha256="0hmpcwp198i8mh3knklc9fwxr422x8dfbyjbf8j7xkr4x31m65y7"; depends=[Biobase BiocParallel Biostrings digest dplyr filehash ggdendro ggplot2 gtable igraph IRanges kebabs Matrix Rcpp reshape2 S4Vectors]; }; FlowRepositoryR = derive { name="FlowRepositoryR"; version="1.1.1"; sha256="1xxljbdbvxg1dbm82r86frw2bskmfrl6rv98xz0z4jfc0w4ag3pd"; depends=[RCurl XML]; }; FlowSOM = derive { name="FlowSOM"; version="1.1.0"; sha256="0k5pw46dbhm6nssr5szj251v3479xgky2iipihrdvp5lr5lhxilq"; depends=[BiocGenerics ConsensusClusterPlus flowCore igraph tsne]; }; FourCSeq = derive { name="FourCSeq"; version="1.3.5"; sha256="1mjvgi1cbfi5brl7l0v8026hjjksh81kpslm6w6i6b1llcn1sf65"; depends=[Biobase Biostrings DESeq2 fda GenomicAlignments GenomicRanges ggbio ggplot2 gtools LSD Matrix reshape2 Rsamtools rtracklayer SummarizedExperiment]; }; -FunciSNP = derive { name="FunciSNP"; version="1.11.0"; sha256="19kl14yzqr59ngrd5ygr858zbvx23rihlr4vw5bfdy9cgwlvlzab"; depends=[AnnotationDbi ChIPpeakAnno GenomicRanges ggplot2 IRanges plyr reshape Rsamtools rtracklayer scales snpStats VariantAnnotation]; }; +FunciSNP = derive { name="FunciSNP"; version="1.11.1"; sha256="1lc4dbbv5bcdk4zs80sxfqnwnm424i6qjmv5bcslblxblfnypmvv"; depends=[AnnotationDbi ChIPpeakAnno GenomicRanges ggplot2 IRanges plyr reshape Rsamtools rtracklayer scales snpStats VariantAnnotation]; }; GENE_E = derive { name="GENE.E"; version="1.9.0"; sha256="10c9mw9f619z2ai43qvagj7p1lsqpv90z8vzsyyxym614lvlqfzm"; depends=[RCurl rhdf5]; }; -GENESIS = derive { name="GENESIS"; version="1.1.0"; sha256="01d3yc5rc4y22znr7zf980m458qvnmjxpml353k7bkwyz6xyn0fj"; depends=[GWASTools]; }; +GENESIS = derive { name="GENESIS"; version="1.1.3"; sha256="1wjnhkq7kpfynzx09zgwri7cvvyymzs8ifqwl6c1wzfzlr119ygs"; depends=[gdsfmt GWASTools]; }; GEOmetadb = derive { name="GEOmetadb"; version="1.29.0"; sha256="1s9x3dbh61xisk5hwzqv3991savygdcwv5cww447w4bfgwffzplg"; depends=[GEOquery RSQLite]; }; -GEOquery = derive { name="GEOquery"; version="2.35.5"; sha256="0c1jyvl5sm0yjlk4ji8qjwxm4rqakmjz04aq6m8biyf04cdd2crk"; depends=[Biobase RCurl XML]; }; +GEOquery = derive { name="GEOquery"; version="2.35.7"; sha256="11a7zihni1b7bfqw9l1bqn3p4spi74xxrjyppr3cxgfbgqz9rxgs"; depends=[Biobase RCurl XML]; }; +GEOsearch = derive { name="GEOsearch"; version="0.99.1"; sha256="0d3vpl52c2vdsdqg0s942cfv08wc3aa03dw3pggiz0hwrssf77n9"; depends=[]; }; GEOsubmission = derive { name="GEOsubmission"; version="1.21.0"; sha256="1rr8k4myw7jibibclphj63hp4byk3v0cg37vnyc5b0iacdp8s9gn"; depends=[affy Biobase]; }; GEWIST = derive { name="GEWIST"; version="1.13.0"; sha256="1mlzyjggv0rh9xk9pifshhdri3vapvzk2h47g75wx57yfapamcwn"; depends=[car]; }; -GGBase = derive { name="GGBase"; version="3.31.2"; sha256="0xbkj7dr7xaq3pj4jph5ii78c4ax5b0p6jqmvkv2hr3j70qk3mh2"; depends=[AnnotationDbi Biobase BiocGenerics digest genefilter GenomicRanges IRanges limma Matrix S4Vectors snpStats SummarizedExperiment]; }; -GGtools = derive { name="GGtools"; version="5.5.2"; sha256="13zgfribckaxp2gl15fg1bds9rw9ysbf87mhzxm8qh1rqgkf8rbn"; depends=[AnnotationDbi biglm Biobase BiocGenerics Biostrings bit data_table ff GenomeInfoDb GenomicRanges GGBase ggplot2 Gviz hexbin IRanges iterators reshape2 ROCR Rsamtools rtracklayer S4Vectors snpStats VariantAnnotation]; }; +GGBase = derive { name="GGBase"; version="3.31.3"; sha256="0hzksik9r853qfaqlbahymh6n3rs6hhbccc0hngckplph3hwranr"; depends=[AnnotationDbi Biobase BiocGenerics digest genefilter GenomicRanges IRanges limma Matrix S4Vectors snpStats SummarizedExperiment]; }; +GGtools = derive { name="GGtools"; version="5.5.4"; sha256="17lk74p7ci9llv9n7qqh5c7bpnrgy25k0svz52zpr9jajm0pwfcg"; depends=[AnnotationDbi biglm Biobase BiocGenerics Biostrings bit data_table ff GenomeInfoDb GenomicRanges GGBase ggplot2 Gviz hexbin IRanges iterators reshape2 ROCR Rsamtools rtracklayer S4Vectors snpStats VariantAnnotation]; }; GLAD = derive { name="GLAD"; version="2.33.0"; sha256="19db59ry832vrbk86p1bppr52mwri2pz8iwx5ibg18pxr7pw6jw7"; depends=[]; }; GOFunction = derive { name="GOFunction"; version="1.17.0"; sha256="0scjk4zlfrqv3z6ii0bvmhj3d880xyc2p5f4hqmfqn6cml0d6ncj"; depends=[AnnotationDbi Biobase graph Rgraphviz SparseM]; }; GOSemSim = derive { name="GOSemSim"; version="1.27.4"; sha256="0czg7qincsv001caqsswyz94hzj0ykjy1qhva9rg5zhpfjwdahwq"; depends=[AnnotationDbi Rcpp]; }; GOSim = derive { name="GOSim"; version="1.7.0"; sha256="0dzx6nnd8p4p5v5rsmbpw6wl0i1jq3n4s0qc8z4xnp2n2757r2z4"; depends=[annotate AnnotationDbi cluster corpcor flexmix graph Matrix RBGL Rcpp topGO]; }; -GOTHiC = derive { name="GOTHiC"; version="1.5.4"; sha256="15kn6v7q3n188zp2vmkqc3kzxf9645zycl47fr5qw9x6ymqhngbp"; depends=[BiocGenerics Biostrings BSgenome data_table GenomicRanges ggplot2 IRanges rtracklayer S4Vectors ShortRead]; }; +GOTHiC = derive { name="GOTHiC"; version="1.5.5"; sha256="0y1rfsghb9hxvy26r8i4fi94gykprcx4nxqpfkdz03pxrz0y3vbr"; depends=[BiocGenerics Biostrings BSgenome data_table GenomicRanges ggplot2 IRanges rtracklayer S4Vectors ShortRead]; }; GOexpress = derive { name="GOexpress"; version="1.3.2"; sha256="151hqhyjaq3ggigibw8fc1zb09578p69ih09rj3irf0avpai6rbi"; depends=[Biobase biomaRt ggplot2 gplots randomForest RColorBrewer stringr VennDiagram]; }; GOstats = derive { name="GOstats"; version="2.35.1"; sha256="1almz6gc2xm3njz8pjvynpnniz7xdd8z5293cfvx91v11lz70v7f"; depends=[annotate AnnotationDbi AnnotationForge Biobase Category graph RBGL]; }; GOsummaries = derive { name="GOsummaries"; version="2.3.0"; sha256="09c4grz9ljwrz37yv9k6gna9zxk708vxfz2190xz7za0mrql1k3k"; depends=[ggplot2 gProfileR gtable limma plyr Rcpp reshape2]; }; @@ -223,12 +232,12 @@ GeneticsDesign = derive { name="GeneticsDesign"; version="1.37.0"; sha256="08awf GeneticsPed = derive { name="GeneticsPed"; version="1.31.0"; sha256="17fs4gvirji3qp9ik480jpz6qrbq209sjhn57ipkaafvx7rw5j4i"; depends=[gdata genetics MASS]; }; GenoView = derive { name="GenoView"; version="1.3.0"; sha256="09k9xjmx3qmsfr3a4vrfgs73r0xsymf5m4gl0zjjk4cnfk7bs41v"; depends=[biovizBase GenomicRanges ggbio ggplot2 gridExtra]; }; GenomeGraphs = derive { name="GenomeGraphs"; version="1.29.0"; sha256="0kl2gapg7hnl4zfsamb3vwmj7z0vag7vd8viwh0pwqj0pd45dswa"; depends=[biomaRt]; }; -GenomeInfoDb = derive { name="GenomeInfoDb"; version="1.5.9"; sha256="1mnskpj4qb6fyg7a6qkzs6cmxzn0bjff0zzgnp17bm94vx0334zh"; depends=[BiocGenerics IRanges S4Vectors]; }; -GenomicAlignments = derive { name="GenomicAlignments"; version="1.5.12"; sha256="0p1vnkh5h8w69is254zkzpj5y2a9c2yc2s7lvqhkf861x6fgkz1l"; depends=[BiocGenerics BiocParallel Biostrings GenomeInfoDb GenomicRanges IRanges Rsamtools S4Vectors SummarizedExperiment]; }; -GenomicFeatures = derive { name="GenomicFeatures"; version="1.21.14"; sha256="0lnkidki4pl40878nd6bzswkdxgkz75nn052693glcvzw3qm6wg5"; depends=[AnnotationDbi Biobase BiocGenerics biomaRt Biostrings DBI GenomeInfoDb GenomicRanges IRanges RCurl RSQLite rtracklayer S4Vectors]; }; -GenomicFiles = derive { name="GenomicFiles"; version="1.5.4"; sha256="13lglgxkqsxgi453dk56ry7amnv6lyddy74fnhhsqinj5ip9k3vw"; depends=[BiocGenerics BiocParallel GenomicAlignments GenomicRanges IRanges Rsamtools rtracklayer S4Vectors SummarizedExperiment]; }; -GenomicInteractions = derive { name="GenomicInteractions"; version="1.3.6"; sha256="0003hd22c3nfdb5h84pvd754gcpj3b6flzg8nhf7d0s99nzddr6a"; depends=[BiocGenerics data_table dplyr GenomeInfoDb GenomicRanges ggplot2 gridExtra Gviz igraph IRanges Rsamtools rtracklayer S4Vectors stringr]; }; -GenomicRanges = derive { name="GenomicRanges"; version="1.21.17"; sha256="1hp2knf1qnph62480hzmn68lxp193x4zv3b0yx2a7khj4sgy7566"; depends=[BiocGenerics GenomeInfoDb IRanges S4Vectors XVector]; }; +GenomeInfoDb = derive { name="GenomeInfoDb"; version="1.5.16"; sha256="1fgmvx9w2s14nnnv8397lxgzlhsm9rr26l0w2mi8x098kb6h7ih2"; depends=[BiocGenerics IRanges S4Vectors]; }; +GenomicAlignments = derive { name="GenomicAlignments"; version="1.5.18"; sha256="0zxw1mss8jaqimhamwqbziyzq90f5fijinmnqkmn5ndiy3h4krfi"; depends=[BiocGenerics BiocParallel Biostrings GenomeInfoDb GenomicRanges IRanges Rsamtools S4Vectors SummarizedExperiment]; }; +GenomicFeatures = derive { name="GenomicFeatures"; version="1.21.30"; sha256="1n2r0n1h5716jjfkhlp7f27fq25rbj2dh6f8gaihkbjk4h92bdrd"; depends=[AnnotationDbi Biobase BiocGenerics biomaRt Biostrings DBI GenomeInfoDb GenomicRanges IRanges RCurl RSQLite rtracklayer S4Vectors XVector]; }; +GenomicFiles = derive { name="GenomicFiles"; version="1.5.8"; sha256="1zc8aazay2xix3xrs8kbqlz0lz9km54l58ghy64c4xvdjlbjwsy5"; depends=[BiocGenerics BiocParallel GenomicAlignments GenomicRanges IRanges Rsamtools rtracklayer S4Vectors SummarizedExperiment]; }; +GenomicInteractions = derive { name="GenomicInteractions"; version="1.3.9"; sha256="081gfay79qr8h98l7j481wc051pdpdc2c7g1r2136xv2m39x67i7"; depends=[BiocGenerics data_table dplyr GenomeInfoDb GenomicRanges ggplot2 gridExtra Gviz igraph IRanges Rsamtools S4Vectors stringr]; }; +GenomicRanges = derive { name="GenomicRanges"; version="1.21.29"; sha256="1rlpgwlpmn0p5xyb5igwm1glq9g8lqhl27qimn58n4qffcdk1v6x"; depends=[BiocGenerics GenomeInfoDb IRanges S4Vectors XVector]; }; GenomicTuples = derive { name="GenomicTuples"; version="1.3.1"; sha256="0i91qs1c84lyh0irhgnbnnvag0j3f48gfxxndk5x0yjf9kpa0hca"; depends=[Biobase BiocGenerics GenomeInfoDb GenomicRanges IRanges Rcpp S4Vectors]; }; Genominator = derive { name="Genominator"; version="1.23.0"; sha256="03pacbd3d5q7ykrflg258zcf8yfzm8kc976aw3d38q7agkia69h2"; depends=[BiocGenerics DBI GenomeGraphs IRanges RSQLite]; }; GlobalAncova = derive { name="GlobalAncova"; version="3.37.0"; sha256="1j35r39plsxlkla2bv7wvg0if5gs2mfy71g6zb65g6ml5cqws45r"; depends=[annotate AnnotationDbi corpcor globaltest]; }; @@ -237,64 +246,66 @@ GraphAT = derive { name="GraphAT"; version="1.41.0"; sha256="1mjd54zy4l7ivy347zn GraphAlignment = derive { name="GraphAlignment"; version="1.33.0"; sha256="14zxbw8cj12wr6c2a0a6mfskr9sqf6cdfyz0ccbzy91d1lnrxzdf"; depends=[]; }; GraphPAC = derive { name="GraphPAC"; version="1.11.0"; sha256="1p0rkc1qz0yf0lxyjfvrpd7nqky855kmhb1pdwxg3ckifnypw5mc"; depends=[igraph iPAC RMallow TSP]; }; GreyListChIP = derive { name="GreyListChIP"; version="1.1.1"; sha256="0kbl9m37aiyv6yrqg4z352k7dpdpxm7yywymjfa9gdd0rv1cy401"; depends=[BSgenome GenomeInfoDb GenomicAlignments GenomicRanges MASS Rsamtools rtracklayer]; }; -Gviz = derive { name="Gviz"; version="1.13.3"; sha256="0qbad4r0k7j1z4gg785iv57azp9ljlxv5jngnk9kfif05rd3k7v3"; depends=[AnnotationDbi Biobase BiocGenerics biomaRt Biostrings biovizBase BSgenome digest GenomeInfoDb GenomicAlignments GenomicFeatures GenomicRanges IRanges lattice latticeExtra matrixStats RColorBrewer Rsamtools rtracklayer S4Vectors XVector]; }; +Guitar = derive { name="Guitar"; version="0.99.14"; sha256="1wwwhham0ljn5bc8r055jz7y08vvwpa2w9vi88racsvqywlq12d3"; depends=[GenomicAlignments GenomicFeatures GenomicRanges ggplot2 IRanges Rsamtools rtracklayer]; }; +Gviz = derive { name="Gviz"; version="1.13.7"; sha256="0slr4gx35ri66ilx5d4qqi8s08hv64lmxrnfcb2gsny16hb8yqcl"; depends=[AnnotationDbi Biobase BiocGenerics biomaRt Biostrings biovizBase BSgenome digest GenomeInfoDb GenomicAlignments GenomicFeatures GenomicRanges IRanges lattice latticeExtra matrixStats RColorBrewer Rsamtools rtracklayer S4Vectors XVector]; }; HCsnip = derive { name="HCsnip"; version="1.9.0"; sha256="14f881v776xn8lw4lvjc26s72laxs9zph902875f76ykbzygayd9"; depends=[Biobase clusterRepro coin fpc impute randomForestSRC sigaR sm survival]; }; -HDTD = derive { name="HDTD"; version="1.3.3"; sha256="0b9z2bkfislxn9w5bjcd5jcpby2yq5bhn6zxvylngjwqz98v30hl"; depends=[]; }; +HDTD = derive { name="HDTD"; version="1.3.4"; sha256="0hzj2k4dlqy8i6j98gxqcb1kcvh46vz9fq47vjijgnskczzwyk39"; depends=[]; }; HELP = derive { name="HELP"; version="1.27.0"; sha256="1n2fj316ha2l941biyr9d56pry6n39drwa820rgyrwd116rzx79d"; depends=[Biobase]; }; HEM = derive { name="HEM"; version="1.41.0"; sha256="0qi6q305p0vdhyah3860dpd3z0lyyn6wn5x0m3mj3p739pk288ik"; depends=[Biobase]; }; -HIBAG = derive { name="HIBAG"; version="1.5.0"; sha256="0rrpz4brij408szfmzv7gpk0hrhikjyx061gkamb02ry1my722j1"; depends=[]; }; +HIBAG = derive { name="HIBAG"; version="1.5.1"; sha256="18j40pzw46m7plb1kqmcwm1g2bpa0wh58kqih8in6xrs81hq34w0"; depends=[]; }; HMMcopy = derive { name="HMMcopy"; version="1.11.0"; sha256="1lcddw963lryks9xc0faw8x0pin4k4r9zdfl5iqi5mbrzn5pp7h3"; depends=[geneplotter IRanges]; }; HTSFilter = derive { name="HTSFilter"; version="1.9.0"; sha256="1y5k26jc2gfrwp0l7jsx6br70hsxqhgdvmhbsagsampl67yjw6by"; depends=[Biobase DESeq DESeq2 edgeR]; }; HTSanalyzeR = derive { name="HTSanalyzeR"; version="2.21.0"; sha256="1drmd4jycb85wg857daj3jpkj9gxa5asyv2sd873daj03q9c1yld"; depends=[AnnotationDbi biomaRt BioNet cellHTS2 graph GSEABase igraph RankProd]; }; -HTSeqGenie = derive { name="HTSeqGenie"; version="3.19.0"; sha256="0i9h6qn2fpcp6wy0ssnls8x6nz4azs93wb4qq5bpmps8wkp0na36"; depends=[BiocGenerics BiocParallel Biostrings Cairo chipseq GenomicAlignments GenomicFeatures GenomicRanges gmapR hwriter IRanges Rsamtools rtracklayer ShortRead VariantAnnotation VariantTools]; }; +HTSeqGenie = derive { name="HTSeqGenie"; version="3.19.1"; sha256="0kv9x90zspxwjz4hx81y6fi8nsin367zmfpzrz5kc6an49s94xi4"; depends=[BiocGenerics BiocParallel Biostrings Cairo chipseq GenomicAlignments GenomicFeatures GenomicRanges gmapR hwriter IRanges Rsamtools rtracklayer ShortRead VariantAnnotation VariantTools]; }; HTqPCR = derive { name="HTqPCR"; version="1.23.0"; sha256="0zp7jbnh5zbrqaq84q1146sb3qg8n0kz6m9v5mi8a9l2fcvg2q09"; depends=[affy Biobase gplots limma RColorBrewer]; }; Harshlight = derive { name="Harshlight"; version="1.41.0"; sha256="12wpfg785dfn5gwp014dfzk9x8zqvr9qrrs0pq32by576knida5z"; depends=[affy altcdfenvs Biobase]; }; -Heatplus = derive { name="Heatplus"; version="2.15.1"; sha256="1jcrajxvll0hhrsq8qvvyc1sj1nd3dm06n8q25qi9nacnfi865y7"; depends=[]; }; -HiTC = derive { name="HiTC"; version="1.13.2"; sha256="1bkd680n81cd7sdji6gjjljxhlbsrdgn5hwpmi37i83hnryfgf5x"; depends=[Biostrings GenomeInfoDb GenomicRanges IRanges Matrix RColorBrewer rtracklayer]; }; -HilbertCurve = derive { name="HilbertCurve"; version="0.99.1"; sha256="0nws4y2nc726z6igj3fdkrpv9l4i694g17nz3z1r006ss78gzzf2"; depends=[GenomicRanges HilbertVis IRanges png]; }; +Heatplus = derive { name="Heatplus"; version="2.15.2"; sha256="1hjzyb1lyvw6gaqlpx45znadr5f317pmsk169a0h0ad9nyk2629p"; depends=[RColorBrewer]; }; +HiTC = derive { name="HiTC"; version="1.13.3"; sha256="1db4ijhgqwmcbgxwprf02l267g8jb9z8b9s8vxfw4s7pk5mpqm4s"; depends=[Biostrings GenomeInfoDb GenomicRanges IRanges Matrix RColorBrewer rtracklayer]; }; +HilbertCurve = derive { name="HilbertCurve"; version="0.99.2"; sha256="17az5z0wr5j0cz2fjk6jyas9g0cvavp9c6p5bw7src0g27w1967k"; depends=[GenomicRanges HilbertVis IRanges png]; }; HilbertVis = derive { name="HilbertVis"; version="1.27.0"; sha256="1qcyzn86v0xhb9zc1vcia1n53i33sgncbb7lpink5llmjpalacq6"; depends=[lattice]; }; HilbertVisGUI = derive { name="HilbertVisGUI"; version="1.27.0"; sha256="03jxn398xv97mmvbpl0qymmydhm4i4c36qnw4s22ch7wy3h9x6h8"; depends=[HilbertVis]; }; HybridMTest = derive { name="HybridMTest"; version="1.13.0"; sha256="0r4j8yllxzwn5r2rvpkqx6w23836lmly8wlshib6p917ky0djw4s"; depends=[Biobase fdrtool MASS survival]; }; IMPCdata = derive { name="IMPCdata"; version="1.3.0"; sha256="003qvf47bcfcwxkw7zpzdvpnw7xhd2y12n9by2b1ns5i5jka754b"; depends=[rjson]; }; INPower = derive { name="INPower"; version="1.5.0"; sha256="0msz24bixp7b5a83n40675xq8fglrhbg8972a93x2k8jgb5gdh38"; depends=[mvtnorm]; }; INSPEcT = derive { name="INSPEcT"; version="0.99.8"; sha256="0pzh0xkh4py6rwnjqz4wqfnk2h08dp5q9gc4cgxls6gl3574i9ny"; depends=[Biobase BiocParallel deSolve GenomicFeatures GenomicRanges IRanges preprocessCore pROC rootSolve]; }; -IONiseR = derive { name="IONiseR"; version="0.99.7"; sha256="0b4lxdhajd4mhdnfa8c3zm8n5s398arrxjig2bv6il933lhxi6ps"; depends=[BiocGenerics Biostrings data_table dplyr ggplot2 magrittr rhdf5 ShortRead tidyr XVector]; }; +IONiseR = derive { name="IONiseR"; version="0.99.12"; sha256="0pmigp0j1y3cwzzgnghwx781mdlrr9fhcqapr602r97w82pazab0"; depends=[BiocGenerics Biostrings data_table dplyr ggplot2 magrittr rhdf5 ShortRead tidyr XVector]; }; IPPD = derive { name="IPPD"; version="1.17.0"; sha256="0afhz5ishr1my9gnksa4dl92lfnb2fnvdpsh3n7kj4j2s8xx0crc"; depends=[bitops digest MASS Matrix XML]; }; -IRanges = derive { name="IRanges"; version="2.3.17"; sha256="1fjz4whvw68xw6w0anzcrympk6xfsa7rgx0mxbzlwkpj96j2805k"; depends=[BiocGenerics S4Vectors]; }; +IRanges = derive { name="IRanges"; version="2.3.22"; sha256="0d2qp6rkx028c9341lwxwgajhdml3v16swd6scsn8q9s3pfmblrb"; depends=[BiocGenerics S4Vectors]; }; ITALICS = derive { name="ITALICS"; version="2.29.0"; sha256="16l0wq7bxi3nz8f5hggnzddhg07vrcca480ygvmi03cxajxbjr9h"; depends=[affxparser DBI GLAD oligo oligoClasses]; }; IVAS = derive { name="IVAS"; version="1.1.0"; sha256="15jnmi40bsnyf5yw86gvqppv0g8250lsi74gsjzhm7gijhlxfnrm"; depends=[AnnotationDbi BiocGenerics doParallel foreach GenomeInfoDb GenomicFeatures GenomicRanges IRanges lme4 Matrix S4Vectors]; }; Icens = derive { name="Icens"; version="1.41.0"; sha256="1vi2hnzs8z5prggswa6wzr2y53jczkgg09f4vw0pjzkzi7p8bphy"; depends=[survival]; }; IdMappingAnalysis = derive { name="IdMappingAnalysis"; version="1.13.0"; sha256="1kwalcvb7cxkg89kz5hpk0cvsfzxz5g2cbiflrs2dyaxx96pm5gm"; depends=[Biobase boot mclust R_oo rChoiceDialogs RColorBrewer]; }; IdMappingRetrieval = derive { name="IdMappingRetrieval"; version="1.17.0"; sha256="0fclrkv53q9aq3xw95k25rw52sjzy40r37kajnrk0kc41cyzf2vv"; depends=[AffyCompatible biomaRt DAVIDQuery ENVISIONQuery R_methodsS3 R_oo rChoiceDialogs RCurl XML]; }; IdeoViz = derive { name="IdeoViz"; version="1.3.0"; sha256="1ynqg2a0jq23mlqzgf7k05jc2nkby8hkbc6h0p76ms33fwqj2qxz"; depends=[Biobase GenomeInfoDb GenomicRanges IRanges RColorBrewer rtracklayer]; }; -InPAS = derive { name="InPAS"; version="1.1.5"; sha256="1s9jx90r7g9v9ipnnld2kdrbhyjl0vdwbgism6ab2hbpdxc33w7k"; depends=[AnnotationDbi Biobase BiocParallel BSgenome cleanUpdTSeq depmixS4 GenomeInfoDb GenomicFeatures GenomicRanges Gviz IRanges limma preprocessCore S4Vectors seqinr]; }; +InPAS = derive { name="InPAS"; version="1.1.8"; sha256="1613zxc2i2jip8i4nx41wrkc59rvn3ycz1ixxi2lad94sjaznw3w"; depends=[AnnotationDbi Biobase BiocParallel BSgenome cleanUpdTSeq depmixS4 GenomeInfoDb GenomicFeatures GenomicRanges Gviz IRanges limma preprocessCore S4Vectors seqinr]; }; IsoGeneGUI = derive { name="IsoGeneGUI"; version="2.5.0"; sha256="05k6qdnsr2aywdmhdlimx5axrk07mf14rvia10afhf56380sdf3s"; depends=[Biobase ff geneplotter goric Iso IsoGene jpeg multtest ORCME ORIClust orQA RColorBrewer Rcpp relimp tkrplot xlsx]; }; KCsmart = derive { name="KCsmart"; version="2.27.0"; sha256="1igsmg1l39yladz4dlc9j01nxkwfaciy575d7k6764jhrs6pv39m"; depends=[BiocGenerics KernSmooth multtest siggenes]; }; -KEGGREST = derive { name="KEGGREST"; version="1.9.0"; sha256="0ms60slsf7lpw0yidpy47hyxi7cm9r0gyb0q6ajxv52vn9diz29v"; depends=[Biostrings httr png]; }; +KEGGREST = derive { name="KEGGREST"; version="1.9.1"; sha256="15qap9shrfzq4wz3spxbs1hp0wnj995j95jr6mb4izan6d3nhl6j"; depends=[Biostrings httr png]; }; KEGGgraph = derive { name="KEGGgraph"; version="1.27.2"; sha256="14giz5858nr1fz7fv0d98xnl8rmimnjq4n6s81b0pkiz4vsriqvn"; depends=[graph XML]; }; KEGGprofile = derive { name="KEGGprofile"; version="1.11.0"; sha256="04fkdsjj5z0ib6y8gi03av9b5zz4sbw277xvkr199kh9xlrfcqgh"; depends=[AnnotationDbi biomaRt KEGGREST png TeachingDemos XML]; }; LBE = derive { name="LBE"; version="1.37.0"; sha256="09ql13kc18b8zjvb3ny536k5704q9xxpv9xfqi4y4q32vavywj1x"; depends=[]; }; LEA = derive { name="LEA"; version="1.1.0"; sha256="017cz56xiv9c2v2q3lwnmpb4j7iz2k1aww6c9kz9s0kcjjyi3sak"; depends=[]; }; LMGene = derive { name="LMGene"; version="2.25.0"; sha256="17djx1fkjxpmmp56vphcbkgwpr56i375xc7rb76d94911grz9fh4"; depends=[affy Biobase multtest survival]; }; +LOLA = derive { name="LOLA"; version="0.99.7"; sha256="1hal9cpna71sra24y0jjj2mvf62qsgmkb6ixwg1sbmka99a6rl8c"; depends=[data_table GenomicRanges IRanges reshape2]; }; LPE = derive { name="LPE"; version="1.43.0"; sha256="13z3h3mabbwhb5p40a7hil0aq10mya1zqgb8qj2qwnc50sbmgjx2"; depends=[]; }; LPEadj = derive { name="LPEadj"; version="1.29.0"; sha256="1734ihzvid5bz2wyh7yskk7agd82xmw7dibzb7aivhcfyxs8g8p4"; depends=[LPE]; }; LVSmiRNA = derive { name="LVSmiRNA"; version="1.19.0"; sha256="1z74y8zbg5amsmslb309gi630v8qa1qqgj37214bv5g9ab8xajmj"; depends=[affy Biobase BiocGenerics limma MASS quantreg SparseM vsn zlibbioc]; }; -LedPred = derive { name="LedPred"; version="1.0.0"; sha256="1wglgnl5y61g4jcqfgnf3gqvmfpdvcb6h43n44cv46icybdk0bzs"; depends=[akima e1071 GenomicRanges irr jsonlite plot3D plyr RCurl ROCR testthat]; }; +LedPred = derive { name="LedPred"; version="1.0.1"; sha256="17pfx1y2lfir7gb088266pn5jvv73vlzq1v9i44xqkhg0b5j21x5"; depends=[akima e1071 GenomicRanges irr jsonlite plot3D plyr RCurl ROCR testthat]; }; LiquidAssociation = derive { name="LiquidAssociation"; version="1.23.0"; sha256="178gx8n0ga1ppjk368xacidms1rc2kn301fmdc8rwbcknwvxrwck"; depends=[Biobase geepack]; }; -LowMACA = derive { name="LowMACA"; version="1.1.0"; sha256="0i0pka0jf1yq7vjw1kb9sd2p21gpy4pw855ap815k02i0n7jyny4"; depends=[Biostrings cgdsr data_table motifStack RColorBrewer reshape2 stringr]; }; -M3D = derive { name="M3D"; version="1.3.5"; sha256="1pjfl0kdhzw9l59qzgxjkf60w0rjdswm8wc12cyk39190hnalh49"; depends=[BiSeq GenomicRanges IRanges]; }; +LowMACA = derive { name="LowMACA"; version="1.1.5"; sha256="1qlmfx7qp30kjhvsxv5p2y8zjjsddb7bc195nvn2hci7nkqvb67l"; depends=[BiocParallel Biostrings cgdsr data_table motifStack RColorBrewer reshape2 stringr]; }; +M3D = derive { name="M3D"; version="1.3.9"; sha256="1yikbn5vz8ba2xshdwpywriml51zlcmn2f7wk85shnar2bnhd33f"; depends=[BiSeq GenomicRanges IRanges]; }; MAIT = derive { name="MAIT"; version="1.3.1"; sha256="1kpcns5f9j41sg5694ng4d0w5gil2qwi9s1804gncnnh273jsv5z"; depends=[agricolae CAMERA caret class e1071 gplots MASS pls plsgenomics Rcpp xcms]; }; MANOR = derive { name="MANOR"; version="1.41.1"; sha256="0i1fk4c72k91i0w84b0swgdbd4igvbcrbcs12dqqxcslnqg44rs2"; depends=[GLAD]; }; MBASED = derive { name="MBASED"; version="1.3.1"; sha256="0rdsv7qv5x6whb5jx4wzgcv88z6hwmf5ryz84liv7kg1i1pq1adn"; depends=[BiocGenerics BiocParallel GenomicRanges RUnit SummarizedExperiment]; }; MBAmethyl = derive { name="MBAmethyl"; version="1.3.0"; sha256="1807sv9dj74la17m2jj0kzj1sqy4gqydkxax0ngifvyk920zr19n"; depends=[]; }; MBCB = derive { name="MBCB"; version="1.23.0"; sha256="0swcr95qzgyjqpm6sc5z7ifc0vrj4hkpm7srfm2cb7d0dg0lk092"; depends=[preprocessCore tcltk2]; }; MCRestimate = derive { name="MCRestimate"; version="2.25.0"; sha256="1zbajax2kk4dnk17l6vm6rxgqyxm1zly3i7x0y78bbk34ismcixj"; depends=[Biobase e1071 pamr randomForest RColorBrewer]; }; -MEDIPS = derive { name="MEDIPS"; version="1.19.2"; sha256="1k4bdvqsp9rrxadz79g4jvynn7832dq9sgdk0fnv5lk3sc004ypq"; depends=[biomaRt Biostrings BSgenome DNAcopy edgeR GenomicRanges gtools IRanges preprocessCore Rsamtools rtracklayer]; }; +MEDIPS = derive { name="MEDIPS"; version="1.19.5"; sha256="0xj9ia56xqc3ad0ikrfc0cvkwx1xssvymnyqk0p36yz90492pq1j"; depends=[biomaRt Biostrings BSgenome DNAcopy edgeR GenomicRanges gtools IRanges preprocessCore Rsamtools rtracklayer]; }; MEDME = derive { name="MEDME"; version="1.29.0"; sha256="1fpi4ri134ii28nfiq2p875xinwvs8icrxvw158g5k7ixy1zx826"; depends=[Biostrings drc MASS]; }; MEIGOR = derive { name="MEIGOR"; version="1.3.0"; sha256="1kif7m78w0w0qv4fqfby3rknqk56zk83dds3cm4pgv2cii61i9jy"; depends=[CNORode deSolve Rsolnp snowfall]; }; MGFM = derive { name="MGFM"; version="1.3.0"; sha256="1h2bi2cchfxl0z31pgj6q6pb1jnmqvjy7jv2khp80h7sdr65356i"; depends=[annotate AnnotationDbi]; }; MIMOSA = derive { name="MIMOSA"; version="1.7.1"; sha256="1gzm90ii18vvpfd2nnl34mcvbvi49ck4hd7c5yziac8m3gx2f9f2"; depends=[Biobase coda data_table Formula ggplot2 Kmisc MASS MCMCpack modeest plyr pracma Rcpp RcppArmadillo reshape scales testthat]; }; -MLInterfaces = derive { name="MLInterfaces"; version="1.49.8"; sha256="0asl6mibg1r2i9kmgax2qmsnj80spkn4n2pg237wxs9pm70qgpnv"; depends=[annotate Biobase BiocGenerics cluster fpc gbm gdata genefilter ggvis hwriter MASS pls RColorBrewer rda rgl rpart sfsmisc shiny]; }; +MLInterfaces = derive { name="MLInterfaces"; version="1.49.13"; sha256="0v80aghhws21ncdhgnmnvd94s8c48g5fypiryxpxm6yzj366jbdp"; depends=[annotate Biobase BiocGenerics cluster fpc gbm gdata genefilter ggvis hwriter MASS mlbench pls RColorBrewer rda rgl rpart sfsmisc shiny threejs]; }; MLP = derive { name="MLP"; version="1.17.0"; sha256="1wb6bzxn1paba2fxh62ldsfr4kr0nq2sy21v0pp0qwhfxndyzpdn"; depends=[affy AnnotationDbi gdata gmodels gplots gtools plotrix]; }; MLSeq = derive { name="MLSeq"; version="1.7.0"; sha256="0vc5rz4l574hmzwn3q7c4giib0lzs720j0j3alvarb3lmfzx9mhq"; depends=[Biobase caret DESeq2 edgeR limma randomForest]; }; MMDiff = derive { name="MMDiff"; version="1.9.0"; sha256="0xvnv024cv540m0jv9lrb4s5rvc0mq4gwp6wvdgpnsnqnwi9j556"; depends=[Biobase DiffBind GenomicRanges GMD IRanges Rsamtools]; }; @@ -302,7 +313,7 @@ MPFE = derive { name="MPFE"; version="1.5.0"; sha256="123a6qg761j46bs1ckd6yyr2ig MSGFgui = derive { name="MSGFgui"; version="1.3.0"; sha256="0r7izs3wpd7l9agrm3mrr3kmm00s9fzljsjxhk4pzxkjg1ran4hp"; depends=[MSGFplus mzID mzR shiny shinyFiles xlsx]; }; MSGFplus = derive { name="MSGFplus"; version="1.3.0"; sha256="0q75mygrd56kr9hrrxlmckkgvhcrgvpgvbjdxjmz6jaqp5wfbkf5"; depends=[mzID]; }; MSnID = derive { name="MSnID"; version="1.3.1"; sha256="0a0r2ikyb0spm110xzn3zzhl8g6xsvmh781d65f10l1iqnd2cqza"; depends=[Biobase data_table doParallel foreach iterators MSnbase mzID ProtGenerics R_cache Rcpp reshape2]; }; -MSnbase = derive { name="MSnbase"; version="1.17.13"; sha256="0ijh800jbdjw4nlcx69f3dp9q5zhghvfprgpjvx407a32i47dz3k"; depends=[affy Biobase BiocGenerics BiocParallel digest ggplot2 impute IRanges lattice MALDIquant mzID mzR pcaMethods plyr preprocessCore ProtGenerics Rcpp reshape2 S4Vectors vsn]; }; +MSnbase = derive { name="MSnbase"; version="1.17.15"; sha256="0fk7v88clnzcg779fs3g0nby8grck99gvx60pmpn4dxikyg75cdw"; depends=[affy Biobase BiocGenerics BiocParallel digest ggplot2 impute IRanges lattice MALDIquant mzID mzR pcaMethods plyr preprocessCore ProtGenerics Rcpp reshape2 S4Vectors vsn]; }; MSstats = derive { name="MSstats"; version="2.7.0"; sha256="0zhv2c769biv6avb4csi7alabk76bfn0ykzwp0lc6ymzggbj9pil"; depends=[ggplot2 gplots limma lme4 marray MSnbase preprocessCore Rcpp reshape]; }; MVCClass = derive { name="MVCClass"; version="1.43.0"; sha256="1mbhfkvdkxw9xd76dd2pxk947w9wahwdsk9x1wcryrmwcdvaqqcz"; depends=[]; }; MantelCorr = derive { name="MantelCorr"; version="1.39.0"; sha256="0l255m63q9idv56svs5m5bc4izwqnm3jy2z3kka7sw4xcx13l39g"; depends=[]; }; @@ -317,7 +328,7 @@ Metab = derive { name="Metab"; version="1.3.0"; sha256="041j2xn6gypg07l2snhqp940 MethTargetedNGS = derive { name="MethTargetedNGS"; version="1.1.0"; sha256="0bspvxxmyf22079sapmimz3fdxz91g4mq0kj7ssf0mmp2847l57k"; depends=[Biostrings gplots seqinr stringr]; }; MethylAid = derive { name="MethylAid"; version="1.3.1"; sha256="012ypjnw5ky6233dibx2hpryzbr66g86hm14cjfd45fzr08bv08z"; depends=[Biobase BiocGenerics BiocParallel ggplot2 gridBase hexbin matrixStats minfi RColorBrewer shiny]; }; MethylMix = derive { name="MethylMix"; version="1.3.0"; sha256="181sz3ny79i8gaq3y2k0q56l03ii288lhy8xv1fsh94bjhihjgcd"; depends=[doParallel foreach optimx RColorBrewer RPMM]; }; -MethylSeekR = derive { name="MethylSeekR"; version="1.9.0"; sha256="1hp2qadkkkanp3cs0gqwyvn94qy1v34gcjhx730p55iq1had5dcf"; depends=[BSgenome geneplotter GenomicRanges IRanges mhsmm rtracklayer]; }; +MethylSeekR = derive { name="MethylSeekR"; version="1.9.1"; sha256="0c560j1y8w8dzki53m499k2dknpbq2n78cmxg2nq4lqsdz8r17h4"; depends=[BSgenome geneplotter GenomicRanges IRanges mhsmm rtracklayer]; }; Mfuzz = derive { name="Mfuzz"; version="2.29.3"; sha256="10qblp4xg6506f1j1v3n0k4m3f5hdrzv2m35szh0xdi2jxlc1m9k"; depends=[Biobase e1071 tkWidgets]; }; MiChip = derive { name="MiChip"; version="1.23.0"; sha256="0np5drks6nfg3aw8qm899syxv1z56608bhav1jid4ks9fwdi33bb"; depends=[Biobase]; }; MiPP = derive { name="MiPP"; version="1.41.0"; sha256="1zp8j123fx82xdc3dvn4a17mspw2pdxxlyj4f750vzwc4ma9pj39"; depends=[Biobase e1071 MASS]; }; @@ -327,16 +338,17 @@ MinimumDistance = derive { name="MinimumDistance"; version="1.13.3"; sha256="1ah Mirsynergy = derive { name="Mirsynergy"; version="1.5.0"; sha256="0nbdnz3m99r3zlkqqya4xs944a3zy0daqxbnf5gn4033z2kgd10s"; depends=[ggplot2 gridExtra igraph Matrix RColorBrewer reshape scales]; }; MmPalateMiRNA = derive { name="MmPalateMiRNA"; version="1.19.0"; sha256="0pnbzqh90vqcgsh1swvhy8w2k1vj24k5j9m4sb7qwhi2h5y1gzwa"; depends=[Biobase lattice limma statmod vsn xtable]; }; MoPS = derive { name="MoPS"; version="1.3.0"; sha256="0sf7v7clghm48g2ryainsyvsl67nqq4xha71zc1r5w9fz33xa5mv"; depends=[Biobase]; }; -MotIV = derive { name="MotIV"; version="1.25.0"; sha256="0d57bsi1jl5xcsxrd6v7506hrjz7b8r4hy39rsd6d2rfnw1w49yl"; depends=[BiocGenerics Biostrings IRanges lattice rGADEM]; }; -MotifDb = derive { name="MotifDb"; version="1.11.0"; sha256="1swfp50l4h4jas5r0yz558qqp74a8q62qbyxf6h7dzcs9s1krqhh"; depends=[BiocGenerics Biostrings IRanges rtracklayer S4Vectors]; }; +MotIV = derive { name="MotIV"; version="1.25.1"; sha256="0hzkw2r64b0ihlyd4xn8pl37qkk3vaf8ll0500gayyhr60yj9y5f"; depends=[BiocGenerics Biostrings IRanges lattice rGADEM S4Vectors]; }; +MotifDb = derive { name="MotifDb"; version="1.11.8"; sha256="135zjdvz2id6b6i09pvvc21pvqq7db6hgg293b674ck753rqyvmf"; depends=[BiocGenerics Biostrings IRanges rtracklayer S4Vectors]; }; Mulcom = derive { name="Mulcom"; version="1.19.0"; sha256="05mx5z188g7kwj7km9p54djjlf4kq4iwvf9fa8158ic5wd3ycyh7"; depends=[Biobase fields]; }; MultiMed = derive { name="MultiMed"; version="1.3.0"; sha256="16hi69kpxz6q71nr909pbqp5qa20z1qn367vjs7146mpfn70rnwq"; depends=[]; }; NCIgraph = derive { name="NCIgraph"; version="1.17.0"; sha256="103p0i4y9frkvdpzhpj9c0d78wc40650hbhfbhhmkv1a8zq5260v"; depends=[graph KEGGgraph R_methodsS3 RBGL RCytoscape]; }; NGScopy = derive { name="NGScopy"; version="1.3.0"; sha256="09b323rx0v5dnck2dgq9rzzjk7dbpry74q6c4dkgvjvxkf7khh8m"; depends=[changepoint rbamtools Xmisc]; }; -NOISeq = derive { name="NOISeq"; version="2.11.1"; sha256="13q3v2jphridbjk1059c475xgw9ywkdyqf0b6pbl3pk9l3ag9dr9"; depends=[Biobase Matrix]; }; +NOISeq = derive { name="NOISeq"; version="2.13.0"; sha256="1gih1n0fm6yllh01kkh3n5qzckcr00sbz4s0fx961qsghqyqzij1"; depends=[Biobase Matrix]; }; NTW = derive { name="NTW"; version="1.19.0"; sha256="027rdvy8xpsa70g6x33v4fmzk8gyvd8p3lgf65ac36wcy120gyhl"; depends=[mvtnorm]; }; +NanoStringDiff = derive { name="NanoStringDiff"; version="0.99.4"; sha256="01wjvhx4bx1xc3ks33pkbz80a7fjj4yvllry433asnysziihn6lw"; depends=[Biobase matrixStats]; }; NanoStringQCPro = derive { name="NanoStringQCPro"; version="1.1.2"; sha256="1xk7rzaschgb39982jkb25xaz1l547dl020nl4wn0fdmy8kalp86"; depends=[AnnotationDbi Biobase knitr NMF png RColorBrewer]; }; -NarrowPeaks = derive { name="NarrowPeaks"; version="1.13.2"; sha256="0cryjprj8y1fgn5xxzsyyv4zdzv5qy8405qkj47kvjbrk0kbr97s"; depends=[BiocGenerics CSAR fda GenomeInfoDb GenomicRanges ICSNP IRanges S4Vectors]; }; +NarrowPeaks = derive { name="NarrowPeaks"; version="1.13.4"; sha256="1s68l00jkb91nb45n5kpvkpcdhj2v740ac3p0q9gxg5925jwvyaa"; depends=[BiocGenerics CSAR fda GenomeInfoDb GenomicRanges ICSNP IRanges S4Vectors]; }; NetPathMiner = derive { name="NetPathMiner"; version="1.5.2"; sha256="0k3vq5l95hapw8hbc00m4pchxwzylp97y20w21g0g1yaf1cf9br0"; depends=[igraph]; }; NetSAM = derive { name="NetSAM"; version="1.9.0"; sha256="1bdch37kk1clb8cyffrlcr6d5qykk5a5ql3dfi94bw1l0w6v4fjq"; depends=[graph igraph seriation]; }; NormqPCR = derive { name="NormqPCR"; version="1.15.0"; sha256="0nfjnx5id04nbkda9v66418yzpp88mq2ijsfn8jyg0sfika405nl"; depends=[Biobase qpcR RColorBrewer ReadqPCR]; }; @@ -349,7 +361,7 @@ OSAT = derive { name="OSAT"; version="1.17.0"; sha256="1ky9xb5ls3xnzinsrxrgggb4r OTUbase = derive { name="OTUbase"; version="1.19.0"; sha256="0xmp446v57z875lmjkg47f9hx961af9nda658v8qlbjxf1wjw9zb"; depends=[Biobase Biostrings IRanges S4Vectors ShortRead vegan]; }; OmicCircos = derive { name="OmicCircos"; version="1.7.0"; sha256="1xil5043hgpypaww1a1wvcxw9im9jmzgdp83p3z71giqiq36dvh4"; depends=[GenomicRanges]; }; OmicsMarkeR = derive { name="OmicsMarkeR"; version="1.1.2"; sha256="09mdsvcp7n5qh845lpa1zsjk7jmbi0ni0601jlr1jija0hmkv1zx"; depends=[assertive assertive_base caret caTools data_table DiscriMiner e1071 foreach gbm glmnet pamr permute plyr randomForest]; }; -OncoSimulR = derive { name="OncoSimulR"; version="1.99.5"; sha256="0pjn2kirf1b72fvqxjawxcbrsn42brhz09kjnywm611kap329dq2"; depends=[data_table graph gtools igraph Rcpp Rgraphviz]; }; +OncoSimulR = derive { name="OncoSimulR"; version="1.99.7"; sha256="1pav3vn94cly0d1sg7rw35mf4wvgcn70pa9hglggchgq636iyja6"; depends=[data_table graph gtools igraph Rcpp Rgraphviz]; }; OperaMate = derive { name="OperaMate"; version="0.99.6"; sha256="0xh57d82rmfcs1a6gj0qcjf585drhzns5k69bwxb7x1xw63wp4kp"; depends=[ggplot2 MASS pheatmap RDAVIDWebService]; }; OrderedList = derive { name="OrderedList"; version="1.41.0"; sha256="1cw8y5f5h15z0qwg8n4dq7g3ixx2wa332rdsb4w2qqmcqlz79bfp"; depends=[Biobase twilight]; }; OrganismDbi = derive { name="OrganismDbi"; version="1.11.42"; sha256="0y0v5ngall7iyvx2bqhfkxdnw9alkyab5f6qgpq8dpvr6pvyamyl"; depends=[AnnotationDbi Biobase BiocGenerics BiocInstaller GenomicFeatures GenomicRanges graph IRanges RBGL RSQLite S4Vectors]; }; @@ -361,8 +373,8 @@ PANR = derive { name="PANR"; version="1.15.0"; sha256="0nc2a10z7i16dz41yhz3zw9h5 PAPi = derive { name="PAPi"; version="1.9.0"; sha256="1553fxm3ma3p5j10acyk5m2wx4dafp346x0pyxj9aah856h4zkw5"; depends=[KEGGREST svDialogs]; }; PAnnBuilder = derive { name="PAnnBuilder"; version="1.33.0"; sha256="0larxmdzdb33hpv2m7n4kdjkmmc7pn8dl0b1x43fl54dq5xwvzpg"; depends=[AnnotationDbi Biobase DBI RSQLite]; }; PCpheno = derive { name="PCpheno"; version="1.31.0"; sha256="1crk56kzfb9smdaagv44l7h2hh1qc15zyl1rjnwlyz8cxplsll7w"; depends=[annotate AnnotationDbi Biobase Category graph GSEABase ppiStats ScISI SLGI]; }; -PECA = derive { name="PECA"; version="1.5.1"; sha256="0dzkwjsdhbmripw91wk7fmz83dn88x33q7v4pdi6q17lxfpc5w7y"; depends=[affy genefilter limma preprocessCore]; }; -PGA = derive { name="PGA"; version="0.99.9"; sha256="0p3wbn0yyi74cm4xsgw0n1rgb5nmlhxnq9c62ss9k0yr3jx83y8s"; depends=[AnnotationDbi biomaRt Biostrings customProDB data_table GenomicFeatures GenomicRanges ggplot2 IRanges Nozzle_R1 pheatmap RCurl Rsamtools RSQLite rTANDEM rtracklayer stringr VariantAnnotation]; }; +PECA = derive { name="PECA"; version="1.5.3"; sha256="0272m7q1s87sgnxpyph2igli49fnda1865vxnc7dsblhj69q4k5k"; depends=[affy aroma_affymetrix aroma_core genefilter limma preprocessCore]; }; +PGA = derive { name="PGA"; version="0.99.11"; sha256="1dhp7nd5kns5p5n8yp9g48307difivfspb13vvgfmd7y8iyqmv35"; depends=[AnnotationDbi biomaRt Biostrings customProDB data_table GenomicFeatures GenomicRanges ggplot2 IRanges Nozzle_R1 pheatmap RCurl Rsamtools RSQLite rTANDEM rtracklayer stringr VariantAnnotation]; }; PGSEA = derive { name="PGSEA"; version="1.43.0"; sha256="0bchcpb3ma179akjaf4agsbvx3f8vp73qxrqlq3ls25j9c1acbl5"; depends=[annaffy AnnotationDbi Biobase]; }; PICS = derive { name="PICS"; version="2.13.0"; sha256="0mc49s5qq2jlc5alba38fyr60p18lad3q6wn48a5khzfkwdbjm9s"; depends=[BiocGenerics GenomicAlignments GenomicRanges IRanges Rsamtools S4Vectors]; }; PING = derive { name="PING"; version="2.13.0"; sha256="0fghsvanq6r3ndp9vc2zwvfizifw2yl8qjhzv5rl5hkpsb7w9y2d"; depends=[BiocGenerics BSgenome chipseq fda GenomicRanges Gviz IRanges PICS S4Vectors]; }; @@ -373,49 +385,52 @@ PROPER = derive { name="PROPER"; version="1.1.0"; sha256="1h75zcz3b048760dlhlnvw PROcess = derive { name="PROcess"; version="1.45.0"; sha256="1d5kg0r3ddf4bjcmjdd84r92d1cx6xjgk0a303mwsbyp6b7qs06i"; depends=[Icens]; }; PSEA = derive { name="PSEA"; version="1.3.0"; sha256="13v4q6qxvplvln7ff378chff4z4ppc51wpaq8fz7hxpl0g60cfqm"; depends=[Biobase MASS]; }; PSICQUIC = derive { name="PSICQUIC"; version="1.7.0"; sha256="0c7v2zm5rrn8ma2kmwpffq2qgipi537fbi1gjhx7yvmnqw9zcjnc"; depends=[BiocGenerics biomaRt httr IRanges plyr RCurl]; }; -PWMEnrich = derive { name="PWMEnrich"; version="4.5.0"; sha256="134xskadqb7afvz3y4nbbxi5mf02i3cfgb4an2290znvdvsml6sn"; depends=[BiocGenerics Biostrings evd gdata seqLogo]; }; +PWMEnrich = derive { name="PWMEnrich"; version="4.5.5"; sha256="0ff7wm9lqgwddypdnmf3waf8wzmfyfphmqn8nmnayl3r2fxlbbnn"; depends=[BiocGenerics Biostrings evd gdata seqLogo]; }; +Path2PPI = derive { name="Path2PPI"; version="0.99.4"; sha256="1w00b8l94ajjinihwxjncn98m8ww9pw5gcan7paf26plcsg8z219"; depends=[igraph]; }; PathNet = derive { name="PathNet"; version="1.9.0"; sha256="1dqai2ys5vfhhqqghh1xaxsbcbsqwkjrcrhsm03r3ckpizmbynp5"; depends=[]; }; Pbase = derive { name="Pbase"; version="0.9.0"; sha256="1j0b2ajlsk42kxakh4vhcd9ias1fxr4cna4h52hrinxi9jml9ywx"; depends=[Biobase BiocGenerics biomaRt Biostrings cleaver GenomicRanges Gviz IRanges MSnbase mzID mzR Pviz Rcpp rtracklayer S4Vectors]; }; -PhenStat = derive { name="PhenStat"; version="2.3.0"; sha256="0irasfwks5w5a25zkp0qhasrk5nvahbijsncfbmpimac5cwps1an"; depends=[car logistf MASS nlme nortest]; }; +PhenStat = derive { name="PhenStat"; version="2.3.1"; sha256="059vs4ggwww2d0nnl4cfvp0q9zb5lhbphzkd71mhkmjdb6ilq411"; depends=[car logistf MASS nlme nortest]; }; Polyfit = derive { name="Polyfit"; version="1.3.0"; sha256="0zdd85bshdcf85asq93wbbrj26fa5d6xkmgdyrqg9hawdznj9kip"; depends=[DESeq]; }; Prize = derive { name="Prize"; version="0.99.16"; sha256="0bm93kipmyypqsp17f316k83gwrfpzqjqhlf44kmb5ris5s1fdyb"; depends=[diagram ggplot2 gplots matrixcalc reshape2 stringr]; }; ProCoNA = derive { name="ProCoNA"; version="1.7.0"; sha256="1x2wmlhlizd09v4d7q98cfplqqmxcagi43rl9ibdah04n7k35zpd"; depends=[BiocGenerics flashClust GOstats MSnbase WGCNA]; }; ProtGenerics = derive { name="ProtGenerics"; version="1.1.0"; sha256="1l77j3zl78v86jbxpwnyc0a5q66yds79nirlcvan789hxbggr0i4"; depends=[BiocGenerics]; }; +ProteomicsAnnotationHubData = derive { name="ProteomicsAnnotationHubData"; version="0.99.2"; sha256="0vi83sx4y73q70adwzc83d1smd6j6b30sy6kq3ss47vwk7qxd7ki"; depends=[AnnotationHub AnnotationHubData Biobase BiocInstaller Biostrings GenomeInfoDb MSnbase mzR]; }; Pviz = derive { name="Pviz"; version="1.3.0"; sha256="0pvmpxw4dpxxs9lrn9nn44rn36r3l09rwlkh5ph054h56nm80xs1"; depends=[Biostrings biovizBase data_table GenomicRanges Gviz IRanges]; }; -QDNAseq = derive { name="QDNAseq"; version="1.5.1"; sha256="1gykm8r410s9aw75km0f8wnhd0p8gqirszp70g5x97n83r4k6rnq"; depends=[Biobase CGHbase CGHcall DNAcopy matrixStats R_utils Rsamtools]; }; +QDNAseq = derive { name="QDNAseq"; version="1.5.4"; sha256="1j7dv5iz6x6mm7dar37lkj2ss5xg4qi5yxrklll3hxl1vn4fc715"; depends=[Biobase CGHbase CGHcall DNAcopy matrixStats R_utils Rsamtools]; }; QUALIFIER = derive { name="QUALIFIER"; version="1.13.1"; sha256="0b25cgjafs3k2kwbmbla713gxy9xbjclsx6k4pxydz5flz8w8grg"; depends=[Biobase data_table flowCore flowViz flowWorkspace hwriter lattice latticeExtra MASS ncdfFlow reshape XML]; }; QuartPAC = derive { name="QuartPAC"; version="1.1.0"; sha256="0w92hggwihp2nia9dzg8yjbfsyrcgwq4kpxh96jb8kkmq6kl2l8p"; depends=[data_table GraphPAC iPAC SpacePAC]; }; -QuasR = derive { name="QuasR"; version="1.9.9"; sha256="13md1pq0bg9xdlhvwsys3f7ibqll80viica03h2l4cnhgw26zj52"; depends=[Biobase BiocGenerics BiocInstaller BiocParallel Biostrings BSgenome GenomeInfoDb GenomicAlignments GenomicFeatures GenomicRanges IRanges Rbowtie Rsamtools rtracklayer S4Vectors ShortRead zlibbioc]; }; +QuasR = derive { name="QuasR"; version="1.9.15"; sha256="18z66a167fakvss45g3h13jc36ggb7hiqd2c9896c5amg1qli8n3"; depends=[Biobase BiocGenerics BiocInstaller BiocParallel Biostrings BSgenome GenomeInfoDb GenomicAlignments GenomicFeatures GenomicFiles GenomicRanges IRanges Rbowtie Rsamtools rtracklayer S4Vectors ShortRead zlibbioc]; }; R3CPET = derive { name="R3CPET"; version="1.1.0"; sha256="0vwyrqsihnabzqh5r329v3f5zcg2ik51aakvscpp482z0dm2naqh"; depends=[clues clValid data_table DAVIDQuery GenomicRanges ggbio ggplot2 Hmisc igraph IRanges pheatmap Rcpp reshape2 S4Vectors]; }; R453Plus1Toolbox = derive { name="R453Plus1Toolbox"; version="1.19.1"; sha256="0fp8hx9igfjaj1dvfxs54r5krhsp1hbmlqs9vac3g6ga51268rir"; depends=[Biobase BiocGenerics biomaRt Biostrings BSgenome GenomicRanges IRanges R2HTML Rsamtools S4Vectors ShortRead SummarizedExperiment TeachingDemos VariantAnnotation xtable XVector]; }; RBGL = derive { name="RBGL"; version="1.45.1"; sha256="0y90pvl3i8pyzxwssciygcd1c1lb8a0rqhpiqgif56075amm71rl"; depends=[graph]; }; RBM = derive { name="RBM"; version="1.1.0"; sha256="03q7prkrj8y3k8jrnnbjrkmlyv72cxfa8l042df4wajhcbpa4g4l"; depends=[limma marray]; }; RBioinf = derive { name="RBioinf"; version="1.29.0"; sha256="1cyd18lz3h9b20g6s9azzv9rv9bachh3qsczz84y8lj4kay3qssx"; depends=[graph]; }; RCASPAR = derive { name="RCASPAR"; version="1.15.2"; sha256="151mil4v8iz5lrn7827imvvnjh171qdgjg927fic3fwyfx0kkyqs"; depends=[]; }; -RCyjs = derive { name="RCyjs"; version="1.1.18"; sha256="0d6zh2ryy9583i2cxahi4gl5ldp1r0yyyz8mjzklp47rkm2cxmkx"; depends=[BiocGenerics BrowserViz graph httpuv igraph jsonlite Rcpp]; }; +RCyjs = derive { name="RCyjs"; version="1.1.29"; sha256="153p97865xfys2plypa7b6176i4vfxwfpyrncvdzc9mhi8gsal0v"; depends=[BiocGenerics BrowserViz graph httpuv igraph jsonlite Rcpp]; }; RCytoscape = derive { name="RCytoscape"; version="1.19.0"; sha256="0yfmlksi7sz0p9nbgjz2cpqwbwyzzxij3zaqmkp3wqfdk89mxgi7"; depends=[BiocGenerics graph]; }; RDAVIDWebService = derive { name="RDAVIDWebService"; version="1.7.0"; sha256="07hnj7flfacg9j8c6155nw23zjxcb1v4wj4rkfi8xz5clp80v6xh"; depends=[Category ggplot2 GOstats graph RBGL rJava]; }; RDRToolbox = derive { name="RDRToolbox"; version="1.19.0"; sha256="186cj6xri4prv7y9jvspyql8mkqy3aqs2kd6m5fliqicqbfia2z8"; depends=[MASS rgl]; }; REDseq = derive { name="REDseq"; version="1.15.0"; sha256="1xgc0xir09n900dgnpg5cibyxqsk0llh3jqqzgghm672rinbx2c6"; depends=[AnnotationDbi BiocGenerics Biostrings BSgenome ChIPpeakAnno IRanges multtest]; }; RGSEA = derive { name="RGSEA"; version="1.3.0"; sha256="1z69ccc6kxmfy1lc4jfnf36b305n8zizzc1sdjxkh43swiivs64k"; depends=[BiocGenerics]; }; RGalaxy = derive { name="RGalaxy"; version="1.13.0"; sha256="082zmqxqzk0wawrp36ds4sh30zf48pbs3pgsrn5b0j5w3lr1dy1x"; depends=[Biobase BiocGenerics digest optparse roxygen2 XML]; }; -RIPSeeker = derive { name="RIPSeeker"; version="1.9.2"; sha256="1z0p32fcc8npzs8p3zl7irx5m8vqyfgkwd9kifwjl13ciqlp15j5"; depends=[GenomicAlignments GenomicRanges IRanges Rsamtools rtracklayer SummarizedExperiment]; }; +RIPSeeker = derive { name="RIPSeeker"; version="1.9.3"; sha256="0m5pmc2a1kbiafcv9w40vadqcphwkk2rq5gha5r66v2zxf3c7cbp"; depends=[GenomicAlignments GenomicRanges IRanges Rsamtools rtracklayer SummarizedExperiment]; }; RLMM = derive { name="RLMM"; version="1.31.0"; sha256="01plzmxz5dzvvxzx4wxsqhhypc8fyvkyr96c7xwsaaakah4780nk"; depends=[MASS]; }; RMassBank = derive { name="RMassBank"; version="1.11.0"; sha256="1df5kfm4gb5kz1z5sq38wddi4njq3y8nzy7fr2dxk1z2j4b1977z"; depends=[mzR rcdk Rcpp RCurl rjson XML yaml]; }; RNASeqPower = derive { name="RNASeqPower"; version="1.9.0"; sha256="0nn5wq81cm81wjwc43ky597fyq1l4ya36k64bp6k80ri94qx2vzg"; depends=[]; }; RNAinteract = derive { name="RNAinteract"; version="1.17.0"; sha256="03rz6xyy9f48ns0r9xcxrghikxlna8cx62rwswq2i1xkh7c5lfiy"; depends=[abind Biobase cellHTS2 geneplotter gplots hwriter ICS ICSNP lattice latticeExtra limma locfit RColorBrewer splots]; }; RNAither = derive { name="RNAither"; version="2.17.2"; sha256="01h9l5inafhzpych76rpkrml442ld6jaxrd31ambspn9hsv8js6z"; depends=[biomaRt car geneplotter limma prada RankProd splots topGO]; }; -RNAprobR = derive { name="RNAprobR"; version="1.1.2"; sha256="0cjxf53q9g5g2092grbwp2z9q0sgw4bj5fism0a34w5r1varr9nb"; depends=[BiocGenerics Biostrings GenomicFeatures GenomicRanges plyr Rsamtools rtracklayer]; }; +RNAprobR = derive { name="RNAprobR"; version="1.1.4"; sha256="1zw74kajgcg0j36hcvx61gqv9a8xyqgybnm3pgshd1yrmrv3vpc4"; depends=[BiocGenerics Biostrings GenomicAlignments GenomicFeatures GenomicRanges plyr Rsamtools rtracklayer]; }; ROC = derive { name="ROC"; version="1.45.0"; sha256="1vcv5q7ylr2b1fb4vmrc8j4j7s3v5szzpkwblnfkcp2y8d03i9a1"; depends=[]; }; -ROntoTools = derive { name="ROntoTools"; version="1.9.0"; sha256="07l9j4d26hn8d5ma3z19ipy4rrw29k66zb2ib8n3ba24pjm0h8w3"; depends=[boot graph KEGGgraph KEGGREST Rgraphviz]; }; +ROntoTools = derive { name="ROntoTools"; version="1.9.1"; sha256="1r390zmp99cjcpcxhx8xrdkgynrhcaip9padh4qj3fvzikfb83c6"; depends=[boot graph KEGGgraph KEGGREST Rgraphviz]; }; RPA = derive { name="RPA"; version="1.25.0"; sha256="1bzjb0064xdn5zk9y9dpxjdw79i8kkfb29f13balx78nq5xznxh4"; depends=[affy]; }; RRHO = derive { name="RRHO"; version="1.9.1"; sha256="0lkmg40lwc3v6njalm2a2i3h9cc5iqifqj0ji20mxvk2bgpaj7p6"; depends=[VennDiagram]; }; RSVSim = derive { name="RSVSim"; version="1.9.1"; sha256="096zfl3glpwa38f2n6cxxcl4a9saf7mfy13g0p2cxq5vfkikab0h"; depends=[Biostrings GenomicRanges IRanges ShortRead]; }; RTCA = derive { name="RTCA"; version="1.21.0"; sha256="1kpfmrjcwmzgih0vib9ckf4c00yax0fbklfi46cwx0avv54gaqs0"; depends=[Biobase gtools RColorBrewer]; }; +RTCGA = derive { name="RTCGA"; version="0.99.12"; sha256="1xbk2vx6va46sjlh670w38zarfpmzzhvhf6i7sx3cr6nlh6if7q2"; depends=[assertthat data_table knitr magrittr rvest stringi XML xml2]; }; RTCGAToolbox = derive { name="RTCGAToolbox"; version="1.99.4"; sha256="1s78mll5907bpwca0zzhp19p328gwxc88wg98fjk710i0lx67gbi"; depends=[data_table limma RCircos RCurl RJSONIO survival XML]; }; RTN = derive { name="RTN"; version="1.7.2"; sha256="0k0xwnk0vgbi86435m5rhv2sxdnzwmhgr85zb8dlffr68dqa66ih"; depends=[car data_table ff igraph IRanges limma minet RedeR snow]; }; RTopper = derive { name="RTopper"; version="1.15.0"; sha256="1bjrrljidnij9zhq6lqsdi6hr35pih2kwwwd5cgmwfff8nfx60kw"; depends=[Biobase limma multtest]; }; -RUVSeq = derive { name="RUVSeq"; version="1.3.2"; sha256="1fbkiqzwxmwwkznl37ak1fkzms5i49n4hlk9s1c0frbw3cg79nqm"; depends=[Biobase EDASeq edgeR MASS]; }; +RUVSeq = derive { name="RUVSeq"; version="1.3.4"; sha256="0fm8lpyxjifnxkzp2dvdcvparli1dc2xw44911sbmlvj0ys4j4x4"; depends=[Biobase EDASeq edgeR MASS]; }; RUVcorr = derive { name="RUVcorr"; version="1.1.0"; sha256="1pgsfm17gnqwa9sr19f15h0nx1fhyjj07yhmpwr7s6p3v46qdw33"; depends=[BiocParallel corrplot gridExtra lattice MASS psych reshape2 snowfall]; }; RUVnormalize = derive { name="RUVnormalize"; version="1.3.0"; sha256="1fqk68rpznz9xc7ricipvrk1anppa33h9m5yv65fjwv4q1d05265"; depends=[Biobase]; }; RWebServices = derive { name="RWebServices"; version="1.33.1"; sha256="1bxp4zj7r1lrxb7r7l32h6b8hdxb1ryf7dxxj0qhwimh7pmxln31"; depends=[RCurl SJava TypeInfo]; }; @@ -431,7 +446,7 @@ RchyOptimyx = derive { name="RchyOptimyx"; version="2.9.0"; sha256="1l84zzd4xpz4 Rcpi = derive { name="Rcpi"; version="1.5.0"; sha256="1ap4i41iy9r6xl0dhlry6yz28g5blb057vvddx6ysphaq9gwx6rp"; depends=[Biostrings ChemmineR doParallel fmcsR foreach GOSemSim rcdk RCurl rjson]; }; Rdisop = derive { name="Rdisop"; version="1.29.0"; sha256="0j40i96k6q94c3238gl3z9kp9dxv00133m9s4zx28z17ayz00h69"; depends=[Rcpp RcppClassic]; }; ReQON = derive { name="ReQON"; version="1.15.1"; sha256="147fywvb9f9gjg3ij3sh753fs6mkr9b3f1c9j4gws1hmc6ryyn3m"; depends=[rJava Rsamtools seqbias]; }; -ReactomePA = derive { name="ReactomePA"; version="1.13.3"; sha256="0lpabqivq5yssvmz2nac3c169pz6hs7s9n9h4cams9pif364c9jv"; depends=[AnnotationDbi DOSE graphite igraph]; }; +ReactomePA = derive { name="ReactomePA"; version="1.13.5"; sha256="0lfhn3xhxgwa59ajyw295y6q9d7r5cbkp7gfn87vp9mkv3s81ryr"; depends=[AnnotationDbi DOSE graphite igraph]; }; ReadqPCR = derive { name="ReadqPCR"; version="1.15.0"; sha256="063swfh992gmibvr9ffsh65i57fdl651gpc39b2y6k9dp2rx8is7"; depends=[affy Biobase]; }; RedeR = derive { name="RedeR"; version="1.17.0"; sha256="13fmv76jrzxsa1ykzl85zwj0zb3aycyvc5s3h60vlgawfw66z90h"; depends=[igraph RCurl XML]; }; RefNet = derive { name="RefNet"; version="1.5.0"; sha256="0dzkvrpphbajpcwc3gdqi8lmwfg8a3rljhdnwswvbjg2vraj48s2"; depends=[AnnotationHub BiocGenerics IRanges PSICQUIC RCurl shiny]; }; @@ -444,24 +459,24 @@ Ringo = derive { name="Ringo"; version="1.33.0"; sha256="12qh3aayy317pzb137ds9vq Risa = derive { name="Risa"; version="1.11.1"; sha256="1bx7n7fjsaig5zq6xgwva2fvy0dlg9f1niwl9m6bi1h04spybp2c"; depends=[affy Biobase biocViews Rcpp xcms]; }; Rmagpie = derive { name="Rmagpie"; version="1.25.0"; sha256="13mb9aaqmwx1ad4mk0fhxqfql8pjpyaiibip7jawiyji7ghp9iw7"; depends=[Biobase e1071 kernlab pamr]; }; RmiR = derive { name="RmiR"; version="1.25.0"; sha256="1xc19w8la239ia793qpnpx2h0aavwhidrjf4i87jry2j29npjfzz"; depends=[DBI RSVGTipsDevice]; }; -RnBeads = derive { name="RnBeads"; version="1.1.4"; sha256="1v4cgfrarybansrxk2r77g79xkwhkh28qaffk93mfwf163rq3391"; depends=[BiocGenerics cluster ff fields GenomicRanges ggplot2 gplots gridExtra illuminaio IRanges limma MASS matrixStats methylumi plyr RColorBrewer]; }; +RnBeads = derive { name="RnBeads"; version="1.1.8"; sha256="16rz6akm2jkbxnga7g2dvqaiwy4zgmfc031p1ir75qfzwpwmcrjj"; depends=[BiocGenerics cluster ff fields GenomicRanges ggplot2 gplots gridExtra illuminaio IRanges limma MASS matrixStats methylumi plyr RColorBrewer]; }; RnaSeqSampleSize = derive { name="RnaSeqSampleSize"; version="1.1.0"; sha256="0q2w1yd5p9k3pls6ki8yci3r2v4rxi3iy4zk5mafmr7ip0q1rwpp"; depends=[biomaRt edgeR heatmap3 KEGGREST matlab Rcpp]; }; Rnits = derive { name="Rnits"; version="1.3.0"; sha256="0hxll8hlv5nc6vijznhzmvbjh1hxmfy9shm2g8al291yi0gfdmk3"; depends=[affy Biobase boot ggplot2 impute limma qvalue reshape2]; }; Roleswitch = derive { name="Roleswitch"; version="1.7.0"; sha256="01b21yyg0d2v10abcbw08zhswh9nb7wj7s3x5kcaaas7671f06ha"; depends=[Biobase biomaRt Biostrings DBI microRNA plotrix pracma reshape]; }; Rolexa = derive { name="Rolexa"; version="1.25.0"; sha256="1qrf7byimw9s5jp15zmwqk95x34r3yx2npr46gwf1zih06n7kc05"; depends=[Biostrings IRanges mclust ShortRead]; }; RpsiXML = derive { name="RpsiXML"; version="2.11.0"; sha256="0rvma7vynfh5sjhqnbpagilq54dh0wrvvb3jzykwmrak0dbyk7zh"; depends=[annotate AnnotationDbi Biobase graph hypergraph RBGL XML]; }; -Rqc = derive { name="Rqc"; version="1.3.1"; sha256="02kc0ki021m4hxhzlmxfrb9p7p2ibdqan5hr9h67vd2dcnp9yaij"; depends=[BiocGenerics BiocParallel BiocStyle Biostrings ggplot2 IRanges knitr markdown plyr reshape2 S4Vectors ShortRead]; }; -Rsamtools = derive { name="Rsamtools"; version="1.21.14"; sha256="1s2xwz0njbml9x0yw08kk8ykbr5zgzfy5glhzkdhcdfdz7m19ma9"; depends=[BiocGenerics BiocParallel Biostrings bitops GenomeInfoDb GenomicRanges IRanges S4Vectors XVector zlibbioc]; }; -Rsubread = derive { name="Rsubread"; version="1.19.3"; sha256="1qb43g5868m3590p1kzb1g5dcl1dkpggk8qq2lnmbw5v761ryamp"; depends=[]; }; +Rqc = derive { name="Rqc"; version="1.3.3"; sha256="1iaj0cvsiw0irvrlcrbsfj29jzgvwij5r1sbaxbx70s3wdai5vrn"; depends=[BiocGenerics BiocParallel BiocStyle Biostrings biovizBase digest GenomicAlignments GenomicFiles ggplot2 IRanges knitr markdown plyr Rcpp reshape2 Rsamtools S4Vectors shiny ShortRead]; }; +Rsamtools = derive { name="Rsamtools"; version="1.21.18"; sha256="17drdvc3j1h3yrka5j87lqixmcwk29rp7zjc1cspp8692qbh7ggm"; depends=[BiocGenerics BiocParallel Biostrings bitops GenomeInfoDb GenomicRanges IRanges S4Vectors XVector zlibbioc]; }; +Rsubread = derive { name="Rsubread"; version="1.19.5"; sha256="17lnvmkx011i1lq6m9fpgm340b64lsay1mvqaiac2m690siw4pii"; depends=[]; }; Rtreemix = derive { name="Rtreemix"; version="1.31.0"; sha256="1z08y8qhc3sv4pwvji4pks46hxpcpwb9yx8y0927bc96a8mqgax4"; depends=[Biobase graph Hmisc]; }; -S4Vectors = derive { name="S4Vectors"; version="0.7.12"; sha256="1ym0kph98ab7rdm8b2h3g8zhx92dax7c2nbdmkrahfnldiq60sgn"; depends=[BiocGenerics]; }; +S4Vectors = derive { name="S4Vectors"; version="0.7.18"; sha256="0jz2hy7a21yd8cgq87xdxvb89747sqp1vrjka1rs1c39r78ryzg9"; depends=[BiocGenerics]; }; SAGx = derive { name="SAGx"; version="1.43.0"; sha256="111pgl7rzmscgadkbivwa736gpyw1z7zkcj648zq3jhqix569dvd"; depends=[Biobase multtest]; }; SANTA = derive { name="SANTA"; version="2.6.0"; sha256="0zx9azk7j82bzq424rf42nsaw05qyfgzdsy38h6r352mfbmip2dl"; depends=[igraph Matrix snow]; }; SBMLR = derive { name="SBMLR"; version="1.65.0"; sha256="1nmw5c32ka6l12cid54mc4diahjhmyg6fngsd646v70rbzgffn7q"; depends=[deSolve XML]; }; -SCAN_UPC = derive { name="SCAN.UPC"; version="2.11.0"; sha256="1gwjd78qfaqv6xh4ys6rr29b82wc8qxk7ysfjcl06j6n0qk1v4s6"; depends=[affy affyio Biobase Biostrings foreach GEOquery IRanges MASS oligo sva]; }; +SCAN_UPC = derive { name="SCAN.UPC"; version="2.11.1"; sha256="1p1kph38vda29241fka9mglqasnz20gclcbhc6c4c144vmyivsqh"; depends=[affy affyio Biobase Biostrings foreach GEOquery IRanges MASS oligo sva]; }; SELEX = derive { name="SELEX"; version="1.1.0"; sha256="13v2aqphpblwslbnm9yk9lfg31vrc3lz9ds4m8j7584iszmlgnar"; depends=[Biostrings rJava]; }; SEPA = derive { name="SEPA"; version="0.99.0"; sha256="1mc44amd39x1dvl0kamhbsn2cplg7h5j5v5y2lv1gminfl4xs0sw"; depends=[ggplot2 reshape2 segmented shiny topGO]; }; -SGSeq = derive { name="SGSeq"; version="1.3.14"; sha256="0m4dsjyww001bqm3ra01jajl0ys9kx605kjb3fjl4dk6adfkn8h8"; depends=[AnnotationDbi BiocGenerics Biostrings GenomeInfoDb GenomicAlignments GenomicFeatures GenomicRanges igraph IRanges Rsamtools rtracklayer S4Vectors SummarizedExperiment]; }; +SGSeq = derive { name="SGSeq"; version="1.3.20"; sha256="13gl52bypn9gf9ya39mw6ajmbpgbpa0k5x7d6l0bld4c0zji07ik"; depends=[AnnotationDbi BiocGenerics Biostrings GenomeInfoDb GenomicAlignments GenomicFeatures GenomicRanges igraph IRanges Rsamtools rtracklayer RUnit S4Vectors SummarizedExperiment]; }; SIM = derive { name="SIM"; version="1.39.0"; sha256="1r08h5hkciycv4lh998vm742flim07plysgjvrq9dp4c5q4qrzr5"; depends=[globaltest quantreg quantsmooth]; }; SIMAT = derive { name="SIMAT"; version="1.1.5"; sha256="074r9fyrgkay1xr0i3ps1sn7n24y26w595nssy7bryrvhhd8izbr"; depends=[ggplot2 mzR Rcpp reshape2]; }; SJava = derive { name="SJava"; version="0.95.1"; sha256="1cl0qybi71srf1ggawxdy128kz8crn8if4yi8c2m6w9ppah9m763"; depends=[]; }; @@ -469,12 +484,12 @@ SLGI = derive { name="SLGI"; version="1.29.0"; sha256="0jhi3nmgnqf8qix90kpz8gqib SLqPCR = derive { name="SLqPCR"; version="1.35.0"; sha256="1p35xgwf3i8ksznz1gi3bddj0816hdljamcb7smdrq0md5fqmpzb"; depends=[]; }; SMAP = derive { name="SMAP"; version="1.33.0"; sha256="0znl289fclws2vnqgpjnrl8b0s5q4cna3ps3il5783vr64ir88cg"; depends=[]; }; SNAGEE = derive { name="SNAGEE"; version="1.9.0"; sha256="0sn5b8ah9idbz63y1rjx8brz3h58zvh2sk59l4i48nvrm38g169r"; depends=[]; }; -SNPRelate = derive { name="SNPRelate"; version="1.3.8"; sha256="0rmqx5s4748jpcbqjjpkm4snkvbs8c0xpdm5qfg18cgkx3jbpxpr"; depends=[gdsfmt]; }; +SNPRelate = derive { name="SNPRelate"; version="1.3.11"; sha256="0hcb180rli25gxsh0jwazv4l10hhsfhypy2rz5fvqqq8caja5adv"; depends=[gdsfmt]; }; SNPchip = derive { name="SNPchip"; version="2.15.2"; sha256="1px5ifdsly1z8iwd22vj2xb4pk5jhsa3h2z31scw37b0v4daks50"; depends=[Biobase foreach GenomeInfoDb GenomicRanges IRanges lattice oligoClasses SummarizedExperiment]; }; SPEM = derive { name="SPEM"; version="1.9.0"; sha256="09klaxlz1ff77jhjsr95g3s4b5m285zf3fl9w4mv5pc8r1viqplf"; depends=[Biobase Rsolnp]; }; SPIA = derive { name="SPIA"; version="2.21.0"; sha256="0v8m9wfl2kqzzl3k0v7lr7g33ymdnmqi9r2fqyb42mggpq5pwxlm"; depends=[KEGGgraph]; }; SQUADD = derive { name="SQUADD"; version="1.19.0"; sha256="0xss3vhn6471z44gd44i8j5bni8471nb1sq3cx99f2gyk817nxp8"; depends=[RColorBrewer]; }; -SRAdb = derive { name="SRAdb"; version="1.25.0"; sha256="1gkg3qyk98zc8gjlmgg34xgjmh92iy2bl9larhdv5inqv2jn3yj3"; depends=[GEOquery graph RCurl RSQLite]; }; +SRAdb = derive { name="SRAdb"; version="1.27.0"; sha256="0q3gajafsnyzshlf6867v82hzgl4k0yxfm9ilf3054pr75lagn5g"; depends=[GEOquery graph RCurl RSQLite]; }; SSPA = derive { name="SSPA"; version="2.9.0"; sha256="1kkvj3s2l6zzvv6pybx38qrnm3i5dxckx2fpc4snlx7km2w175xz"; depends=[lattice limma qvalue]; }; STAN = derive { name="STAN"; version="1.3.0"; sha256="02qg79aa0j2ns1xswdirgbpwb0dlghd0lbdxgnpmy225wgb7nak6"; depends=[Rsolnp]; }; STATegRa = derive { name="STATegRa"; version="1.3.1"; sha256="0kfwi5qimg4myx5x0gjwrkhz8cxh2hz1mvxla8yn8v8fkb3ryshj"; depends=[affy Biobase calibrate edgeR foreach ggplot2 gplots gridExtra limma MASS]; }; @@ -483,35 +498,36 @@ SVM2CRM = derive { name="SVM2CRM"; version="1.1.0"; sha256="0k3mg9b8i406ssvkzacz SamSPECTRAL = derive { name="SamSPECTRAL"; version="1.23.4"; sha256="0fqnqffw6q5sja3jkw6ddrachs075s5s7rnpg9fli9lgax5r4rbp"; depends=[]; }; ScISI = derive { name="ScISI"; version="1.41.0"; sha256="05snqj8qphcmnkrmv42p6zs92dmi09sd06abn5ll5234my5d0vvn"; depends=[annotate AnnotationDbi apComplex RpsiXML]; }; SemDist = derive { name="SemDist"; version="1.3.0"; sha256="0dvnp3d2s7bc4jv2vm8jikyac2cd23hx7r480g2lkcaic99wbl0s"; depends=[annotate AnnotationDbi]; }; -SeqArray = derive { name="SeqArray"; version="1.9.10"; sha256="0r4308fich1wwdrqfw6d6c88cq8xsyg2p8wvfnhn1ah4lng9s6z3"; depends=[Biostrings gdsfmt GenomicRanges IRanges S4Vectors VariantAnnotation]; }; -SeqGSEA = derive { name="SeqGSEA"; version="1.9.0"; sha256="0znabm84qgzf9m4dk64jppn3s5vzz1sjvrdlr7s6jls8jwi8kqqi"; depends=[Biobase biomaRt DESeq doParallel]; }; -SeqVarTools = derive { name="SeqVarTools"; version="1.7.1"; sha256="04xfph2iphpmlqws5xmibq1jdkclbal2nrf18w7sblqcv67cff7x"; depends=[gdsfmt GenomicRanges GWASExactHW IRanges S4Vectors SeqArray VariantAnnotation]; }; +SeqArray = derive { name="SeqArray"; version="1.9.17"; sha256="1h2bfpjwcw2qp11vg7x0j0j6in65g3kk9qr8h6ky8zijgmbclb5j"; depends=[Biostrings gdsfmt GenomicRanges IRanges S4Vectors VariantAnnotation]; }; +SeqGSEA = derive { name="SeqGSEA"; version="1.9.1"; sha256="12gw3884nflmffipfrd8mh409gfk1x2gwamgj7sll0q2k0pjqh2j"; depends=[Biobase biomaRt DESeq doParallel]; }; +SeqVarTools = derive { name="SeqVarTools"; version="1.7.7"; sha256="1yaxckrrfvgsrc3izmp0k6bj2m40b98mgl1wg0kf4z118agy94jk"; depends=[Biobase gdsfmt GenomicRanges GWASExactHW IRanges S4Vectors SeqArray stringr VariantAnnotation]; }; ShortRead = derive { name="ShortRead"; version="1.27.5"; sha256="0r9gmbg9fd3n6v8c0l1mjkk9x1v6qrisamm5a1nasqbg3wmhmz5k"; depends=[Biobase BiocGenerics BiocParallel Biostrings GenomeInfoDb GenomicAlignments GenomicRanges hwriter IRanges lattice latticeExtra Rsamtools S4Vectors XVector zlibbioc]; }; SigCheck = derive { name="SigCheck"; version="2.1.0"; sha256="012n75gmsifvymbk20pjdv9g8mzmm9bzk98l089ymy5hbddja86b"; depends=[Biobase BiocParallel e1071 MLInterfaces survival]; }; SigFuge = derive { name="SigFuge"; version="1.7.0"; sha256="1b966n3rl4xs3q1vjgkxxfravqr02rdgwyzvr469y757qdqi1day"; depends=[GenomicRanges ggplot2 matlab reshape sigclust]; }; SimBindProfiles = derive { name="SimBindProfiles"; version="1.7.0"; sha256="04m7h5zil05sg9yfgjjzm1p65302fp50vxf8y1jafp1nwqialxwh"; depends=[Biobase limma mclust Ringo]; }; SomatiCA = derive { name="SomatiCA"; version="1.13.0"; sha256="06b3mz199qm2ynal8iq4kp8rv40wbc5zipzwm22nccf97krxl9a4"; depends=[DNAcopy doParallel foreach GenomicRanges IRanges lars rebmix sn]; }; -SomaticSignatures = derive { name="SomaticSignatures"; version="2.5.6"; sha256="17w3dszcaxpkyk9chb7bfdii9zr1hppqhgsarzls4s4p4472f7d1"; depends=[Biobase Biostrings GenomeInfoDb GenomicRanges ggbio ggplot2 IRanges NMF pcaMethods proxy reshape2 S4Vectors VariantAnnotation]; }; +SomaticSignatures = derive { name="SomaticSignatures"; version="2.5.8"; sha256="1ydrgpgjz5a09cfr70jhiir6l19da0mm9d1bgw38c1h8gvyaq6rz"; depends=[Biobase Biostrings GenomeInfoDb GenomicRanges ggbio ggplot2 IRanges NMF pcaMethods proxy reshape2 S4Vectors VariantAnnotation]; }; SpacePAC = derive { name="SpacePAC"; version="1.7.0"; sha256="1ay5hlbm2x9g5mjrq5qksgrrr84vwfk49g9qb2sc9wyc46n5af6k"; depends=[iPAC]; }; SpeCond = derive { name="SpeCond"; version="1.23.0"; sha256="0nbbqazxql9mc5idvrcycrm9fkrnm2vi9zrad3awhc378ippdk8k"; depends=[Biobase fields hwriter mclust RColorBrewer]; }; -SplicingGraphs = derive { name="SplicingGraphs"; version="1.9.1"; sha256="1s3kvaxrrvfndp4imavj0r9zw0rg37cn9xwxhi5zpfd7a784z1xk"; depends=[BiocGenerics GenomeInfoDb GenomicAlignments GenomicFeatures GenomicRanges graph igraph IRanges Rgraphviz Rsamtools S4Vectors]; }; +SplicingGraphs = derive { name="SplicingGraphs"; version="1.9.3"; sha256="1r5579dd0695gyw3iqvb34j823nkashwmyx9isq9bzlkaan14d01"; depends=[BiocGenerics GenomeInfoDb GenomicAlignments GenomicFeatures GenomicRanges graph igraph IRanges Rgraphviz Rsamtools S4Vectors]; }; Starr = derive { name="Starr"; version="1.25.0"; sha256="0553rfkhzzlszhmfcrl7r7n2jmvvz9rqj91x131x3jsmb1qavw57"; depends=[affxparser affy MASS pspline Ringo zlibbioc]; }; Streamer = derive { name="Streamer"; version="1.15.2"; sha256="0mah1sq797ihy82mvb6vyppggap3nxcpwbnswxf1rw0jxhnjnmll"; depends=[BiocGenerics graph RBGL]; }; -SummarizedExperiment = derive { name="SummarizedExperiment"; version="0.3.2"; sha256="0k7dmly8g1qhpqx4qv376ixkwvx073ydc5xqi29s81mwp5fq08zi"; depends=[Biobase BiocGenerics GenomeInfoDb GenomicRanges IRanges S4Vectors]; }; +SummarizedExperiment = derive { name="SummarizedExperiment"; version="0.3.9"; sha256="0vrxq97n9kjmvvhc2vma5x9clilk4pacb25d1s7769r4rbgr30my"; depends=[Biobase BiocGenerics GenomeInfoDb GenomicRanges IRanges S4Vectors]; }; Sushi = derive { name="Sushi"; version="1.6.1"; sha256="0g1fk0xrn584l49r73crj0bc5z2y6rdzyf54d221r7k119njp3dw"; depends=[biomaRt zoo]; }; -SwimR = derive { name="SwimR"; version="1.7.0"; sha256="07kh24m9d1q3swj3srjybj6lq68s89750fbvlg449px4aq23yrq0"; depends=[gplots heatmap_plus R2HTML signal]; }; -TCC = derive { name="TCC"; version="1.9.2"; sha256="1srlaiavii6sr0d3fiqngp1rchdfxgnmsf7h29szyy34aajqygbw"; depends=[baySeq DESeq DESeq2 edgeR ROC samr]; }; +SwimR = derive { name="SwimR"; version="1.7.1"; sha256="1rhyq7a17h4zbragmglaf3blxl9iyyy92ckspp6vq8v1nr805sv6"; depends=[gplots heatmap_plus R2HTML signal]; }; +TCC = derive { name="TCC"; version="1.9.5"; sha256="03h7bgzrff3m7dfvd7wmxc941lhxyl93mwk1rfdlfhvjk997cmxf"; depends=[baySeq DESeq DESeq2 edgeR ROC samr]; }; +TCGAbiolinks = derive { name="TCGAbiolinks"; version="0.99.4"; sha256="1qhizy9ijx7yml6mz460ld0bq1xi0m9qp4qdajgnlrsfm0952a1m"; depends=[affy Biobase BiocGenerics biomaRt coin ConsensusClusterPlus data_table devtools dnet doParallel downloader dplyr EDASeq edgeR genefilter GenomicFeatures GenomicRanges GGally ggplot2 gplots heatmap_plus igraph IRanges limma plyr RColorBrewer RCurl rjson rvest S4Vectors scales stringr SummarizedExperiment supraHex survival xlsx XML xtable]; }; TDARACNE = derive { name="TDARACNE"; version="1.19.0"; sha256="0nwg355n0qs781801pmmwfwp66sa2ci7g6gfdh4669067j4qbqhb"; depends=[Biobase GenKern Rgraphviz]; }; -TEQC = derive { name="TEQC"; version="3.9.0"; sha256="0dkmh901jkf529jcshvr79jmkvw0824r4dxgp6l6vgv9j5c6nf25"; depends=[Biobase BiocGenerics hwriter IRanges Rsamtools]; }; -TFBSTools = derive { name="TFBSTools"; version="1.7.0"; sha256="1c38n6xlm4cfrhh9qih0d8xh3d7r7w797fjcbmhsr2zhd7qssrqb"; depends=[BiocParallel Biostrings BSgenome caTools CNEr DirichletMultinomial GenomicRanges gtools IRanges RSQLite rtracklayer S4Vectors seqLogo TFMPvalue XVector]; }; +TEQC = derive { name="TEQC"; version="3.9.2"; sha256="0j6pkvr5d27ib0pw4jh7vm44yarl4cgag9fap9h4l71q1qwxfc1r"; depends=[Biobase BiocGenerics hwriter IRanges Rsamtools]; }; +TFBSTools = derive { name="TFBSTools"; version="1.7.6"; sha256="1j1f9lx09k5a9b4364p1ra7kd9j7mmxin8k9h51d6bpv5i2jl9nd"; depends=[Biobase BiocGenerics BiocParallel Biostrings BSgenome caTools CNEr DirichletMultinomial GenomicRanges gtools IRanges RSQLite rtracklayer S4Vectors seqLogo TFMPvalue XML XVector]; }; TIN = derive { name="TIN"; version="1.1.0"; sha256="0npf3gwh2izvsa5j0zjy1gkm69nrxhcjlm2ha621fc1gz7lx1i2y"; depends=[aroma_affymetrix data_table impute squash stringr WGCNA]; }; -TPP = derive { name="TPP"; version="1.1.3"; sha256="152dpyn6ldw4b3ys0b1ylriq0l1hr9l0qjgfh19bvs2gflhbzyah"; depends=[Biobase doParallel foreach ggplot2 gridExtra nls2 openxlsx plyr reshape2 VennDiagram VGAM]; }; -TRONCO = derive { name="TRONCO"; version="1.1.0"; sha256="18zmn1cxysar3a19n9i47r2gda5r5jvz0bk209wh6kqlhs001q9v"; depends=[graph lattice Rgraphviz]; }; -TSCAN = derive { name="TSCAN"; version="1.5.0"; sha256="1hkmfn9svbgpvxpszfdxjc23qq8x60prsbrgv7z5n3na4sl7y5z5"; depends=[combinat fastICA ggplot2 gplots igraph mclust mgcv plyr shiny]; }; +TPP = derive { name="TPP"; version="1.1.4"; sha256="0m21vv8v0cpq5f9116k7jip5sjg6aaz12yakck2j8b2hw4v0pkw1"; depends=[Biobase doParallel foreach ggplot2 gridExtra nls2 openxlsx plyr reshape2 VennDiagram VGAM]; }; +TRONCO = derive { name="TRONCO"; version="2.0.0-16"; sha256="1rc72cbbiwli164g0acrff68fdpd382i18m9hpzzn5fxn04w0c1w"; depends=[bnlearn cgdsr doParallel ggplot2 gridExtra gtable igraph RColorBrewer reshape2 Rgraphviz scales xtable]; }; +TSCAN = derive { name="TSCAN"; version="1.7.0"; sha256="0z3bl6vqx6ck8pa3pkc2z2g8gkkn9fvrz5vi8agkd0v2cnz6pjfs"; depends=[combinat fastICA ggplot2 gplots igraph mclust mgcv plyr shiny]; }; TSSi = derive { name="TSSi"; version="1.15.0"; sha256="0475zw1s34ayiz0v9i770rmha4rx9i3zzkjvyskgvsdpgsq9wl4j"; depends=[Biobase BiocGenerics Hmisc IRanges minqa plyr S4Vectors]; }; TargetScore = derive { name="TargetScore"; version="1.7.0"; sha256="0lkkxzi3fi0dxika09fkbakq54c2sjw4g4y9bafcy3f225fac8x8"; depends=[Matrix pracma]; }; TargetSearch = derive { name="TargetSearch"; version="1.25.0"; sha256="071p06gb1rn6sdhdpi7g05rflp6jgs0cdff13gj8hr5jykyw5ix7"; depends=[mzR]; }; -TimerQuant = derive { name="TimerQuant"; version="0.99.3"; sha256="03qa5k4xc8pv677azdc0ar66p23jdyqyblckdnrqlwnscln0y77g"; depends=[deSolve dplyr ggplot2 gridExtra locfit shiny]; }; +TimerQuant = derive { name="TimerQuant"; version="0.99.4"; sha256="08wbm93256n1nir80icsv4mgkmdix5h138bwapmggw3c6hlxmscy"; depends=[deSolve dplyr ggplot2 gridExtra locfit shiny]; }; TitanCNA = derive { name="TitanCNA"; version="1.7.1"; sha256="0a64bqgyn18qdvgzmc6kqr6c16jlqyz0vah0fm2qwdjz3zmjd081"; depends=[foreach GenomeInfoDb IRanges Rsamtools]; }; ToPASeq = derive { name="ToPASeq"; version="1.3.0"; sha256="1m6mh30fpf9mmgg2wsv08qvizw0cpa6dz5abspgbw3q0vaskm2db"; depends=[Biobase clipper DESeq DESeq2 edgeR fields GenomicRanges graph graphite gRbase KEGGgraph limma locfit qpgraph R_utils RBGL Rcpp Rgraphviz TeachingDemos]; }; TransView = derive { name="TransView"; version="1.13.0"; sha256="14fanxl8lqam3492c5sbvhsjwbayrx7dcp5wpsbqrcvbssmfa3cx"; depends=[GenomicRanges gplots IRanges Rsamtools zlibbioc]; }; @@ -520,14 +536,14 @@ TypeInfo = derive { name="TypeInfo"; version="1.35.0"; sha256="0rxwfaqg8sg70hiq8 UNDO = derive { name="UNDO"; version="1.11.0"; sha256="173cdpp0gipwplxdf7ynxqnv8fqfkbyx7xmr5cx396zi8gpq3am4"; depends=[Biobase BiocGenerics boot MASS nnls]; }; UniProt_ws = derive { name="UniProt.ws"; version="2.9.2"; sha256="0pby1c7y8fxkpdd2knbv8gbxs78ry1dz8q9zqw6bakp831v5kbgw"; depends=[AnnotationDbi BiocGenerics RCurl RSQLite]; }; VanillaICE = derive { name="VanillaICE"; version="1.31.3"; sha256="0niimjngjx8wq2fylzjdijb2za4w4ia53aqkdnjwjfl78rg2hwch"; depends=[Biobase BiocGenerics crlmm data_table foreach GenomeInfoDb GenomicRanges IRanges lattice matrixStats oligoClasses S4Vectors SummarizedExperiment]; }; -VariantAnnotation = derive { name="VariantAnnotation"; version="1.15.21"; sha256="0b5i9q2xnclkrziri6575irmm5y3r2g9x45dr5qnq91g9rxi4m7v"; depends=[AnnotationDbi Biobase BiocGenerics Biostrings BSgenome DBI GenomeInfoDb GenomicFeatures GenomicRanges IRanges Rsamtools rtracklayer S4Vectors SummarizedExperiment XVector zlibbioc]; }; -VariantFiltering = derive { name="VariantFiltering"; version="1.5.16"; sha256="1fvzhxvirzxcrqw3bm86f5id29s993gpmbwjar5maj86881l1c2f"; depends=[AnnotationDbi Biobase BiocGenerics BiocParallel Biostrings BSgenome DBI GenomeInfoDb GenomicFeatures GenomicRanges graph Gviz IRanges RBGL Rsamtools RSQLite S4Vectors shiny VariantAnnotation XVector]; }; +VariantAnnotation = derive { name="VariantAnnotation"; version="1.15.31"; sha256="0lnj8r27g3gdcmbjpvzb2h5jfy6j2fqyll0cvjlkcjps2sd67qnd"; depends=[AnnotationDbi Biobase BiocGenerics Biostrings BSgenome DBI GenomeInfoDb GenomicFeatures GenomicRanges IRanges Rsamtools rtracklayer S4Vectors SummarizedExperiment XVector zlibbioc]; }; +VariantFiltering = derive { name="VariantFiltering"; version="1.5.17"; sha256="1xblj18nl6y7bk3ggshxq46khb1szdh8g5hraf89dknmsdm0gbq3"; depends=[AnnotationDbi Biobase BiocGenerics BiocParallel Biostrings BSgenome DBI GenomeInfoDb GenomicFeatures GenomicRanges graph Gviz IRanges RBGL Rsamtools RSQLite S4Vectors shiny VariantAnnotation XVector]; }; VariantTools = derive { name="VariantTools"; version="1.11.0"; sha256="1yyx9l6q3v4igm2ppnrsj9c7p4p0zpkqwjyf9d7b7rqvrk9yjyrv"; depends=[Biobase BiocGenerics BiocParallel Biostrings BSgenome GenomeInfoDb GenomicFeatures GenomicRanges gmapR IRanges Matrix Rsamtools rtracklayer S4Vectors VariantAnnotation]; }; Vega = derive { name="Vega"; version="1.17.0"; sha256="1c39112czlw9hgh9gmkwxhhz9kwki48k8lsfmy3hkzxqpxx61h01"; depends=[]; }; VegaMC = derive { name="VegaMC"; version="3.7.0"; sha256="046wly5sn4vwk3h4bcick8q5dpjrfjq393rqjl8y4v24iqynlyqd"; depends=[Biobase biomaRt genoset]; }; -XBSeq = derive { name="XBSeq"; version="0.99.7"; sha256="01vi1p5h1lin0d62mm92y745crv21qqf24kwaj0nlhny93aq45gp"; depends=[Biobase BiocGenerics Delaporte DESeq2 dplyr ggplot2 locfit magrittr matrixStats pracma]; }; +XBSeq = derive { name="XBSeq"; version="0.99.8"; sha256="08si4x14xz4p2rqy8766b55bpca939xkc54vc9jvj5dfyc5cp7ih"; depends=[Biobase BiocGenerics Delaporte DESeq2 dplyr ggplot2 locfit magrittr matrixStats pracma]; }; XDE = derive { name="XDE"; version="2.15.0"; sha256="17i8zxb6q4wpsa8lymcnilmr39ip1a54h6rqyl3m7qa8xwb0gv50"; depends=[Biobase BiocGenerics genefilter gtools MergeMaid mvtnorm]; }; -XVector = derive { name="XVector"; version="0.9.1"; sha256="0l5l45i7sx1j51s3wkab207qwbk77i8iazd26isf0yp3rsb84a4c"; depends=[BiocGenerics IRanges S4Vectors]; }; +XVector = derive { name="XVector"; version="0.9.4"; sha256="0nl1hy2mrfz97xm8m13a5k4nm4hjpxhhnns1niph707f18iw1bj7"; depends=[BiocGenerics IRanges S4Vectors zlibbioc]; }; a4 = derive { name="a4"; version="1.17.0"; sha256="0pn0gm4xkngz72i92h58d0xbpcx04938x4vm0mqsilrjapchripj"; depends=[a4Base a4Classif a4Core a4Preproc a4Reporting]; }; a4Base = derive { name="a4Base"; version="1.17.0"; sha256="13cxavpf8x7y7n6aszdibpq225raj15klnidk59kpxn4vmpyqskl"; depends=[a4Core a4Preproc annaffy AnnotationDbi Biobase genefilter glmnet gplots limma mpm multtest]; }; a4Classif = derive { name="a4Classif"; version="1.17.0"; sha256="1inascpwzzshy1halmsalz7nk9m63rbpg6xh0wxydaflm8wbxmr1"; depends=[a4Core a4Preproc glmnet MLInterfaces pamr ROCR varSelRF]; }; @@ -535,9 +551,9 @@ a4Core = derive { name="a4Core"; version="1.17.0"; sha256="07fc0kg4l44mbps49bdiv a4Preproc = derive { name="a4Preproc"; version="1.17.0"; sha256="1xb7jqvb4x5s9a5gbn8b7z69cwhsbmln5s0lymxcgmfb73sjczfw"; depends=[AnnotationDbi]; }; a4Reporting = derive { name="a4Reporting"; version="1.17.0"; sha256="1fpdkw048gv9031rz7zkkx55i5qw5b03zdhykxkcczb1f51znby2"; depends=[annaffy xtable]; }; aCGH = derive { name="aCGH"; version="1.47.0"; sha256="095arlryay4gdr6kva7vf9lcby60pyx5bs4vcx586zgwskzpb2ln"; depends=[Biobase cluster multtest survival]; }; -acde = derive { name="acde"; version="0.99.5"; sha256="1bbsfr7a2sivb6dpn06hwj0i95wdlfxzba4a36pakx7nzn6nv76p"; depends=[boot]; }; +acde = derive { name="acde"; version="0.99.6"; sha256="0spfm9ivix09d79nbkgvqw0jggw42nmk4xb7iwwcsazpz3881clf"; depends=[boot]; }; adSplit = derive { name="adSplit"; version="1.39.0"; sha256="1jprbqwhksyp9jf05r5dbfzgn30xm16shqsf8yi9b3nr7z2swvwm"; depends=[AnnotationDbi Biobase cluster multtest]; }; -affxparser = derive { name="affxparser"; version="1.41.6"; sha256="1d1jnsx3dq52yfcchnagidlsw73dk7j5pagqfzba6pa6vv8l3sl0"; depends=[]; }; +affxparser = derive { name="affxparser"; version="1.41.7"; sha256="06wrjn2xzywicdgfr278i788cgk2yf2j1cihn0kv3sdj3jvhvmid"; depends=[]; }; affy = derive { name="affy"; version="1.47.1"; sha256="1c9ggyqhj65mj0nq9xsqfmzp4a5705qj67swjpk5bmqajxr390a3"; depends=[affyio Biobase BiocGenerics BiocInstaller preprocessCore zlibbioc]; }; affyContam = derive { name="affyContam"; version="1.27.0"; sha256="1hd9kchhdjcnkxlf6kcc59jb5a9v67671shvzprraa1lg4800j5x"; depends=[affy Biobase]; }; affyILM = derive { name="affyILM"; version="1.21.0"; sha256="1gvagg83p4vxp6q72s7camcg5lhxdfy7rmm3a2p2n29267xvcz5x"; depends=[affxparser affy Biobase gcrma]; }; @@ -560,12 +576,12 @@ annotationTools = derive { name="annotationTools"; version="1.43.0"; sha256="1dq anota = derive { name="anota"; version="1.17.0"; sha256="0grdmpdg03wqjs6rk558nvl8vvdi6my0jv06f3h364pk44hrijdn"; depends=[multtest qvalue]; }; antiProfiles = derive { name="antiProfiles"; version="1.9.1"; sha256="07gzl7wsvv3x7in7n1fwq4cm8bqhlrxwq6ra1k2556z9z8ad7y33"; depends=[locfit matrixStats]; }; apComplex = derive { name="apComplex"; version="2.35.0"; sha256="0h9vvz62fbnqqw2qz4kpcr0s40yj7swy0plkdaq51q04p41z016r"; depends=[graph RBGL Rgraphviz]; }; -aroma_light = derive { name="aroma.light"; version="2.5.2"; sha256="1dw3b06fq0da6ji13x42iqwwidx2ajg8q75svsd5y98dly8jniib"; depends=[matrixStats R_methodsS3 R_oo R_utils]; }; +aroma_light = derive { name="aroma.light"; version="2.9.0"; sha256="059bdqs4ib0jlzd94380226rbzdhh8xjf8az5ikv82kx3yvhdjf4"; depends=[matrixStats R_methodsS3 R_oo R_utils]; }; arrayMvout = derive { name="arrayMvout"; version="1.27.0"; sha256="1czqsd34d8rb9h4vwp2m6ficvi41gbdgrilgbl0fb01vlp79qq0k"; depends=[affy affyContam Biobase lumi mdqc parody simpleaffy]; }; arrayQuality = derive { name="arrayQuality"; version="1.47.0"; sha256="0f3wvvb1a78hzlxansjfh065vbyh2qk9vz3jna6294zc7k4r7wfb"; depends=[gridBase hexbin limma marray RColorBrewer]; }; arrayQualityMetrics = derive { name="arrayQualityMetrics"; version="3.25.0"; sha256="0h90j2fj87bvwj1cjy7qq5mnfy4jabqa8ijq23gp3p51qwyh84zr"; depends=[affy affyPLM beadarray Biobase Cairo genefilter gridSVG Hmisc hwriter lattice latticeExtra limma RColorBrewer setRNG vsn XML]; }; attract = derive { name="attract"; version="1.21.0"; sha256="0kl2kgxvm9ix2lwcwilmzcjhxbhx99afn6g6608aq26649q3k2sz"; depends=[AnnotationDbi Biobase cluster GOstats limma]; }; -ballgown = derive { name="ballgown"; version="2.1.1"; sha256="0nb9xhcvdl9zpfix3rsr0dlm7f7smiabbzfiw50psw9mg8wki0dn"; depends=[Biobase GenomeInfoDb GenomicRanges IRanges limma RColorBrewer rtracklayer S4Vectors sva]; }; +ballgown = derive { name="ballgown"; version="2.1.2"; sha256="0hwd72nycqcdrrfmmmg4cpd2d180jsg5azl7gr9z4r5fmsmiv76i"; depends=[Biobase GenomeInfoDb GenomicRanges IRanges limma RColorBrewer rtracklayer S4Vectors sva]; }; bamsignals = derive { name="bamsignals"; version="1.1.0"; sha256="1ga4swlqmjg4xnmkk16h0qjh3dpz7n0pra2233j4cz78cn8zvj3p"; depends=[BiocGenerics GenomicRanges IRanges Rcpp Rhtslib zlibbioc]; }; baySeq = derive { name="baySeq"; version="2.3.0"; sha256="1l0is5dcwip7babll7mpsahhj69v1j1d7caq64ak6qhb477pmak5"; depends=[abind GenomicRanges perm]; }; beadarray = derive { name="beadarray"; version="2.19.1"; sha256="0al50lli8ckbr8cs38r6xr5v4rldf6xy7iwl5hbs5avxnibk3s8k"; depends=[AnnotationDbi BeadDataPackR Biobase BiocGenerics GenomicRanges ggplot2 illuminaio IRanges limma reshape2]; }; @@ -573,15 +589,15 @@ beadarraySNP = derive { name="beadarraySNP"; version="1.35.0"; sha256="0g6ba4iyn betr = derive { name="betr"; version="1.25.0"; sha256="0jd7r069jlfp5fj51xw8k6jpxq5kb364xi9331l06hwijp3msrk6"; depends=[Biobase limma mvtnorm]; }; bgafun = derive { name="bgafun"; version="1.31.0"; sha256="18wk42h1i06j3swlsac9vnkc7riimk7qap59lygji1p3zvy1nkpx"; depends=[ade4 made4 seqinr]; }; bgx = derive { name="bgx"; version="1.35.0"; sha256="1cawfanrxq82b24ny050hv4p607k2zhfxllgl8j1j9qm9n4yk4yk"; depends=[affy Biobase gcrma]; }; -bigmemoryExtras = derive { name="bigmemoryExtras"; version="1.13.3"; sha256="0jniyz1b11yk00azqxswfdipri84a28ni30kxpazb57d5m6s53h2"; depends=[bigmemory Biobase]; }; +bigmemoryExtras = derive { name="bigmemoryExtras"; version="1.13.5"; sha256="0rs08rwawnm3k88p0arl1rmndma48yyvryr96wj678haf4zjkkx8"; depends=[bigmemory Biobase]; }; bioDist = derive { name="bioDist"; version="1.41.0"; sha256="14a18ky9x36fa8yx3kry23c0vfazxy0lg0j2zkdnr1irngc9wnw5"; depends=[Biobase KernSmooth]; }; bioassayR = derive { name="bioassayR"; version="1.7.7"; sha256="1pflygamq0l0pdps4ay3rl4f8c1njrb55lnl0p2z7mgpj6dbgvf8"; depends=[BiocGenerics DBI Matrix rjson RSQLite XML]; }; biocGraph = derive { name="biocGraph"; version="1.31.0"; sha256="069n4867pkygrsgfjp6arnnmcvlij03r1a2kbs9jgnpx4knck09i"; depends=[BiocGenerics geneplotter graph Rgraphviz]; }; -biocViews = derive { name="biocViews"; version="1.37.10"; sha256="1wa9avvgmfvl44l7gfsg7ivbsylixh413ckc5p8xryax6scb2kzy"; depends=[Biobase graph knitr RBGL RCurl RUnit XML]; }; -biomaRt = derive { name="biomaRt"; version="2.25.1"; sha256="1dk55qrfxyzgnjk90qy6mfgw04fpwfy4jkhwbmnpnky826mg7bwb"; depends=[AnnotationDbi RCurl XML]; }; +biocViews = derive { name="biocViews"; version="1.37.13"; sha256="0rglrlvb73mr4p7qxav1ph7d5mm4bh7aj5ypp1wkir00cgb8y8xm"; depends=[Biobase graph knitr RBGL RCurl RUnit XML]; }; +biomaRt = derive { name="biomaRt"; version="2.25.3"; sha256="1syhy3d75d1zlknd9xwp34n01p7w2666dk5vsvp8v2cd5vi1xah0"; depends=[AnnotationDbi RCurl XML]; }; biomvRCNS = derive { name="biomvRCNS"; version="1.9.1"; sha256="0ni7ncip0vx1ipyrgd2kkasw6cmxbr2ha2dsqb0bizyyf2981rnh"; depends=[GenomicRanges Gviz IRanges mvtnorm]; }; biosvd = derive { name="biosvd"; version="2.5.0"; sha256="0xnc3vpbj5p14w2fwql8vpz9lyvivq3kjmwsr62abn418ampa941"; depends=[Biobase BiocGenerics NMF]; }; -biovizBase = derive { name="biovizBase"; version="1.17.1"; sha256="0fffqm8z7x849rd0k7vhpbzwyrx5s0w75iz78627rglczjff6ddp"; depends=[AnnotationDbi BiocGenerics Biostrings dichromat GenomeInfoDb GenomicAlignments GenomicFeatures GenomicRanges Hmisc IRanges RColorBrewer Rsamtools S4Vectors scales SummarizedExperiment VariantAnnotation]; }; +biovizBase = derive { name="biovizBase"; version="1.17.2"; sha256="0q6mzz32zbs59cywcw8865mnsw48qzyikn0453lx0ikvj22r2s12"; depends=[AnnotationDbi BiocGenerics Biostrings dichromat GenomeInfoDb GenomicAlignments GenomicFeatures GenomicRanges Hmisc IRanges RColorBrewer Rsamtools S4Vectors scales SummarizedExperiment VariantAnnotation]; }; birta = derive { name="birta"; version="1.13.0"; sha256="01lrwg4naks85gcrlg3sk3pr328j40b1ji4m4bn3s74rqn6sb52h"; depends=[Biobase limma MASS]; }; birte = derive { name="birte"; version="1.4.0"; sha256="0fyz2chcgcp98lk6zj21lsixmkr06hd80dbg2j25a4rx2pv6qn5s"; depends=[Biobase limma MASS nem Rcpp RcppArmadillo ridge]; }; blima = derive { name="blima"; version="1.3.0"; sha256="1i7njg1lw76717irmfbpy9pmv8hy7nzyini2wm6625cafizp5xq8"; depends=[beadarray Biobase BiocGenerics]; }; @@ -596,7 +612,7 @@ categoryCompare = derive { name="categoryCompare"; version="1.13.0"; sha256="08r ccrepe = derive { name="ccrepe"; version="1.5.0"; sha256="1cza3f27216aqlhmc3qfdxvjwywzhwklfg27ls37fbzv6a40wy8j"; depends=[infotheo]; }; cellGrowth = derive { name="cellGrowth"; version="1.13.0"; sha256="1x7fxjhddv46wxv7qy1j8vzjna07r0drizpmsjakjw21mr4r3w06"; depends=[lattice locfit]; }; cellHTS = derive { name="cellHTS"; version="1.39.1"; sha256="1xvnk8s7grhmjdh369zp6w6fasgrysbgnfyshgckaghvnlb5c962"; depends=[genefilter prada RColorBrewer]; }; -cellHTS2 = derive { name="cellHTS2"; version="2.33.0"; sha256="0gmf9xly6b9xskk6700m5jpc61hx4p6nbc5m47xmircwnn6lcvxi"; depends=[Biobase Category genefilter GSEABase hwriter locfit prada RColorBrewer splots vsn]; }; +cellHTS2 = derive { name="cellHTS2"; version="2.33.1"; sha256="0w7dmd24ylsgkra8m6mawfsgifysda098ldk7csffz4p8nyr5dah"; depends=[Biobase Category genefilter GSEABase hwriter locfit prada RColorBrewer splots vsn]; }; cghMCR = derive { name="cghMCR"; version="1.27.0"; sha256="1chyl52628gnxnsky2d0xbxsj7x3jizc1h914cip9i90akir6srk"; depends=[BiocGenerics CNTools DNAcopy limma]; }; charm = derive { name="charm"; version="2.15.0"; sha256="14mrkgzfhljsmf4saw64nkid583mx0wxwjfq16gzm5j8q5d2qy88"; depends=[Biobase Biostrings BSgenome ff fields genefilter gtools IRanges limma nor1mix oligo oligoClasses preprocessCore RColorBrewer siggenes SQN sva]; }; chimera = derive { name="chimera"; version="1.11.0"; sha256="12341saahq2b3bwiqd2hpmykvsfdbzqy4082iv4lp3pjdzpvbmmx"; depends=[AnnotationDbi Biobase GenomicAlignments GenomicRanges Rsamtools]; }; @@ -609,11 +625,11 @@ cisPath = derive { name="cisPath"; version="1.9.0"; sha256="1jdq159ixiixh9ppfc5g cleanUpdTSeq = derive { name="cleanUpdTSeq"; version="1.7.1"; sha256="0inszzss1fqyhw18lx40iycvpzkm18djxmad1li8bd22hss759c2"; depends=[BiocGenerics BSgenome e1071 GenomicRanges seqinr]; }; cleaver = derive { name="cleaver"; version="1.7.0"; sha256="14vbdagy61imql6z2qazzlqzp0r9ridydn7phvajc84lnwbf8xa3"; depends=[Biostrings IRanges]; }; clippda = derive { name="clippda"; version="1.19.0"; sha256="1gd5b2n2qa9bv1n93vcdz8lg8kmn1lv923i3gzq8pcy7fbz7m5cs"; depends=[Biobase lattice limma rgl scatterplot3d statmod]; }; -clipper = derive { name="clipper"; version="1.9.1"; sha256="1z0wjkzx9v0wlsx2wdjxch7j6m3hlkmg5zy8fddgbv3fdc750ppm"; depends=[Biobase corpcor graph gRbase igraph KEGGgraph Matrix qpgraph RBGL Rcpp]; }; +clipper = derive { name="clipper"; version="1.9.2"; sha256="10wf7jkgj1ad30piaqmy7yl7402agpjcz9xizcsjbzypsqwy20z2"; depends=[Biobase corpcor graph gRbase igraph KEGGgraph Matrix qpgraph RBGL Rcpp]; }; clonotypeR = derive { name="clonotypeR"; version="1.7.0"; sha256="1pwwjgln7r7035fdqqfb69fgql91cxfablbwid2m5xkdrwzpb57s"; depends=[]; }; clst = derive { name="clst"; version="1.17.1"; sha256="08gqxcjchzywvc67nfjmr2i1xxm71i1j00qxdq3zs6p9y4n65qa0"; depends=[lattice ROC]; }; clstutils = derive { name="clstutils"; version="1.17.1"; sha256="04gwj8mlbqd5l2nas146vk0vzad0z1y4225g935h9baspcmdh3f8"; depends=[ape clst lattice rjson RSQLite]; }; -clusterProfiler = derive { name="clusterProfiler"; version="2.3.6"; sha256="1hfknmad6wix5ciwcfjn80s0y78966gfkifhxa6wxpkddmdhklqw"; depends=[AnnotationDbi DOSE ggplot2 GOSemSim KEGGREST magrittr plyr qvalue topGO]; }; +clusterProfiler = derive { name="clusterProfiler"; version="2.3.8"; sha256="1218gsrrf01khfj2vjakf2gshb0k7ww9vbd6dgdxw4kbv2ymcjfy"; depends=[AnnotationDbi DOSE ggplot2 GOSemSim KEGGREST magrittr plyr qvalue topGO]; }; clusterStab = derive { name="clusterStab"; version="1.41.0"; sha256="0sgj2k70fc3r3s19vxcx95z8s3a42yshl78swxp0qp55kidbhvdp"; depends=[Biobase]; }; cn_farms = derive { name="cn.farms"; version="1.17.0"; sha256="09xasmanimx3mzis786iwy2nvxqa5rzvrvrz1hpsiyh5y77yrbnb"; depends=[affxparser Biobase DBI DNAcopy ff lattice oligo oligoClasses preprocessCore snow]; }; cn_mops = derive { name="cn.mops"; version="1.15.3"; sha256="0swin9qyzi2fcc0frq0xnzmj789vbjj0mi2wnmmy131blp7iy6x9"; depends=[Biobase BiocGenerics GenomicRanges IRanges Rsamtools]; }; @@ -622,9 +638,9 @@ coGPS = derive { name="coGPS"; version="1.13.0"; sha256="160cf9ijn5crvhwbqldix1n coMET = derive { name="coMET"; version="1.1.0"; sha256="01baf156p0ldqhczrin2lsf4jir7158b0db5732jddnl5ayghsi3"; depends=[biomaRt colortools GenomicRanges ggbio ggplot2 gridExtra Gviz hash IRanges psych rtracklayer S4Vectors trackViewer]; }; coRNAi = derive { name="coRNAi"; version="1.19.0"; sha256="1vidwyq8rnkbi0pfbh3mk8m3qj8acwqn7q6jm35gahy4y3p0nq7x"; depends=[cellHTS2 gplots lattice limma locfit MASS]; }; cobindR = derive { name="cobindR"; version="1.7.1"; sha256="0mya51pynfdxfap3paylinqg10fpir7flsz1bng0sk34y15jnxbz"; depends=[BiocGenerics biomaRt Biostrings BSgenome gmp gplots IRanges mclust rtfbs seqinr yaml]; }; -codelink = derive { name="codelink"; version="1.37.5"; sha256="1nh7cfhamy5l8qsxixwl4bg8k524hlr4l8v5mqf4qis9f3zp3l3x"; depends=[annotate Biobase BiocGenerics limma]; }; -cogena = derive { name="cogena"; version="1.1.6"; sha256="0sf0513qhqpb8mm2ydchdnv20dj9s510nv4rcs5b89vnwm62j0i0"; depends=[amap Biobase biwt class cluster corrplot devtools doParallel dplyr fastcluster foreach ggplot2 gplots igraph jsonlite kohonen mclust reshape2 STRINGdb]; }; -compEpiTools = derive { name="compEpiTools"; version="1.3.4"; sha256="0y12sn2dh0x2y7nghkh6dm98b4ilg41694shw3m0fcgaz22c30kp"; depends=[AnnotationDbi BiocGenerics Biostrings GenomeInfoDb GenomicFeatures GenomicRanges gplots IRanges methylPipe Rsamtools S4Vectors topGO XVector]; }; +codelink = derive { name="codelink"; version="1.37.8"; sha256="0f5ixqd7sgczy2dx9yhkhcj1r2269h1bin3nkwkpldc6z4aqbzq4"; depends=[annotate Biobase BiocGenerics limma]; }; +cogena = derive { name="cogena"; version="1.2.0"; sha256="14p01k6dmh7hb34gbmbb7cvx8zsqc8mpbnah3vl2vpirh7i3p7nb"; depends=[amap apcluster Biobase biwt class cluster corrplot devtools doParallel dplyr fastcluster foreach ggplot2 gplots kohonen mclust reshape2]; }; +compEpiTools = derive { name="compEpiTools"; version="1.3.5"; sha256="0mbcgsmabyvm6g8mb95fkr2cnkqd3zz9hx9vz0qrbc8rx0nx5jp4"; depends=[AnnotationDbi BiocGenerics Biostrings GenomeInfoDb GenomicFeatures GenomicRanges gplots IRanges methylPipe Rsamtools S4Vectors topGO XVector]; }; compcodeR = derive { name="compcodeR"; version="1.5.3"; sha256="0208sxff40mjizr47zf6yf87irnnjm0gizdk9h5frbizdxl2i9nn"; depends=[caTools edgeR gdata ggplot2 gplots gtools KernSmooth knitr lattice limma markdown MASS modeest ROCR sm stringr vioplot]; }; conumee = derive { name="conumee"; version="1.1.0"; sha256="1sxl5m7yfqbzg76n06y1jcv0v75y7wf3ad66zw8v004nz84diaix"; depends=[DNAcopy GenomeInfoDb GenomicRanges IRanges minfi rtracklayer]; }; convert = derive { name="convert"; version="1.45.0"; sha256="1sg152ma0y0n6vy9f0zas6znmndjp1j0n8vxa6ymw4pkg7li0fxa"; depends=[Biobase limma marray]; }; @@ -634,42 +650,44 @@ cosmiq = derive { name="cosmiq"; version="1.3.0"; sha256="1868sxwlmaqas3w3nrw4bv cpvSNP = derive { name="cpvSNP"; version="1.1.0"; sha256="066y409zfz0bway990ygck5lf0vzl6whh212v4rpis1l9bzfv434"; depends=[BiocParallel corpcor GenomicFeatures ggplot2 GSEABase plyr]; }; cqn = derive { name="cqn"; version="1.15.1"; sha256="1g1ip7lxs82qq0qbhnx90hxmjiypc76p1sgx7yvj5nmp6wp1m5xy"; depends=[mclust nor1mix preprocessCore quantreg]; }; crlmm = derive { name="crlmm"; version="1.27.0"; sha256="16i3ijqhwp6c2dshk8r7idrjwga3sm1qcafqz9gl4q6b04s5jvym"; depends=[affyio Biobase BiocGenerics ellipse ff foreach illuminaio lattice matrixStats mvtnorm oligoClasses preprocessCore RcppEigen SNPchip VGAM]; }; -csaw = derive { name="csaw"; version="1.3.10"; sha256="01vap3h0j9pklmdh5i90p6j9mppvyld000cbhhyj7rmx7z8bsswy"; depends=[AnnotationDbi edgeR GenomeInfoDb GenomicAlignments GenomicFeatures GenomicRanges IRanges limma Rsamtools S4Vectors SummarizedExperiment]; }; +csaw = derive { name="csaw"; version="1.3.13"; sha256="199y1x5anm30vfbyfpwpwbdznj54vq67rf2pp5b6zidi1q6ik22x"; depends=[AnnotationDbi edgeR GenomeInfoDb GenomicAlignments GenomicFeatures GenomicRanges IRanges limma Rsamtools S4Vectors SummarizedExperiment]; }; ctc = derive { name="ctc"; version="1.43.0"; sha256="139rxdvyvv3wvlc5q3581y5hkjkd5smxvb606mlxjb8lww4qmcj8"; depends=[amap]; }; -cummeRbund = derive { name="cummeRbund"; version="2.11.1"; sha256="0nd1a9wi2qvvdhfvkb18ql82bfzhz6fivc7wdfv90mibrd7ypb2a"; depends=[Biobase BiocGenerics fastcluster ggplot2 Gviz plyr reshape2 RSQLite rtracklayer]; }; +cummeRbund = derive { name="cummeRbund"; version="2.11.2"; sha256="14bladl7g7ldc8jqjs1x4bs16jg5r9dh6w5ajndgi8sh5ynpdkxz"; depends=[Biobase BiocGenerics fastcluster ggplot2 Gviz plyr reshape2 RSQLite rtracklayer]; }; customProDB = derive { name="customProDB"; version="1.9.4"; sha256="0ws620i6s9p477zfns0m6qpzzhrsivjziv2gv3gmy19dhfh0ln08"; depends=[AnnotationDbi biomaRt Biostrings GenomeInfoDb GenomicAlignments GenomicFeatures GenomicRanges IRanges plyr RCurl Rsamtools RSQLite rtracklayer stringr VariantAnnotation]; }; cycle = derive { name="cycle"; version="1.23.0"; sha256="1fpn41xgnvn77m2bga3j70hh61ar0mns919ib21ap763j8lkbm19"; depends=[Biobase Mfuzz]; }; cytofkit = derive { name="cytofkit"; version="1.1.1"; sha256="0kzy6ylijyypsii5vl77r0wl2s2rhnvj98qbiy96ziijfjmjmfcc"; depends=[Biobase e1071 flowCore ggplot2 gplots reshape Rtsne vegan]; }; daMA = derive { name="daMA"; version="1.41.0"; sha256="0jfp6kxzys0w8vv8fr5shki79rimiagylvkz5avg2idvzgs2q1w8"; depends=[MASS]; }; -dagLogo = derive { name="dagLogo"; version="1.7.1"; sha256="1mqxhdwiaq9szg5krhxndr1wgl77cgxxxq271a5n53srkbfh77s4"; depends=[biomaRt Biostrings grImport motifStack pheatmap]; }; +dagLogo = derive { name="dagLogo"; version="1.7.3"; sha256="1nxj97l351s1wj560cfija5a0gggcfq6lfaihn3s5nw3xbz23w88"; depends=[biomaRt Biostrings grImport motifStack pheatmap]; }; ddCt = derive { name="ddCt"; version="1.24.2"; sha256="06cg2q8sg2685z7salbfyq2xb1mya3avgjrdmi6nw88rr8pxz0w7"; depends=[Biobase BiocGenerics lattice RColorBrewer xtable]; }; ddgraph = derive { name="ddgraph"; version="1.13.0"; sha256="1krdxmcjrhbw5gdrg68m41m1mhb5q0ijmqhxbvvxzqm3wyh8v2g1"; depends=[bnlearn graph gtools MASS pcalg plotrix RColorBrewer Rcpp]; }; deepSNV = derive { name="deepSNV"; version="1.15.3"; sha256="1sg4swpna7h4lmpzmqg1x4lqmyx1xq0fckz43gpvpk5s8li6j62h"; depends=[Biostrings GenomicRanges IRanges Rhtslib SummarizedExperiment VariantAnnotation VGAM]; }; -deltaGseg = derive { name="deltaGseg"; version="1.9.0"; sha256="0y8fw4gxmhsr5xrbg1k0s8207mhj6dmlbbmny2dn66c1qlg2bh24"; depends=[changepoint fBasics ggplot2 pvclust reshape scales tseries wavethresh]; }; +deltaGseg = derive { name="deltaGseg"; version="1.9.1"; sha256="09hvb6cfypwsnndc93ykqhcw8df5ap7d29gqbvm7gz71in05lh15"; depends=[changepoint fBasics ggplot2 pvclust reshape scales tseries wavethresh]; }; derfinder = derive { name="derfinder"; version="1.3.3"; sha256="11npavkr27f3c48bp40vgn9klgmpqs2w17gl96qn5g1y2gyvrhk5"; depends=[AnnotationDbi BiocParallel bumphunter derfinderHelper GenomeInfoDb GenomicAlignments GenomicFeatures GenomicFiles GenomicRanges Hmisc IRanges qvalue Rsamtools rtracklayer S4Vectors]; }; derfinderHelper = derive { name="derfinderHelper"; version="1.3.1"; sha256="03kijh42x1v4ix4gxs1729rifwckaz9npcrd9b3j6xsizx97b4cr"; depends=[IRanges Matrix S4Vectors]; }; derfinderPlot = derive { name="derfinderPlot"; version="1.3.4"; sha256="1f7x609sknmbn8gsxq75073vfr0qd0k9j7gfi0fxvgnm5f4lkizx"; depends=[derfinder GenomeInfoDb GenomicFeatures GenomicRanges ggbio ggplot2 IRanges limma plyr RColorBrewer reshape2 scales]; }; -destiny = derive { name="destiny"; version="0.99.14"; sha256="1k44mwmvrh3fyjdslk8vh2kw075nijzsviy7i0glsbj9q1lhfnzk"; depends=[Biobase BiocGenerics FNN igraph Matrix proxy Rcpp RcppEigen scatterplot3d VIM]; }; +destiny = derive { name="destiny"; version="0.99.16"; sha256="0gycxg58jf4vp6npvf4445mz5xbyiqgn9nvnibv9kgjwjidfglla"; depends=[Biobase BiocGenerics FNN igraph Matrix proxy Rcpp RcppEigen scatterplot3d VIM]; }; dexus = derive { name="dexus"; version="1.9.0"; sha256="1xnjs6gmzkdj1snwakq73bz8ypnxzzxh8ki9wv0ljfbfwv1j7z53"; depends=[BiocGenerics]; }; diffGeneAnalysis = derive { name="diffGeneAnalysis"; version="1.51.0"; sha256="1k5as63cd87nnigc0yzaxvhskpnbr7l1ym2bqc57zsm3bwh8xxwb"; depends=[minpack_lm]; }; -diffHic = derive { name="diffHic"; version="1.1.12"; sha256="1ywa1c9g4v19w3xmgxvk202h2dd9ax3h99d4rff9xjp2ywkxy2qz"; depends=[BiocGenerics Biostrings BSgenome csaw edgeR GenomeInfoDb GenomicRanges IRanges limma locfit rhdf5 Rsamtools S4Vectors]; }; +diffHic = derive { name="diffHic"; version="1.1.16"; sha256="02mrq5s1ddzyhkfs6pshfj78hlv0ppql23lhxmhz823qkjrqp6j7"; depends=[BiocGenerics Biostrings BSgenome csaw edgeR GenomeInfoDb GenomicRanges IRanges limma locfit rhdf5 Rsamtools S4Vectors]; }; diggit = derive { name="diggit"; version="1.1.1"; sha256="0c3zy1d9bzb6asa4clgq738h7dj6md55gclwa244qyx857b58rqv"; depends=[Biobase ks viper]; }; dks = derive { name="dks"; version="1.15.0"; sha256="1d66jfca6q8ni5vz5zh7fmxwh3y0yvl2p7gal7w55py6wvyssnl3"; depends=[cubature]; }; domainsignatures = derive { name="domainsignatures"; version="1.29.0"; sha256="1wkypbm5ldwx8y2n16fajf450pwv6zipjdk0176a5rqihaflz80l"; depends=[AnnotationDbi biomaRt prada]; }; dualKS = derive { name="dualKS"; version="1.29.0"; sha256="1a2wb137x98nmdm8dvnl4msl89mlyvm8f1kqzr6jhdj4wjv2hrg1"; depends=[affy Biobase]; }; +dupRadar = derive { name="dupRadar"; version="0.99.2"; sha256="0crxbb34wx6llsagkrq16qppwhizj6sn5zl63czl4w33q39xm5n5"; depends=[Rsubread]; }; dyebias = derive { name="dyebias"; version="1.27.0"; sha256="095qcnri2g19m363ipdi31xgn20b51mbfv5mgkk21m6fww1npc92"; depends=[Biobase marray]; }; easyRNASeq = derive { name="easyRNASeq"; version="2.5.6"; sha256="0b93i80fjvljjm4il1ad9g3apznj23hcyhpq3z10zsw81clfya1j"; depends=[Biobase BiocGenerics BiocParallel biomaRt Biostrings DESeq edgeR GenomeInfoDb genomeIntervals GenomicAlignments GenomicRanges IRanges locfit LSD Rsamtools S4Vectors ShortRead SummarizedExperiment]; }; ecolitk = derive { name="ecolitk"; version="1.41.0"; sha256="0jga35q98bidqjlqynq0cack4gwsm3hw34vgns67v37krjs4hn9f"; depends=[Biobase]; }; edge = derive { name="edge"; version="2.1.0"; sha256="1xxz8qyagrfr92ldaxlgb8dfpm6nx3lyk6fa4dl0m8yvlr6lw2fa"; depends=[Biobase MASS qvalue snm sva]; }; -edgeR = derive { name="edgeR"; version="3.11.2"; sha256="0df181xjga322phjinlffl0j2mg61pq4p8h3sxx3xz100c6xrahr"; depends=[limma]; }; -eiR = derive { name="eiR"; version="1.9.1"; sha256="01wkz9lc6gi1a98q02c6zyzfsnkk52px60xg3lawp2419dvj2ww3"; depends=[BH BiocGenerics ChemmineR DBI digest RCurl RUnit snow snowfall]; }; +edgeR = derive { name="edgeR"; version="3.11.3"; sha256="1pba2hb8vm9ji6gd2vjsrc5n8yrynpar01mlzsk8vb8bp681cj4i"; depends=[limma]; }; +eiR = derive { name="eiR"; version="1.9.2"; sha256="02735vx7yj00g9yxxa1h021bxqib9vsa744dx41gar6qh9zzdwyg"; depends=[BH BiocGenerics ChemmineR DBI digest RCurl RUnit snow snowfall]; }; eisa = derive { name="eisa"; version="1.21.0"; sha256="03366q5qj4wdfm4d9lwysmgz3bgwc53zynw2cmsj7w3yg6dj63km"; depends=[AnnotationDbi Biobase BiocGenerics Category DBI genefilter isa2]; }; -ensemblVEP = derive { name="ensemblVEP"; version="1.9.2"; sha256="10xjxafm97jnk7dfi0j1ahyd6hp45r5rpfr206fbiipcq3ha2p9h"; depends=[BiocGenerics Biostrings GenomicRanges VariantAnnotation]; }; -ensembldb = derive { name="ensembldb"; version="1.1.6"; sha256="1kr0yfdfhmd8g5pqazpbmaqcjw6ydv5whxf4c29d77x83alfncyh"; depends=[AnnotationDbi AnnotationHub Biobase BiocGenerics DBI GenomeInfoDb GenomicFeatures GenomicRanges Rsamtools RSQLite rtracklayer S4Vectors]; }; +ensemblVEP = derive { name="ensemblVEP"; version="1.9.5"; sha256="0prmspi5qj0d2qwd3bnjnl774lslsz527np164qykxfn0l7w0ks3"; depends=[BiocGenerics Biostrings GenomicRanges VariantAnnotation]; }; +ensembldb = derive { name="ensembldb"; version="1.1.7"; sha256="1r1nkrikwqb00vsfm15qaym88hk359xd1ccdybyan28cbr7mqmnb"; depends=[AnnotationDbi AnnotationHub Biobase BiocGenerics DBI GenomeInfoDb GenomicFeatures GenomicRanges Rsamtools RSQLite rtracklayer S4Vectors]; }; epigenomix = derive { name="epigenomix"; version="1.9.2"; sha256="0l7pa2nyllf7imapbxqavyg3h0ba3wc1bhrhz7a7bc8rr8qyq0w1"; depends=[beadarray Biobase BiocGenerics GenomicRanges IRanges Rsamtools S4Vectors SummarizedExperiment]; }; epivizr = derive { name="epivizr"; version="1.7.8"; sha256="01z80dbahjbf60d71hiqai5h5i546hvl2j737b4xjca9017g2wsg"; depends=[Biobase GenomeInfoDb GenomicFeatures GenomicRanges httpuv mime OrganismDbi R6 rjson rtracklayer S4Vectors SummarizedExperiment]; }; -erccdashboard = derive { name="erccdashboard"; version="1.3.2"; sha256="0vsjk6ba739c2hvx87gz0n3sn2cwfm1nhwk2jcb8ynv7gxww3p4l"; depends=[edgeR ggplot2 gplots gridExtra gtools limma locfit MASS plyr QuasiSeq qvalue reshape2 ROCR scales stringr]; }; -erma = derive { name="erma"; version="0.1.2"; sha256="046m88bjfkv8xkmz8il6l0zbp0wcr7n6wvsv2lavcyl09qnjghs0"; depends=[BiocGenerics GenomicFiles GenomicRanges ggplot2 rtracklayer S4Vectors]; }; +erccdashboard = derive { name="erccdashboard"; version="1.3.5"; sha256="0bdxxrrx29chk23jasf5dz2wqqlf0xqn7vyma8vsikz5194g3kcg"; depends=[edgeR ggplot2 gplots gridExtra gtools limma locfit MASS plyr QuasiSeq qvalue reshape2 ROCR scales stringr]; }; +erma = derive { name="erma"; version="0.1.29"; sha256="0f5j8mv9l1lv6wygf9jrqwv84i6h89l7fsgz451jlp7k5bqhkbwg"; depends=[Biobase BiocGenerics foreach GenomicFiles GenomicRanges ggplot2 rtracklayer S4Vectors shiny]; }; +eudysbiome = derive { name="eudysbiome"; version="0.99.3"; sha256="0ad6abz1y7yzslc08p5axqrd5rgp6mf58y676bhmyr0vkxjb9hqy"; depends=[plyr]; }; exomeCopy = derive { name="exomeCopy"; version="1.15.0"; sha256="1047k3whc8pjcrvb10dmykbc3c7ah4fgzsiqxw7asp4ksiqpj5ii"; depends=[GenomeInfoDb GenomicRanges IRanges Rsamtools]; }; exomePeak = derive { name="exomePeak"; version="1.9.1"; sha256="1lvzr8zsa61vj5qhd4yh9n8vmfw759b8gbpp6q9yxz1py1ky16y6"; depends=[GenomicAlignments GenomicFeatures Rsamtools rtracklayer]; }; explorase = derive { name="explorase"; version="1.33.0"; sha256="0405q21ivvchmb37jksv46kwxgbmyiavznizn39asv6wrsvw62az"; depends=[limma rggobi RGtk2]; }; @@ -683,16 +701,16 @@ fastseg = derive { name="fastseg"; version="1.15.0"; sha256="12a308lr292nisf0k0w fdrame = derive { name="fdrame"; version="1.41.0"; sha256="1zmspa2mm7scv5lx83171hdn48y9vify58jcr6nxw15nj4lqbmsd"; depends=[]; }; ffpe = derive { name="ffpe"; version="1.13.0"; sha256="0444g47cg6ci1lflmz84vjms0p918iaz65cm6whxx4z3pfjc55ls"; depends=[affy Biobase BiocGenerics lumi methylumi sfsmisc TTR]; }; flagme = derive { name="flagme"; version="1.25.0"; sha256="0jj8rba2ggimwm709m2c78rpccvp9q8hx83c026pgmrryjv8qbzc"; depends=[CAMERA gplots MASS SparseM xcms]; }; -flipflop = derive { name="flipflop"; version="1.7.3"; sha256="0731qxr479y1acarxd16m0bdy3q0qwgbyrlvp20dvyqs4b5qfj56"; depends=[GenomicRanges IRanges Matrix]; }; +flipflop = derive { name="flipflop"; version="1.7.5"; sha256="00rlr9mh3agvi1cy4bgb97bwmq0ipiajzljfwzvr03y4wkadvv9r"; depends=[GenomicRanges IRanges Matrix]; }; flowBeads = derive { name="flowBeads"; version="1.7.0"; sha256="1knzfj14hwggvc41bba2chrjnl709bh2wxwv268mw18crc1gs140"; depends=[Biobase flowCore knitr rrcov xtable]; }; flowBin = derive { name="flowBin"; version="1.5.0"; sha256="1728qzxpssh44ayk5bgjwdwzb98xalzciq7pzlcwg1yqgyxz81xv"; depends=[BiocGenerics class flowCore flowFP limma snow]; }; flowCHIC = derive { name="flowCHIC"; version="1.3.0"; sha256="1g6kkmcja3am6dawdkmhyz9pl9xqivnp95zqxh8vd3a4la0ysazb"; depends=[EBImage flowCore ggplot2 hexbin vegan]; }; flowCL = derive { name="flowCL"; version="1.7.0"; sha256="0n7gsvsfvfcn1ysc2kzv564hnn963rg6zwzx70vzp8lzvg55z8db"; depends=[Rgraphviz SPARQL]; }; -flowClean = derive { name="flowClean"; version="1.5.0"; sha256="1ggzsm1zrvg7x0x9jvjiqm5172cm6lvkmzkk5v38pjvhplqgx4hi"; depends=[bit changepoint flowCore sfsmisc]; }; +flowClean = derive { name="flowClean"; version="1.5.1"; sha256="0w3bjvhy044cl6xdzk2q8xrvnshn49gkvq5b4sgwvqhj3nlnfpl4"; depends=[bit changepoint flowCore sfsmisc]; }; flowClust = derive { name="flowClust"; version="3.7.01"; sha256="06y8sg5mdjzn3d18m5b3753q2g4s4yxm1v8vb6pkdszq88255w6k"; depends=[Biobase BiocGenerics clue corpcor ellipse flowCore flowViz graph MCMCpack mnormt RBGL]; }; -flowCore = derive { name="flowCore"; version="1.35.7"; sha256="1j7819bwyrphwwh6hkcjyc7f7yy5bv2sy1qfc66519wswjr90qzn"; depends=[BH Biobase BiocGenerics corpcor graph Rcpp rrcov]; }; +flowCore = derive { name="flowCore"; version="1.35.11"; sha256="110m6i17nvq6r5c9nskfmv9byj202p5i0fczr4fqv8fpcfkdnlz2"; depends=[BH Biobase BiocGenerics corpcor graph Rcpp rrcov]; }; flowCyBar = derive { name="flowCyBar"; version="1.5.0"; sha256="160vyp9pglsrv23m0118506bikwzi2mm9b1qgsrxjnzls2lqvjfa"; depends=[gplots vegan]; }; -flowDensity = derive { name="flowDensity"; version="1.3.0"; sha256="1z8s1d4qwavi5z8zmvac9yqyd19sma18z1jl129w6sl5964spi86"; depends=[car flowCore GEOmap gplots RFOC]; }; +flowDensity = derive { name="flowDensity"; version="1.3.1"; sha256="17wvpscdffn1fsihnn0rcfn57cyfz75dz3giny8ha1scgzazy9zx"; depends=[car flowCore GEOmap gplots RFOC]; }; flowFP = derive { name="flowFP"; version="1.27.0"; sha256="15n57slfn0z4vzqhk38mfqzb22r6krafqyp11hv1xsllp8my2a5g"; depends=[Biobase BiocGenerics flowCore flowViz]; }; flowFit = derive { name="flowFit"; version="1.7.0"; sha256="079ygak8ysjh44l3gmvlc89x4argw15mlq380j77n19d3wqai8r9"; depends=[flowCore flowViz gplots kza minpack_lm]; }; flowMap = derive { name="flowMap"; version="1.7.0"; sha256="030dv51xwskrc97kkm72wxbfsq1qj4fy9nknvxaydn3y1r2wakcs"; depends=[abind ade4 doParallel Matrix reshape2 scales]; }; @@ -701,7 +719,7 @@ flowMeans = derive { name="flowMeans"; version="1.28.0"; sha256="038flcv69xn1yif flowMerge = derive { name="flowMerge"; version="2.17.0"; sha256="1sc7xqp4vkgc84by4vmbj0iy0vsrwadglwxbziigjai0ijsgrvfn"; depends=[feature flowClust flowCore foreach graph Rgraphviz rrcov snow]; }; flowPeaks = derive { name="flowPeaks"; version="1.11.0"; sha256="0ib9mgfq8lmakw2g0hj0dc75ifllpf5s9yfpkq3p5f6qqa8gncqw"; depends=[]; }; flowPlots = derive { name="flowPlots"; version="1.17.0"; sha256="1y4g2kjdha6qn79cyb9mxkkj33wd2jndrpnpd1p0x1pvnjlyxhas"; depends=[]; }; -flowQ = derive { name="flowQ"; version="1.29.0"; sha256="1wp5h8bpavcs4plgy12qwm2y8ds8gdkwp5dhkbi4yqy1bl5cl0xj"; depends=[BiocGenerics bioDist flowCore flowViz geneplotter IRanges lattice latticeExtra mvoutlier outliers parody RColorBrewer]; }; +flowQ = derive { name="flowQ"; version="1.29.1"; sha256="1kxxbip929aqj51f9m14bm405anpb2n60gvn18147mhmsfq67lcx"; depends=[BiocGenerics bioDist flowCore flowViz geneplotter IRanges lattice latticeExtra mvoutlier outliers parody RColorBrewer]; }; flowQB = derive { name="flowQB"; version="1.13.0"; sha256="19z25lhjdlc1hq6gkqajhi80920zi89yryzwabdazbhb9i5f1ni0"; depends=[Biobase flowCore MASS]; }; flowStats = derive { name="flowStats"; version="3.27.0"; sha256="0vw3a426wa684fr8g2jh8c64dyfya0z5azz1ncfd7xszknyc51si"; depends=[Biobase BiocGenerics cluster fda flowCore flowViz flowWorkspace KernSmooth ks lattice MASS mvoutlier]; }; flowTrans = derive { name="flowTrans"; version="1.21.1"; sha256="0c45blakwi4x0mr40ss5m3gh9bf0cvy9lwid274swd4qwydqyy1l"; depends=[flowClust flowCore flowViz]; }; @@ -709,60 +727,60 @@ flowType = derive { name="flowType"; version="2.7.0"; sha256="0zrwf7h62jd5xgs0kq flowUtils = derive { name="flowUtils"; version="1.33.0"; sha256="0r7l8fbi3p1y7ql60czlqhxx4l0fzxv50phwkr5w85jxxldk2pjm"; depends=[Biobase corpcor flowCore flowViz graph RUnit XML]; }; flowVS = derive { name="flowVS"; version="1.1.0"; sha256="0g1zmcr1wd3xccx2z1akwk177innzrngmxc5r4hjanl37l0skrpq"; depends=[flowCore flowStats flowViz]; }; flowViz = derive { name="flowViz"; version="1.33.2"; sha256="11qbpf0yw1gjzgw3pb7mnqfvwd60nms4cwrwag8h36a5whfd158c"; depends=[Biobase flowCore hexbin IDPmisc KernSmooth lattice latticeExtra MASS RColorBrewer]; }; -flowWorkspace = derive { name="flowWorkspace"; version="3.15.15"; sha256="1chjfhij0d4li1q2nz5yqwgmmd4vlf5rcg81z1zfs2kc3c19is18"; depends=[BH Biobase BiocGenerics data_table dplyr flowCore flowViz graph gridExtra lattice latticeExtra ncdfFlow RBGL RColorBrewer Rcpp Rgraphviz stringr XML]; }; -flowcatchR = derive { name="flowcatchR"; version="1.3.2"; sha256="1l1m709jfx6k13d9ayv9v355lhws6xnmz2bsklrzrkls25pfm04v"; depends=[abind BiocParallel colorRamps EBImage rgl]; }; +flowWorkspace = derive { name="flowWorkspace"; version="3.15.18"; sha256="042pfgpkpw5wqk15sfi0qn8d3ny06ihsya960m4m1nw0aypnx52r"; depends=[BH Biobase BiocGenerics data_table dplyr flowCore flowViz graph gridExtra lattice latticeExtra ncdfFlow RBGL RColorBrewer Rcpp Rgraphviz stringr XML]; }; +flowcatchR = derive { name="flowcatchR"; version="1.3.3"; sha256="1ix5wgqldghlqf51b7z0ry31wah5mc01ad0bi0xp32sknrkmvb9p"; depends=[abind BiocParallel colorRamps EBImage rgl]; }; fmcsR = derive { name="fmcsR"; version="1.11.4"; sha256="1ah1gyrhcyv4kqxi4n8yj14mgjh6v9l820k5hzb7fwbw74kh2pa5"; depends=[BiocGenerics ChemmineR RUnit]; }; focalCall = derive { name="focalCall"; version="1.3.0"; sha256="1g3vk72xnzy2vsjjq7dnmmxiy29qg2bqij1iim9psb2zd6w387r5"; depends=[CGHcall]; }; -frma = derive { name="frma"; version="1.21.0"; sha256="0glsdwzlfba9j850s393jm6ada4j04nz4lilym81qvs9y9jccscp"; depends=[affy Biobase BiocGenerics DBI MASS oligo oligoClasses preprocessCore]; }; +frma = derive { name="frma"; version="1.21.1"; sha256="1xlbqnypb5xa416bdyqkjbzw44zywksl0ak4nmvdcn8ib8cdzggf"; depends=[affy Biobase BiocGenerics DBI MASS oligo oligoClasses preprocessCore]; }; frmaTools = derive { name="frmaTools"; version="1.21.1"; sha256="13x1k763gdkh9mab1nvsa45z7b0v2q4ilvhv47fvwagi5r11jf5w"; depends=[affy Biobase DBI preprocessCore]; }; gCMAP = derive { name="gCMAP"; version="1.13.0"; sha256="06qb51rxxjqanh92g0cj6kwnrcbgkc2f0slav2bxkh2rkrjpyvcn"; depends=[annotate AnnotationDbi Biobase Category DESeq genefilter GSEABase GSEAlm limma Matrix]; }; gCMAPWeb = derive { name="gCMAPWeb"; version="1.9.0"; sha256="0xn1iyvrw3idhwszvipf3y69i1w1azr5hhgklg57v9wibnq02q9g"; depends=[annotate AnnotationDbi Biobase BiocGenerics brew gCMAP GSEABase hwriter Rook yaml]; }; -gQTLBase = derive { name="gQTLBase"; version="1.1.1"; sha256="033lfnn0zkkkzay25fkj7wizyd63jxr2nkgga22iwm8ffjgpyac0"; depends=[BatchJobs BBmisc BiocGenerics doParallel ff ffbase foreach GenomicRanges S4Vectors]; }; -gQTLstats = derive { name="gQTLstats"; version="1.1.1"; sha256="0sav44fxh5m9402gip2qaql4rm81ymw7339732nw2lrjk2vm7l7l"; depends=[AnnotationDbi BatchJobs Biobase BiocGenerics doParallel dplyr foreach gam GenomeInfoDb GenomicFeatures GenomicRanges ggplot2 gQTLBase IRanges limma reshape2 S4Vectors snpStats SummarizedExperiment VariantAnnotation]; }; +gQTLBase = derive { name="gQTLBase"; version="1.1.26"; sha256="11w5k1p62a468frh4xckzi9ljim6bp8540xy1s2yblgr6jggx765"; depends=[BatchJobs BBmisc BiocGenerics bit doParallel ff ffbase foreach GenomicFiles GenomicRanges rtracklayer S4Vectors]; }; +gQTLstats = derive { name="gQTLstats"; version="1.1.12"; sha256="0r4y8qpy8gva71ri4g2b4g606nhagryr323x9kmcg7hag9vy75bl"; depends=[AnnotationDbi BatchJobs Biobase BiocGenerics doParallel dplyr ffbase foreach gam GenomeInfoDb GenomicFeatures GenomicRanges ggplot2 gQTLBase IRanges limma reshape2 S4Vectors snpStats SummarizedExperiment VariantAnnotation]; }; gaga = derive { name="gaga"; version="2.15.1"; sha256="17ccfnvrqq6p9dynlacxw4797n1h9773ilmsh53mzs52w1k2cybm"; depends=[Biobase coda EBarrays mgcv]; }; gage = derive { name="gage"; version="2.19.0"; sha256="1g8i3w715s10azw7xyzq6gjmz5ilxll4qcf367jn6dwz8xnf15dr"; depends=[AnnotationDbi graph KEGGREST]; }; gaggle = derive { name="gaggle"; version="1.37.0"; sha256="1429xffj08m3dgfp6z34ngwzaq0wyjm3wv3cwfxzl5pzzy200k41"; depends=[graph rJava RUnit]; }; gaia = derive { name="gaia"; version="2.13.0"; sha256="10vpz16plzi651aj1f5h3iwz6nzrrdnl9sgx3sgv5wmks2haqij4"; depends=[]; }; gaucho = derive { name="gaucho"; version="1.5.0"; sha256="0kl8fw1n6dkqmrjp0xri3w2fhx25llrjag7j50m2xh371zfw9chc"; depends=[GA graph heatmap_plus png Rgraphviz]; }; gcrma = derive { name="gcrma"; version="2.41.0"; sha256="03ncgd26hmj4l0mnnif1cf5qg99ir66d0mafx7wamrr930m17v8x"; depends=[affy affyio Biobase BiocInstaller Biostrings XVector]; }; -gdsfmt = derive { name="gdsfmt"; version="1.5.9"; sha256="1j849lizdsyqqp8wyssk00jc0l3mqk0ya0p8ca005i11vz8rivv3"; depends=[]; }; +gdsfmt = derive { name="gdsfmt"; version="1.5.15"; sha256="1hhgg6kb11dbns664gn1vk5bxiaji9h6xgyxsrkbng3fi5d6qr4b"; depends=[]; }; geNetClassifier = derive { name="geNetClassifier"; version="1.9.3"; sha256="1vcbh910g6hsgqian6kf4vd62bf16m3bbycg7rn69rd5nhyn9b8x"; depends=[Biobase e1071 EBarrays minet]; }; geecc = derive { name="geecc"; version="1.3.0"; sha256="0s955yg31papyny42nnqq711hawk5nn3dqgsf24ldz93vjiif9dr"; depends=[gplots hypergea MASS]; }; genArise = derive { name="genArise"; version="1.45.0"; sha256="07xyy6wa22sa0ziqvy1dvpmpq11j56aw70kvj834da003yvabmg1"; depends=[locfit tkrplot xtable]; }; geneRecommender = derive { name="geneRecommender"; version="1.41.0"; sha256="0c06xg7jbcn4lnrkwgwwdjq383a7d34svf9cdqlaz5fc662nl5v0"; depends=[Biobase]; }; geneRxCluster = derive { name="geneRxCluster"; version="1.5.0"; sha256="1m5jxv0qhm68iv6rwy91nkx2mz9b7zh9mdz98gva8mb6gm88iiig"; depends=[GenomicRanges IRanges]; }; -genefilter = derive { name="genefilter"; version="1.51.0"; sha256="0zrav2zw7v67i564v20y02cn2ycyk9ms8cnj2b2l7ajd1lq5cp9s"; depends=[annotate AnnotationDbi Biobase survival]; }; -genefu = derive { name="genefu"; version="2.0.0"; sha256="0vrp2di9pz4xdy2shkl7ccc4ri19q2mv75xl9fkzkan4gnamlkbj"; depends=[amap biomaRt mclust survcomp]; }; +genefilter = derive { name="genefilter"; version="1.51.1"; sha256="0z0lgg38hf6g57xp9ah8wdksyifs28vdnmhkpgzmg5k8zbz4ikkb"; depends=[annotate AnnotationDbi Biobase survival]; }; +genefu = derive { name="genefu"; version="2.0.3"; sha256="1b8jh5pbw0z7pf20phk39ajjk5riknllqy4p3rbx4r2x7kmsczkc"; depends=[AIMS amap biomaRt iC10 mclust survcomp]; }; geneplotter = derive { name="geneplotter"; version="1.47.0"; sha256="03vl60rhhfh8imp0ihx83gq9r64gdnh2gjdm7pzi4yc03afqgaw8"; depends=[annotate AnnotationDbi Biobase BiocGenerics lattice RColorBrewer]; }; genoCN = derive { name="genoCN"; version="1.21.0"; sha256="10q16kch3gn6phx1zk3aii87f4liy5l6mp0kvjf29x6aam11l7c7"; depends=[]; }; -genomation = derive { name="genomation"; version="1.1.10"; sha256="1cxhap9h1g8a5q0jc7xpg00vcp9jrwqmn1v0vlh5ck54vnp672ks"; depends=[data_table GenomicAlignments GenomicRanges ggplot2 gridBase impute IRanges matrixStats plotrix plyr readr reshape2 Rsamtools rtracklayer]; }; +genomation = derive { name="genomation"; version="1.1.23"; sha256="14wp0r990slj2jxwzjix8fy7pgh92i934rvpcjiwhh4a6qwy26ir"; depends=[data_table GenomeInfoDb GenomicAlignments GenomicRanges ggplot2 gridBase impute IRanges matrixStats plotrix plyr readr reshape2 Rsamtools rtracklayer]; }; genomeIntervals = derive { name="genomeIntervals"; version="1.25.3"; sha256="14ql99gny196nl8ss3pb9m0277nczx6qj9sj2vhwfrr9q9c3ja9a"; depends=[BiocGenerics GenomeInfoDb GenomicRanges intervals IRanges S4Vectors]; }; genomes = derive { name="genomes"; version="2.15.0"; sha256="1a172fz97b6xg4w91dcjbdr9kx0grzf71qn2j7zlyz52dcqppybb"; depends=[Biostrings GenomicRanges IRanges RCurl XML]; }; -genoset = derive { name="genoset"; version="1.23.5"; sha256="1vs1yffrjmqz70qc9rbzrabv7271jrqyscb43g3dw5q1mjwifjvn"; depends=[Biobase BiocGenerics GenomeInfoDb GenomicRanges IRanges S4Vectors]; }; +genoset = derive { name="genoset"; version="1.23.8"; sha256="10j5pp4zgid812b3n5x4smnn6pvpxrvzmwp0ajcmf1s63fndkanp"; depends=[Biobase BiocGenerics GenomeInfoDb GenomicRanges IRanges S4Vectors SummarizedExperiment]; }; genotypeeval = derive { name="genotypeeval"; version="0.99.3"; sha256="1a0dxfdlcdxmsih8imhvd4mk40lzg9p8sryccqmycw360nwbxh1h"; depends=[BiocGenerics BiocParallel GenomeInfoDb GenomicRanges ggplot2 IRanges rtracklayer VariantAnnotation]; }; gespeR = derive { name="gespeR"; version="1.1.2"; sha256="1mfsy2jca89qh22l95y8cd6bjgdss0p1zhprh87jq973w2saj1kf"; depends=[Biobase biomaRt cellHTS2 doParallel dplyr foreach ggplot2 glmnet Matrix reshape2]; }; -ggbio = derive { name="ggbio"; version="1.17.2"; sha256="09ffhppri2ibprpwps0zxsrpvbrymsnycriy4709x2ldp1ifjn9l"; depends=[Biobase BiocGenerics Biostrings biovizBase BSgenome GenomeInfoDb GenomicAlignments GenomicFeatures GenomicRanges GGally ggplot2 gridExtra gtable Hmisc IRanges OrganismDbi reshape2 Rsamtools rtracklayer S4Vectors scales SummarizedExperiment VariantAnnotation]; }; -ggtree = derive { name="ggtree"; version="1.1.13"; sha256="1vbv7qawd3zrppxlgy2gjf31q1v74ww8r2cn4w3q5dlv883pxcvm"; depends=[ape Biostrings colorspace EBImage ggplot2 gridExtra jsonlite magrittr reshape2]; }; -girafe = derive { name="girafe"; version="1.21.0"; sha256="11j9aiy6s5cdhwc9591vv344qnwlgn4hvwlp2rx47gccrnxxaqxi"; depends=[Biobase BiocGenerics Biostrings genomeIntervals intervals IRanges Rsamtools S4Vectors ShortRead]; }; -globaltest = derive { name="globaltest"; version="5.23.1"; sha256="1zcyiixjia9lznaaksfb6mnwpsa4nsqzv92l86kgrvq9a5655pzd"; depends=[annotate AnnotationDbi Biobase survival]; }; -gmapR = derive { name="gmapR"; version="1.11.0"; sha256="0vn5iz44gcp4k0y5y4pjw6m60w75k82kv25hmnjshh8cpcwqkxkp"; depends=[Biobase BiocParallel Biostrings BSgenome GenomeInfoDb GenomicAlignments GenomicFeatures GenomicRanges IRanges Rsamtools rtracklayer S4Vectors VariantAnnotation]; }; +ggbio = derive { name="ggbio"; version="1.17.3"; sha256="1c0sdaxq1f6p32wq3nd26brbkrz895v1dk7hhxjkw4i057kpvbjf"; depends=[Biobase BiocGenerics Biostrings biovizBase BSgenome GenomeInfoDb GenomicAlignments GenomicFeatures GenomicRanges GGally ggplot2 gridExtra gtable Hmisc IRanges OrganismDbi reshape2 Rsamtools rtracklayer S4Vectors scales SummarizedExperiment VariantAnnotation]; }; +ggtree = derive { name="ggtree"; version="1.1.19"; sha256="1jbgfpsa6xam40j5qhlykqab22v4z36r835yj7w1l4m69j7imf90"; depends=[ape Biostrings colorspace EBImage ggplot2 gridExtra jsonlite magrittr phytools reshape2]; }; +girafe = derive { name="girafe"; version="1.21.1"; sha256="186r96xr416vx2wzib9kvb079mfjg50828l3fgg5nyp6x0rs9nrf"; depends=[Biobase BiocGenerics Biostrings genomeIntervals intervals IRanges Rsamtools S4Vectors ShortRead]; }; +globaltest = derive { name="globaltest"; version="5.23.2"; sha256="0gvg92mmzgc2ms5lz3zvdg8rx1wsw0hrz9x3zl0sz08smpwzlbsb"; depends=[annotate AnnotationDbi Biobase survival]; }; +gmapR = derive { name="gmapR"; version="1.11.1"; sha256="0fkj11xnasjacy9b4j404lj4pya74n2gaqzw6p9kcyg1kifxw0qr"; depends=[Biobase BiocParallel Biostrings BSgenome GenomeInfoDb GenomicAlignments GenomicFeatures GenomicRanges IRanges Rsamtools rtracklayer S4Vectors VariantAnnotation]; }; goProfiles = derive { name="goProfiles"; version="1.31.0"; sha256="0nnc5idd3p969nhcsw2bjv7ws1qlb30sywhvpy8kcvk64wzz4jgw"; depends=[AnnotationDbi Biobase]; }; goTools = derive { name="goTools"; version="1.43.0"; sha256="104xj0q1151ch0b4sswnky6shscx6fps25ycmig1s1ingd8dqnby"; depends=[AnnotationDbi]; }; goseq = derive { name="goseq"; version="1.21.1"; sha256="175xg4qyy2iq9vmxsvd120qb9s3xn51ibsrvc1a3lrnrlii992fk"; depends=[AnnotationDbi BiasedUrn BiocGenerics mgcv]; }; gpls = derive { name="gpls"; version="1.41.0"; sha256="050db8ag8wpngfkw686r9vjvdgbpz0slrdnmkb0vcm5ijzm172b2"; depends=[]; }; gprege = derive { name="gprege"; version="1.13.0"; sha256="0z27521mjn5ipjq8wi3fbh2qw4k1q694l8268f8lypr9f357i1q4"; depends=[gptk]; }; graph = derive { name="graph"; version="1.47.2"; sha256="0db15kd5qf993qdbr7dl2wbw6bgyg3kiqvd1iziqdq6d2vvbpzbj"; depends=[BiocGenerics]; }; -graphite = derive { name="graphite"; version="1.15.1"; sha256="1q3ybshd9yxivs1b5vj659c45qa8bf7r1dy3idg8g7glh9f2bgnl"; depends=[AnnotationDbi BiocGenerics graph]; }; +graphite = derive { name="graphite"; version="1.15.2"; sha256="1y3iqrrw0vj2r7n6d3nsxhjrmh7q18jryiiqin3xbqa8c58l7y2l"; depends=[AnnotationDbi BiocGenerics graph rappdirs]; }; groHMM = derive { name="groHMM"; version="1.3.1"; sha256="1bwa2dc2hmp34grl1ki8wzqn5v12afrmcw0igdiv4j8sfgybw3w7"; depends=[GenomicAlignments GenomicRanges IRanges MASS rtracklayer S4Vectors]; }; -gtrellis = derive { name="gtrellis"; version="1.1.1"; sha256="17jflcq97a3a7k735klj6pphn6ixyshggwi0n7b45jgkqi9j5s08"; depends=[circlize GetoptLong]; }; -gwascat = derive { name="gwascat"; version="2.1.4"; sha256="13hvh6rvlh13n9dxx9g1q68qz4mxsvv4sh0kc1931b3vz2mfs0m0"; depends=[AnnotationHub BiocGenerics Biostrings GenomeInfoDb GenomicRanges gQTLstats Gviz IRanges Rsamtools rtracklayer S4Vectors snpStats VariantAnnotation]; }; +gtrellis = derive { name="gtrellis"; version="1.1.2"; sha256="03i6ph9fjphpcpf3gjiwi3r3zgdmhf5rj85yn21n1gq934p29ksb"; depends=[circlize GetoptLong]; }; +gwascat = derive { name="gwascat"; version="2.1.19"; sha256="0xs21rc43kkxivvbz6km81h6wx2f27837hkfq0fg5j5w2dzbqz66"; depends=[AnnotationDbi AnnotationHub BiocGenerics Biostrings GenomeInfoDb GenomicFeatures GenomicRanges ggbio ggplot2 gQTLstats graph Gviz IRanges Rsamtools rtracklayer S4Vectors snpStats VariantAnnotation]; }; h5vc = derive { name="h5vc"; version="2.3.0"; sha256="1cl00k13x03sm60gfkxmaf6ba9kw4186cnik08zn446fipxqypla"; depends=[abind BatchJobs BiocParallel Biostrings GenomeInfoDb GenomicRanges ggplot2 gridExtra IRanges reshape rhdf5 Rsamtools S4Vectors]; }; hapFabia = derive { name="hapFabia"; version="1.11.0"; sha256="1jbj1bxqmvldpbbyq6d854srvzsr14jva1711zn4387b407knz7w"; depends=[Biobase fabia]; }; hiAnnotator = derive { name="hiAnnotator"; version="1.3.2"; sha256="104d6wp331dvsdk5p9l7m70xr9jrwx0nzlrapi95c0p1nr3wr7bl"; depends=[BSgenome dplyr foreach GenomicRanges ggplot2 iterators rtracklayer scales]; }; hiReadsProcessor = derive { name="hiReadsProcessor"; version="1.3.0"; sha256="16gcjaiw8j82y5wzcbhh3yjym8xi4dqsf30i64ah6rb30i3bk716"; depends=[BiocGenerics BiocParallel Biostrings GenomicAlignments GenomicRanges hiAnnotator plyr rSFFreader sonicLength xlsx]; }; -hierGWAS = derive { name="hierGWAS"; version="0.99.2"; sha256="1i3ykpslp79y1v156bja971z3g3v1yb7bb2w26gv1p1kd8f57s6d"; depends=[fastcluster fmsb glmnet]; }; +hierGWAS = derive { name="hierGWAS"; version="0.99.4"; sha256="029p8ri65rhxbq59bbnr1rdyr8bdwm2biqac4p2sr6h0fvbmq07k"; depends=[fastcluster fmsb glmnet]; }; hopach = derive { name="hopach"; version="2.29.0"; sha256="08hfq74s3a4q94awhw6fiwlfnnv3rhkfpz56jbcyp6bi6y1rrp9d"; depends=[Biobase BiocGenerics cluster]; }; -hpar = derive { name="hpar"; version="1.11.1"; sha256="1a00li932y6bgv9a9avpbyxm7h6fxjfgj3gazf0kh1zc5w0r2r1g"; depends=[]; }; +hpar = derive { name="hpar"; version="1.11.2"; sha256="0i0f1wvla9aa0i6yykmi4i5l30n67bjiaz7ysvg57pwixsbbs5gn"; depends=[]; }; htSeqTools = derive { name="htSeqTools"; version="1.15.1"; sha256="0pv6csw7bgknjm0q42hrf3x22bx3xs0xm9hq9i46plwglq6c8kvn"; depends=[Biobase BiocGenerics BSgenome GenomeInfoDb GenomicRanges IRanges MASS]; }; hyperdraw = derive { name="hyperdraw"; version="1.21.0"; sha256="0w1rcaw5fysj257c8ybcvmrdayvkcmfl670ysg2wcp8nrgv6z7vg"; depends=[graph hypergraph Rgraphviz]; }; hypergraph = derive { name="hypergraph"; version="1.41.0"; sha256="06fvmda8x81bv5bn21pmvpfx9ni01l23q1ph9rh3qj803mwa0d72"; depends=[graph]; }; @@ -771,19 +789,20 @@ iBBiG = derive { name="iBBiG"; version="1.13.0"; sha256="09g9inaxmc94vfjv247c5ni iBMQ = derive { name="iBMQ"; version="1.9.0"; sha256="08snz38d1jig0n989bwyvcayb83xyfb1cp927zvmxrnsyi7piqda"; depends=[Biobase ggplot2]; }; iChip = derive { name="iChip"; version="1.23.0"; sha256="081s08v7n8l80r5dlfxdwibw5gsr7rjm6hgc0r5fhzpw7kb5svir"; depends=[limma]; }; iClusterPlus = derive { name="iClusterPlus"; version="1.5.0"; sha256="0r0pbp9kn9rsv3hj7fai55cgfwa31rlg8zd7x8311ajg2q3kxwfd"; depends=[]; }; +iGC = derive { name="iGC"; version="0.99.2"; sha256="08j8w9wligdi630d3b3hadr35dcxghljjbbwj4p9q52dnx527v1r"; depends=[data_table plyr]; }; iPAC = derive { name="iPAC"; version="1.13.0"; sha256="02cawn395mymgxmhrcff9q57dwb8xrwba7z8dg6jzda3kbixzc1x"; depends=[Biostrings gdata multtest scatterplot3d]; }; iSeq = derive { name="iSeq"; version="1.21.0"; sha256="0jp1p56wqdyiamd5jqiqz0sdc5snp1cds48x7449m4lsaqzmc3l4"; depends=[]; }; ibh = derive { name="ibh"; version="1.17.0"; sha256="1rcnmsg4iynsk9cfx6bwym9akhxapqkq31cgj6a9rb00l5g75fx3"; depends=[]; }; idiogram = derive { name="idiogram"; version="1.45.0"; sha256="1kpviyzmfkqkrdy8gchdr0zlxzrg3qv8sg6r0b3qk27gii2bsprf"; depends=[annotate Biobase plotrix]; }; -illuminaio = derive { name="illuminaio"; version="0.11.1"; sha256="1d0jb5wisllhcdaj6f19nxswl4lccmjhnrwycckd22qjdw29kdpl"; depends=[base64]; }; -imageHTS = derive { name="imageHTS"; version="1.19.0"; sha256="1paw8ym90lj42kc1bbmbyaz77kq9gzrhij43p5mg0ra6jl1f53v4"; depends=[Biobase cellHTS2 e1071 EBImage hwriter vsn]; }; -immunoClust = derive { name="immunoClust"; version="1.1.0"; sha256="11dykszddx9qm3fvpj7q96vjh46ndn695cvls7p5grlci9i4443l"; depends=[flowCore lattice]; }; +illuminaio = derive { name="illuminaio"; version="0.11.2"; sha256="15jv3kxyf1d0j20vvq8m7swqwwywl2235qrvwvyiagibx9g2baac"; depends=[base64]; }; +imageHTS = derive { name="imageHTS"; version="1.19.2"; sha256="1rxzrixp17cj17f23jmxbf80qdwyyplzdad70x451rijzjliwmxg"; depends=[Biobase cellHTS2 e1071 EBImage hwriter vsn]; }; +immunoClust = derive { name="immunoClust"; version="1.1.2"; sha256="0w1di2xg2n8815k0a29sfxzgmn09cwf5ni8d81s5r1vh5q1j2wab"; depends=[flowCore lattice]; }; impute = derive { name="impute"; version="1.43.0"; sha256="1wp02zd2vgpkalz830kah5135amrhv0gj6nqr3hs34yw3nnzcvxa"; depends=[]; }; -inSilicoDb = derive { name="inSilicoDb"; version="2.5.0"; sha256="1w5irx042z8if0pnvw9ra4a0hm0m1nbc2s9l2j59ww9l2qhj8hiq"; depends=[Biobase RCurl rjson]; }; +inSilicoDb = derive { name="inSilicoDb"; version="2.5.1"; sha256="09ilg2yv2dq5bkv6pvslrdw627zhibc9yyc11chxlb6d675n69jr"; depends=[Biobase RCurl rjson]; }; inSilicoMerging = derive { name="inSilicoMerging"; version="1.13.0"; sha256="0zaqwachxn3anbjyn0akv0n2djg08475cdxz7c44ja635r1f6y1j"; depends=[Biobase]; }; -intansv = derive { name="intansv"; version="1.9.0"; sha256="0vb5hls1yyw0x0ff2xcjmxplg0gar9g9xvs1bqw96bf9akcr12r9"; depends=[BiocGenerics GenomicRanges ggbio IRanges plyr]; }; -interactiveDisplay = derive { name="interactiveDisplay"; version="1.7.2"; sha256="1ql4qr5m1xsn3z57p2ndfc4b0zmxgjj0d3gb937ikfljm43jkwyk"; depends=[AnnotationDbi BiocGenerics Category ggplot2 gridSVG interactiveDisplayBase plyr RColorBrewer reshape2 shiny XML]; }; -interactiveDisplayBase = derive { name="interactiveDisplayBase"; version="1.7.1"; sha256="00b32z45xh0n1hrj166ax71p2aka3df9b2440wq0zribb9jf1s02"; depends=[BiocGenerics shiny]; }; +intansv = derive { name="intansv"; version="1.9.1"; sha256="04ky0l2q8ph34gdi3k5h24pj36nz4hj1fj2f36ph5w6b7pi8w2k1"; depends=[BiocGenerics GenomicRanges ggbio IRanges plyr]; }; +interactiveDisplay = derive { name="interactiveDisplay"; version="1.7.3"; sha256="075gr1qa90kkmsxinv83s0wvqwm28wm0z637md3xx06yd8xgnpyi"; depends=[AnnotationDbi BiocGenerics Category ggplot2 gridSVG interactiveDisplayBase plyr RColorBrewer reshape2 shiny XML]; }; +interactiveDisplayBase = derive { name="interactiveDisplayBase"; version="1.7.3"; sha256="14vr1gcr0mvbvlf90dp3w394fcxidwqqv1sdzd1x4p6ji7sajpf1"; depends=[BiocGenerics shiny]; }; inveRsion = derive { name="inveRsion"; version="1.17.0"; sha256="1km1h75dh5q505x1ddlhvyqxy4c10wvlviiz2l8sv3g3m9mbd26h"; depends=[haplo_stats]; }; iontree = derive { name="iontree"; version="1.15.0"; sha256="0frq4f357n5w08nwz3m7s0hv858kgcnlvxb4907yrg1b11zpfvmm"; depends=[rJava RSQLite XML]; }; isobar = derive { name="isobar"; version="1.15.1"; sha256="1i4zlfxbx94yb70bvd3wzlald2fi9ix4bhdlyim490rcdhb0lhyr"; depends=[Biobase distr plyr]; }; @@ -794,8 +813,9 @@ joda = derive { name="joda"; version="1.17.0"; sha256="0y3z4shl1vmx19wwp6msz5igj kebabs = derive { name="kebabs"; version="1.3.3"; sha256="10pnr5fd2ni4w69qp30q81d1rbyy0844sx1fskmv15d5ld2w5wkq"; depends=[Biostrings e1071 IRanges kernlab LiblineaR Matrix Rcpp S4Vectors XVector]; }; keggorthology = derive { name="keggorthology"; version="2.21.0"; sha256="1d3dz61llgmdnyqxqwv03pacfs97lzynzpjpmn7grf7bbpybjk2q"; depends=[AnnotationDbi DBI graph]; }; lapmix = derive { name="lapmix"; version="1.35.0"; sha256="1sps41l210h782bry6n8h55ghnlqn7s5dx0bx2805y5izz01linm"; depends=[Biobase]; }; +ldblock = derive { name="ldblock"; version="0.99.2"; sha256="092pjcb3dma3iz7s3m4nl6i2f1smr66f9banryi9b1vc0kc3xd2s"; depends=[Matrix snpStats]; }; les = derive { name="les"; version="1.19.0"; sha256="1b3zcvflwyybrh9pf33a0fn5qz6918sszjf0n666iqd3hh7zph8z"; depends=[boot fdrtool gplots RColorBrewer]; }; -limma = derive { name="limma"; version="3.25.14"; sha256="136pvfqqf9jwdir543wblrv6z4fpha5x2dbwldj980yhj4aqz76d"; depends=[]; }; +limma = derive { name="limma"; version="3.25.16"; sha256="1hn9qpwncjyrv1ylxqfvf8gkx0lz58nijf8g3cwhdvg00n94igwh"; depends=[]; }; limmaGUI = derive { name="limmaGUI"; version="1.45.2"; sha256="1s1dn14d5yhmfqj4r3kaxavpxaxsjw2492fpijgq0v8dnwqhz190"; depends=[AnnotationDbi BiocInstaller gcrma limma R2HTML tkrplot xtable]; }; lmdme = derive { name="lmdme"; version="1.11.0"; sha256="0j41rfvbhz31vniax7njnslxd94lws4jjfv3hc2s1ihxnj41dcma"; depends=[limma pls]; }; logicFS = derive { name="logicFS"; version="1.39.0"; sha256="1sz4bxsg76437j42i6cpbqvj5a35q7dwhya4yh1gmknqjrrcrv56"; depends=[LogicReg mcbiopi]; }; @@ -815,7 +835,7 @@ made4 = derive { name="made4"; version="1.43.0"; sha256="0jh90rhwp1qdiz5jfkp87xd maigesPack = derive { name="maigesPack"; version="1.33.0"; sha256="1sig032263lapric0hh6bmimjbq4hbarzdqp6k2pzhsc92dyybrl"; depends=[convert graph limma marray]; }; makecdfenv = derive { name="makecdfenv"; version="1.45.0"; sha256="0ybyimcd7hkb2dy9cihy28h53ybijn5bdrlibwmxwbb8wxbqczag"; depends=[affy affyio Biobase zlibbioc]; }; manta = derive { name="manta"; version="1.15.0"; sha256="0yf85qzvs2ngqiw98pmc3c6zdjphimjnkmd64bnv05aclpkadz7b"; depends=[caroline edgeR Hmisc]; }; -marray = derive { name="marray"; version="1.47.0"; sha256="0m2lkags00851xf3h48h0bj44ndfc91a2wq3z0ywnz7wzfisv9cc"; depends=[limma]; }; +marray = derive { name="marray"; version="1.47.1"; sha256="04xvjs3ni8g4nqy8z89q0jrfy5df8spm6wgd3lx1d31mbi87snm9"; depends=[limma]; }; maskBAD = derive { name="maskBAD"; version="1.13.0"; sha256="1j187m0qbri49a148m8nnsqfpngzy3l3r9r01wnp0jfc7nfbq5dl"; depends=[affy gcrma]; }; massiR = derive { name="massiR"; version="1.5.0"; sha256="19snv6w1xvysd9090lmnk6f7vkfgr3q0aqxfp50fp4hgfamvfm7r"; depends=[Biobase cluster diptest gplots]; }; matchBox = derive { name="matchBox"; version="1.11.0"; sha256="1wnn14l0qfxklz2ljqczq7n22926333d8l68jy90ak33wcfqmh5n"; depends=[]; }; @@ -827,49 +847,52 @@ messina = derive { name="messina"; version="1.5.0"; sha256="0hhhzw4nafsdjsl7m786 metaArray = derive { name="metaArray"; version="1.47.0"; sha256="11vl7lzdsgcg28940lngchlvdi64cyjm0qc42h85dbkk4p55mbpx"; depends=[Biobase MergeMaid]; }; metaMS = derive { name="metaMS"; version="1.5.0"; sha256="1nd4b525yyya6xxfa373924z34qmz28nai14h5ww7kkczpjzig1s"; depends=[BiocGenerics CAMERA Matrix robustbase xcms]; }; metaSeq = derive { name="metaSeq"; version="1.9.0"; sha256="1z8i4c5fxdwvja77jvziq0djkdsis56b5491i579yb6ydcc0pc6b"; depends=[NOISeq Rcpp snow]; }; -metabomxtr = derive { name="metabomxtr"; version="1.3.2"; sha256="0wbpb79k9026ql0csgvmxf0sxy7iws6lm21k7vhg8vaizk84f4d1"; depends=[Biobase Formula multtest optimx plyr]; }; -metagene = derive { name="metagene"; version="2.1.0"; sha256="0fk7cgf96g1ax009g6f45jppb0w80akv5n3iwaaryy5b9pvsfk21"; depends=[BiocParallel biomaRt GenomicAlignments GenomicRanges ggplot2 gplots muStat R6 Rsamtools rtracklayer]; }; +metaX = derive { name="metaX"; version="0.99.16"; sha256="0030yn17sjm4k1y5idzdsrjg68pm3v1gz2g8qpjniyg78hnanxk7"; depends=[ape BBmisc boot bootstrap CAMERA caret data_table DiffCorr DiscriMiner doParallel dplyr ggplot2 igraph impute lattice missForest mixOmics Nozzle_R1 pcaMethods pheatmap pls plyr preprocessCore pROC RColorBrewer RCurl reshape2 scatterplot3d SSPA stringr VennDiagram vsn xcms]; }; +metabomxtr = derive { name="metabomxtr"; version="1.3.6"; sha256="1xlvipyrlkqj53dz9579687cr0z1lcndrkly1027af864f9j8qcc"; depends=[Biobase Formula multtest optimx plyr]; }; +metagene = derive { name="metagene"; version="2.1.31"; sha256="17c4zal9siq6bi3qr4p63z7pilr42h830z84j6aknanwb7hmn6i8"; depends=[BiocParallel DBChIP GenomeInfoDb GenomicAlignments GenomicFeatures GenomicRanges ggplot2 gplots IRanges muStat R6 Rsamtools rtracklayer]; }; metagenomeSeq = derive { name="metagenomeSeq"; version="1.11.10"; sha256="0b9vylijb6gzri61qn8wkj9si1zrgznzqhxzib1aw9y71v8y8k05"; depends=[Biobase foreach glmnet gplots limma Matrix matrixStats RColorBrewer]; }; metahdep = derive { name="metahdep"; version="1.27.0"; sha256="0kjd27brcvhfqbqk9r3fclbzf2np2zj88gi522y1c6vh3pc6fd22"; depends=[]; }; -metaseqR = derive { name="metaseqR"; version="1.9.1"; sha256="1qaa28wnvafi7239lla8xfi8kxxwvi6ar684fg8f5a98s8vjk8i2"; depends=[baySeq biomaRt brew corrplot DESeq EDASeq edgeR gplots limma log4r NBPSeq NOISeq qvalue rjson vsn]; }; +metaseqR = derive { name="metaseqR"; version="1.9.2"; sha256="1c92h11wsbf016h62az4da28wqrsm0shsxqymwj8bg94cjr054vw"; depends=[baySeq biomaRt brew corrplot DESeq EDASeq edgeR gplots limma log4r NBPSeq NOISeq qvalue rjson vsn]; }; methVisual = derive { name="methVisual"; version="1.21.0"; sha256="18kin1ibcc4ilfh59qgb0zilhvhvs0a1gmbg0lbvj2r0kbsk1ryy"; depends=[Biostrings ca gridBase gsubfn IRanges plotrix sqldf]; }; -methyAnalysis = derive { name="methyAnalysis"; version="1.11.0"; sha256="0ka0svxvb76j0xkdx4pbwf2cyplihh45mb953csrapyh5r6hxwkn"; depends=[annotate AnnotationDbi Biobase BiocGenerics biomaRt genefilter GenomeInfoDb GenomicFeatures GenomicRanges genoset Gviz IRanges lumi methylumi rtracklayer S4Vectors VariantAnnotation]; }; +methyAnalysis = derive { name="methyAnalysis"; version="1.11.2"; sha256="0ja5pfw07qrpn687knvv4h81j1bl1bba0pkjpbbhi4xznw1syv0j"; depends=[annotate AnnotationDbi Biobase BiocGenerics biomaRt genefilter GenomeInfoDb GenomicFeatures GenomicRanges genoset Gviz IRanges lumi methylumi rtracklayer VariantAnnotation]; }; methylMnM = derive { name="methylMnM"; version="1.7.0"; sha256="08y13kkmafn2h55wwkgs1mpskb4i2wpxzzgjdr9gb3ns06qc9799"; depends=[edgeR statmod]; }; -methylPipe = derive { name="methylPipe"; version="1.3.4"; sha256="17y9xsvl6wgm7kn8g35h3zh7bcqhy7qp2lia6dzx609i04a9br9f"; depends=[BiocGenerics Biostrings data_table GenomeInfoDb GenomicAlignments GenomicRanges gplots Gviz IRanges marray Rsamtools S4Vectors SummarizedExperiment]; }; +methylPipe = derive { name="methylPipe"; version="1.3.6"; sha256="1225bkl0snr9ysknc1nbl8z3saipibfg5j8r4fqar6b4vhvi54cc"; depends=[BiocGenerics Biostrings data_table GenomeInfoDb GenomicAlignments GenomicRanges gplots Gviz IRanges marray Rsamtools S4Vectors SummarizedExperiment]; }; methylumi = derive { name="methylumi"; version="2.15.2"; sha256="174hikk5flwylifv7n8n67aps4np06klw240bdzfr347r8yrvikp"; depends=[annotate AnnotationDbi Biobase BiocGenerics genefilter GenomeInfoDb GenomicRanges ggplot2 illuminaio IRanges lattice matrixStats minfi reshape2 S4Vectors scales SummarizedExperiment]; }; mgsa = derive { name="mgsa"; version="1.17.0"; sha256="1nic4bgk3g3j2l6vr3i3msmid2bz0n7bq8f8zq26n45sr37wb4wq"; depends=[gplots]; }; -miRLAB = derive { name="miRLAB"; version="0.99.2"; sha256="0q255w5myzv9hg27xz4k3ykxf6arpr3nf28ykf23szcw8p01dc80"; depends=[energy entropy glmnet gplots Hmisc httr impute limma pcalg RCurl Roleswitch stringr]; }; +miRLAB = derive { name="miRLAB"; version="0.99.3"; sha256="0c0cf7phg7420hwpi7p08ghmfllsiv3gdwnljipb38hqwc4n5p9a"; depends=[energy entropy glmnet gplots Hmisc httr impute limma pcalg RCurl Roleswitch stringr]; }; miRNApath = derive { name="miRNApath"; version="1.29.0"; sha256="07r37gzn0y5cp4awj2i638i2cn019rnp7b4hnaqi3gc71sdzb25c"; depends=[]; }; -miRNAtap = derive { name="miRNAtap"; version="1.3.0"; sha256="0hmnhbbai04wp8hxrpgq04czfx2c49aihq7iiz86x9hzlj6xhgn6"; depends=[AnnotationDbi DBI plyr RSQLite sqldf stringr]; }; +miRNAtap = derive { name="miRNAtap"; version="1.3.2"; sha256="08i43qsgh2iryiv2qpgvxk9s9psiaklv58r6iv2xlzv5zhmflfn8"; depends=[AnnotationDbi DBI plyr RSQLite sqldf stringr]; }; microRNA = derive { name="microRNA"; version="1.27.0"; sha256="1akq1yxc03v7jmpypmr8a9lx5h2nfdjp1y0433lyffbd49wia2gm"; depends=[Biostrings]; }; minet = derive { name="minet"; version="3.27.0"; sha256="1wnn3nlpa0ymk465ax2s65i3w9xplhwssvng9qs7p3v2z72p9nqp"; depends=[infotheo]; }; minfi = derive { name="minfi"; version="1.15.11"; sha256="14j5vw6vmfz2h85n4dmsnx7138mxwzfl961p8y5wh1brz4vr31iy"; depends=[beanplot Biobase BiocGenerics Biostrings bumphunter genefilter GenomeInfoDb GenomicRanges GEOquery illuminaio IRanges lattice limma MASS matrixStats mclust mixOmics nlme nor1mix preprocessCore quadprog RColorBrewer reshape S4Vectors siggenes SummarizedExperiment]; }; mirIntegrator = derive { name="mirIntegrator"; version="0.99.5"; sha256="0r8l1lgf9rdxnr0dvc8r05ahjf3q0r4syy9mzx4p3f04s0c78q3h"; depends=[AnnotationDbi ggplot2 graph Rgraphviz ROntoTools]; }; -missMethyl = derive { name="missMethyl"; version="1.3.2"; sha256="05xk70z813jgwz9darqwh0f9ybycq9krig486b3751dd0xnjgmcq"; depends=[limma methylumi minfi ruv statmod stringr]; }; +missMethyl = derive { name="missMethyl"; version="1.3.5"; sha256="12g2g1x7xzvqrx3fxn56714jg5q6kmnh8vf74axjkjyzg4vcx3jx"; depends=[limma methylumi minfi ruv statmod stringr]; }; mitoODE = derive { name="mitoODE"; version="1.7.0"; sha256="182ifqh1g1yz8rbsxdqgk4hzlz3dwy0d03iklbg39cxy6qhgxqg4"; depends=[KernSmooth MASS minpack_lm]; }; mmnet = derive { name="mmnet"; version="1.7.0"; sha256="0za8a3j2fzyi15hd7l3ccw5qy3lyl7vihbcbixaw2kb81hmpphsa"; depends=[Biobase biom flexmix ggplot2 igraph KEGGREST Matrix plyr RCurl reshape2 RJSONIO stringr XML]; }; mogsa = derive { name="mogsa"; version="1.1.5"; sha256="1xn2rrp9s3d84i7ln37iblnxadl1dsi7qd98k5xz71kq0v1ljpy4"; depends=[Biobase BiocGenerics cluster corpcor genefilter gplots graphite GSEABase svd]; }; monocle = derive { name="monocle"; version="1.3.0"; sha256="1ir0f80nsrvpl4i441irprd4pk1f53dxf1jnvnjg5zrkj7dz3wrw"; depends=[Biobase BiocGenerics cluster combinat fastICA ggplot2 igraph irlba limma matrixStats plyr reshape2 VGAM]; }; mosaics = derive { name="mosaics"; version="2.3.0"; sha256="1jv5sv6xyh5i5m7kypgwc5g3sfsf0n5n683gijxcvrrwpvvfpnqy"; depends=[IRanges lattice MASS Rcpp]; }; motifRG = derive { name="motifRG"; version="1.13.0"; sha256="01k47padfs393pprjyz9pp9z6vjqlxi6x10y51mhg0anqfb1sar2"; depends=[Biostrings BSgenome IRanges seqLogo XVector]; }; -motifStack = derive { name="motifStack"; version="1.13.6"; sha256="0yp3k22i35hdmx5b5a9dk9mkdvglry6s8ck57gsl039ypf58kpja"; depends=[ade4 Biostrings grImport MotIV scales XML]; }; +motifStack = derive { name="motifStack"; version="1.13.7"; sha256="0d6aw0fg4i2wy5cq59mshn893d9l0jxa7rcijjkpayb5j0w7jwg8"; depends=[ade4 Biostrings grImport MotIV scales XML]; }; +motifbreakR = derive { name="motifbreakR"; version="0.99.8"; sha256="06sy9lpqp10qbwwdvi5y5y06vvv7jn6i2cd5xz1php1c5mqjf7yn"; depends=[BiocGenerics BiocParallel Biostrings BSgenome GenomeInfoDb GenomicRanges grImport Gviz IRanges matrixStats MotifDb motifStack rtracklayer S4Vectors stringr TFMPvalue VariantAnnotation]; }; msa = derive { name="msa"; version="1.1.1"; sha256="0nqgx1zb3n8kk2l3dgilsamwzadnddif39q5br7qs9xl38hag4nr"; depends=[BiocGenerics Biostrings IRanges Rcpp S4Vectors]; }; msmsEDA = derive { name="msmsEDA"; version="1.7.0"; sha256="1hywj0vvrqq1zg62gr1rk4sblm201hgwz5kd78819apw5jf50fwd"; depends=[gplots MASS MSnbase RColorBrewer]; }; msmsTests = derive { name="msmsTests"; version="1.7.0"; sha256="1qvi91shpy02irppq6g6lq43sp3rk2j7n1nfnm2p9767rdhbj13b"; depends=[edgeR msmsEDA MSnbase qvalue]; }; -mtbls2 = derive { name="mtbls2"; version="0.99.8"; sha256="0x5slfyn6gq5bhvpi820g93q2xzs8hb3s5yw4inpra0wpdmnvmkz"; depends=[]; }; +mtbls2 = derive { name="mtbls2"; version="0.99.10"; sha256="1b95vss8zq2v5zin22pmpnvwbhd68ykj8jy1qbpss4jxqvq7jmpa"; depends=[]; }; multiscan = derive { name="multiscan"; version="1.29.0"; sha256="0rp1nc8vjr8b0v9bcwrnsvdfklan0zc2cilrmwz1ikz0k5gnc0sq"; depends=[Biobase]; }; multtest = derive { name="multtest"; version="2.25.2"; sha256="1gby3am0rp62lsijhbr8yx8y457yhrv2ghdb41kl53r59mw8ba4z"; depends=[Biobase BiocGenerics MASS survival]; }; muscle = derive { name="muscle"; version="3.11.0"; sha256="1s3apdcd0qj08bswn7smj7b93yv9qar7wrzyfkp5z3m16jgz979x"; depends=[Biostrings]; }; mvGST = derive { name="mvGST"; version="1.3.0"; sha256="1chskyx9hgymxg57p6y98rw743lapssx18axvl0r9f2zsmmfz9bn"; depends=[annotate AnnotationDbi GOstats gProfileR graph Rgraphviz stringr topGO]; }; mygene = derive { name="mygene"; version="1.5.2"; sha256="0x40bnll85v94dnfpqrs8d9kx0zmdjbvgnqhcin1k9bshxqkypd9"; depends=[GenomicFeatures Hmisc httr jsonlite plyr S4Vectors sqldf]; }; +myvariant = derive { name="myvariant"; version="0.99.0"; sha256="1m8vml13dirivh4gw256bjsd852pliwi42way2670jfavryw9hjp"; depends=[GenomeInfoDb Hmisc httr jsonlite magrittr plyr S4Vectors VariantAnnotation]; }; mzID = derive { name="mzID"; version="1.7.1"; sha256="1pp0zfffz91g16y1kr81mbham64g00mm3q539ykj5az34g5q1fcm"; depends=[doParallel foreach iterators plyr ProtGenerics XML]; }; -mzR = derive { name="mzR"; version="2.3.2"; sha256="0hl3g2fn90lpka5r96cfzcw3msw8wnvq6d52p5axhb1214v5zpr6"; depends=[Biobase BiocGenerics ProtGenerics Rcpp zlibbioc]; }; -ncdfFlow = derive { name="ncdfFlow"; version="2.15.3"; sha256="0xhqis5pj5m4ib4xpkgg1afxzjc1827jw5k569aijr11qmi6jjxw"; depends=[BH Biobase flowCore flowViz Rcpp RcppArmadillo zlibbioc]; }; +mzR = derive { name="mzR"; version="2.3.3"; sha256="08s8zj6na7gwjcpqq4a6rgl81dybg8lvj70smr4xx9n97jghni90"; depends=[Biobase BiocGenerics ProtGenerics Rcpp zlibbioc]; }; +ncdfFlow = derive { name="ncdfFlow"; version="2.15.5"; sha256="0qxn979mdgv8gnys6www2965qg3lrd4zwj1j0gp2dpgq1m3yms0d"; depends=[BH Biobase flowCore flowViz Rcpp RcppArmadillo zlibbioc]; }; neaGUI = derive { name="neaGUI"; version="1.7.0"; sha256="198b0vrr5qp66z4sccwy6rh8sjxpw3qjkdryygg1baxq91ra76p1"; depends=[hwriter]; }; nem = derive { name="nem"; version="2.43.0"; sha256="1d357gh8binh0fwg1z0mzjzq3nyhazg9dnnf7aqk6gjfgsjda9i8"; depends=[boot e1071 graph limma plotrix RBGL RColorBrewer Rgraphviz statmod]; }; -netbenchmark = derive { name="netbenchmark"; version="1.1.6"; sha256="07q5a9kxq5r0ch32q68vxb4gxl6r5zhw6d06b8c89h42cby2qdfp"; depends=[c3net GeneNet minet PCIT pracma randomForest Rcpp]; }; +netbenchmark = derive { name="netbenchmark"; version="1.1.8"; sha256="0cn1bwjpla57ya5axmy51qx9k048f3ws7bj1n7k2y3ap8cwk36yp"; depends=[c3net corpcor fdrtool GeneNet Matrix minet PCIT pracma randomForest Rcpp]; }; netbiov = derive { name="netbiov"; version="1.3.1"; sha256="1v1iddwgz7nn0flgald0nrg96wm8pvdlwjnh8bql8y5x5sm58lmv"; depends=[igraph]; }; -nethet = derive { name="nethet"; version="1.1.0"; sha256="1xklqhwfmv1sk5h3x2g1jjbl5higrzhfj0mvap15vr2agax5hbg5"; depends=[CompQuadForm GeneNet ggm ggplot2 glasso glmnet GSA huge ICSNP limma mclust multtest mvtnorm network parcor]; }; +nethet = derive { name="nethet"; version="1.1.1"; sha256="1nji5cmk5b7zlchpxdm7y4pkmj0iy1azafxlycr1h5ghzsl47mmd"; depends=[CompQuadForm GeneNet ggm ggplot2 glasso glmnet GSA huge ICSNP limma mclust multtest mvtnorm network parcor]; }; netresponse = derive { name="netresponse"; version="1.19.0"; sha256="0blgcfbhwns4khnsd3m2yafmihr63kh3zsf7imphim0cdrx67xks"; depends=[dmt ggplot2 graph igraph mclust minet plyr qvalue RColorBrewer reshape Rgraphviz]; }; networkBMA = derive { name="networkBMA"; version="1.11.0"; sha256="09wf696s8n30nnadfds58flv8sv2gamgnw6pzz80isfc3178h1n6"; depends=[BMA Rcpp RcppArmadillo RcppEigen]; }; nnNorm = derive { name="nnNorm"; version="2.33.0"; sha256="1ml2z7cds83ff8fpmagfmymnqg66r2jgi32r840c87gk2vakakrm"; depends=[marray nnet]; }; @@ -888,13 +911,13 @@ oposSOM = derive { name="oposSOM"; version="1.5.4"; sha256="0f06wmy1n9gl41x4x7q1 pRoloc = derive { name="pRoloc"; version="1.9.6"; sha256="01gk4xnij5l4sk0c4km94i5b26vjfm8qhh3irb7xwfijank7mxd9"; depends=[Biobase BiocGenerics BiocParallel biomaRt caret class e1071 FNN ggplot2 gtools kernlab knitr lattice MASS mclust MLInterfaces MSnbase mvtnorm nnet plyr proxy randomForest RColorBrewer Rcpp RcppArmadillo sampling scales]; }; pRolocGUI = derive { name="pRolocGUI"; version="1.3.2"; sha256="08q1cavlxryx9isn2wsw8r0bv795hgzkyfx95ycxxdwh6vdvnnyl"; depends=[DT MSnbase pRoloc scales shiny]; }; paircompviz = derive { name="paircompviz"; version="1.7.0"; sha256="0sf80ji20q6kaqw2747an9b51xxwhl55yj5y7q6j68gif1ndkzl4"; depends=[Rgraphviz]; }; -pandaR = derive { name="pandaR"; version="1.1.1"; sha256="0rp8qk5cn5zj0nypkhmxjpja6lkjxd3hw2dkl4gaisayhiqlfk3g"; depends=[igraph matrixStats]; }; +pandaR = derive { name="pandaR"; version="1.1.21"; sha256="1bb8ivmilmccjdpiy6a5jnz0pxkvqmgsk7mc06ii60wxblg51n1n"; depends=[igraph matrixStats]; }; panp = derive { name="panp"; version="1.39.0"; sha256="163yii12bhw0skzhwrjbavpsgsl2aygj8x9cilzj9pqsqakvinna"; depends=[affy Biobase]; }; -parglms = derive { name="parglms"; version="1.1.0"; sha256="1msk5ygl030rczm10rp9xnb461cbzcs7qqk6jqk8xhv5dycnwnbd"; depends=[BatchJobs BiocGenerics BiocParallel]; }; +parglms = derive { name="parglms"; version="1.1.2"; sha256="1220yidkib92yhhih789k4q14dfjgnl9g3fgb8pi6nnqjzn1k62n"; depends=[BatchJobs BiocGenerics doParallel foreach]; }; parody = derive { name="parody"; version="1.27.0"; sha256="06lrzix8ydc41siy21fqkf3z6krj07p5v38pzan8jzzhqpwlq4iz"; depends=[]; }; pathRender = derive { name="pathRender"; version="1.37.0"; sha256="0iw7gsbjccazz1pip75czrzxrnmmw8iyzkzxwz6yc7p23y68xlgd"; depends=[AnnotationDbi graph RColorBrewer Rgraphviz]; }; pathifier = derive { name="pathifier"; version="1.7.0"; sha256="1zfhs2qkl20ryfp6zq6xrbavdgcfgw27b50pjx8p5maqx21qcgyh"; depends=[princurve R_oo]; }; -pathview = derive { name="pathview"; version="1.9.0"; sha256="0bajyh3ikaw87bpp6i04pmq440vy2rjjwjg1gp2bzml4rpwi2sz4"; depends=[AnnotationDbi graph KEGGgraph KEGGREST png Rgraphviz]; }; +pathview = derive { name="pathview"; version="1.9.1"; sha256="1fg2mmcbyndj1ddhvzz071v3qrssqkbkiy7nh72mbkh9m9k7a9vc"; depends=[AnnotationDbi graph KEGGgraph KEGGREST png Rgraphviz XML]; }; paxtoolsr = derive { name="paxtoolsr"; version="1.3.1"; sha256="0pv4zcl12yxidiy3wd0kc10p5n561348fbvdpzhjdz12gjdr3j41"; depends=[plyr RCurl rJava rjson XML]; }; pcaGoPromoter = derive { name="pcaGoPromoter"; version="1.13.1"; sha256="0a1yfi16sadp5fj112mlq9har0yggp8amn8v4v18jzfrb8aiacsj"; depends=[AnnotationDbi Biostrings ellipse]; }; pcaMethods = derive { name="pcaMethods"; version="1.59.0"; sha256="12b8qdd38xgpzisz0lm9xkwq22z5ciq7b8i11z3na1wynvim3nll"; depends=[Biobase BiocGenerics MASS Rcpp]; }; @@ -902,8 +925,8 @@ pcot2 = derive { name="pcot2"; version="1.37.0"; sha256="023ly5jgq8zc7k73mfqvra1 pdInfoBuilder = derive { name="pdInfoBuilder"; version="1.33.2"; sha256="026l6klpf93h42xgrbjyl022l0d0722gp7cqqgq4j8nb0wydg8l2"; depends=[affxparser Biobase BiocGenerics Biostrings DBI IRanges oligo oligoClasses RSQLite S4Vectors]; }; pdmclass = derive { name="pdmclass"; version="1.41.0"; sha256="0361s7d6n9wn65pxks3alr8ycqjcgv9dvvb2n9xqiqawyki1nvpm"; depends=[Biobase mda]; }; pepStat = derive { name="pepStat"; version="1.3.0"; sha256="003gqcs5m5b8mil9r1ydadhcc086nqmdk6i1xz4kkdpkcyxbyz7p"; depends=[Biobase data_table fields GenomicRanges ggplot2 IRanges limma plyr]; }; -pepXMLTab = derive { name="pepXMLTab"; version="1.3.0"; sha256="0rbcj59vsbq8zqxq4h1v077jgpz7l607zalc4lhw9yn8l5lij4j8"; depends=[XML]; }; -phenoDist = derive { name="phenoDist"; version="1.17.0"; sha256="1dn5s6dfh4x5xqp336a12vrqrk1gqdxp5k3yinnshxnq4iy5x8m9"; depends=[e1071 imageHTS]; }; +pepXMLTab = derive { name="pepXMLTab"; version="1.3.1"; sha256="09h6p9gn68jkqma6nxfh8g5q37cxbl7psbjsz4ms41l3mkn6pqng"; depends=[XML]; }; +phenoDist = derive { name="phenoDist"; version="1.17.1"; sha256="12b3px6raw978wlgk7xq0xr82yp5wnjp2riajyykqjf5d521qapk"; depends=[e1071 imageHTS]; }; phenoTest = derive { name="phenoTest"; version="1.17.0"; sha256="09192i8zsamcd1s31w2w0ipr6ms8n0dznpdy83j0d280c5mmb20y"; depends=[annotate AnnotationDbi Biobase biomaRt BMA Category ellipse genefilter ggplot2 gplots GSEABase Heatplus Hmisc hopach HTSanalyzeR limma mgcv SNPchip survival xtable]; }; phyloseq = derive { name="phyloseq"; version="1.13.2"; sha256="127n0smsgfgwb7by3hkagfhj8wn7xz5l73lf1vxmbzx8pal5lzni"; depends=[ade4 ape BiocGenerics biom Biostrings cluster data_table DESeq2 foreach ggplot2 igraph multtest plyr reshape2 scales vegan]; }; piano = derive { name="piano"; version="1.9.4"; sha256="1gj5ka0kjyvzxvsr84bs9z1ia3glsq57b1k820lp5qhswapzmgps"; depends=[Biobase BiocGenerics gplots igraph marray relations]; }; @@ -932,10 +955,10 @@ proteoQC = derive { name="proteoQC"; version="1.5.0"; sha256="1khhy7y1w8pyccc3x1 puma = derive { name="puma"; version="3.11.0"; sha256="1dgi08p70fifsa42gj4jd1651d8laq03fa52qvicsmwkjxxyd83w"; depends=[affy affyio Biobase mclust oligo]; }; pvac = derive { name="pvac"; version="1.17.0"; sha256="0r9p96lp15883xix9gbr36pcjy7zg8yniag257mps58xagld0162"; depends=[affy Biobase]; }; pvca = derive { name="pvca"; version="1.9.0"; sha256="1xi72iwarx3784l5hjf7vmwindsz4fbah5g9y2a2fllr5mjh421b"; depends=[Biobase lme4 Matrix vsn]; }; -pwOmics = derive { name="pwOmics"; version="1.1.8"; sha256="0nayswisdia4p4vxnzf5zgcgpld53rfcb3v7yrxyak4adp0d3lqd"; depends=[AnnotationDbi AnnotationHub Biobase BiocGenerics biomaRt data_table GenomicRanges gplots igraph rBiopaxParser STRINGdb]; }; +pwOmics = derive { name="pwOmics"; version="1.1.14"; sha256="12w5k9l2nf17hrfvdn02sdylsig6y5kr29r5vpjdrq1wxwc68izs"; depends=[AnnotationDbi AnnotationHub Biobase BiocGenerics biomaRt data_table GenomicRanges gplots igraph rBiopaxParser STRINGdb]; }; qcmetrics = derive { name="qcmetrics"; version="1.7.0"; sha256="1qrhl7w131yzkvck9ifqf966lmh8f9y9xlmrg2g3dgh29vgww54b"; depends=[Biobase knitr Nozzle_R1 pander S4Vectors xtable]; }; qpcrNorm = derive { name="qpcrNorm"; version="1.27.0"; sha256="0lmk9ksfrrw8zvhq20kg3kv0aqr8wx342nmw7zxvjv7l8z3d33sf"; depends=[affy Biobase limma]; }; -qpgraph = derive { name="qpgraph"; version="2.3.3"; sha256="1ykijxsg8yc3d1k9ip0p0zqrv75l9ps6q7h1naqw9sjhk6nqwf0g"; depends=[annotate AnnotationDbi Biobase BiocParallel GenomeInfoDb GenomicFeatures GenomicRanges graph IRanges Matrix mvtnorm qtl Rgraphviz S4Vectors]; }; +qpgraph = derive { name="qpgraph"; version="2.3.6"; sha256="0qcm1j2xjgcx2d0g10c6111brx0hvfl0gq3va5hqd9jhyi0ypi9z"; depends=[annotate AnnotationDbi Biobase BiocParallel GenomeInfoDb GenomicFeatures GenomicRanges graph IRanges Matrix mvtnorm qtl Rgraphviz S4Vectors]; }; qrqc = derive { name="qrqc"; version="1.23.0"; sha256="15kphqzml54zaadbdssna6krfgm28f7h8cmvq78hfzi303wqsi5j"; depends=[Biostrings biovizBase brew ggplot2 plyr reshape Rsamtools testthat xtable]; }; quantro = derive { name="quantro"; version="1.3.0"; sha256="155yqm48yc447mimcqxc6f27d5jcd6j9a069x1d2djx7xn3af76b"; depends=[Biobase doParallel foreach ggplot2 iterators minfi RColorBrewer]; }; quantsmooth = derive { name="quantsmooth"; version="1.35.0"; sha256="03z3q8zmaap6bd0mgm7hdj7rn929cfam8ajlxdy91nvyj6033lf5"; depends=[quantreg]; }; @@ -943,61 +966,62 @@ qusage = derive { name="qusage"; version="1.9.0"; sha256="1dg8qchhqfvak5cqjs9v30 qvalue = derive { name="qvalue"; version="2.1.0"; sha256="0qgsqjb90qnf5a77n3zf5dcb5agdbj4hlk3swh1hrjg9iqcs76g0"; depends=[ggplot2 reshape2]; }; r3Cseq = derive { name="r3Cseq"; version="1.15.0"; sha256="0pi5aq3dbivk23x6axwbqa4danbsvn623icw6xvlh3i71v8m5rkw"; depends=[Biostrings data_table GenomeInfoDb GenomicRanges IRanges qvalue RColorBrewer Rsamtools rtracklayer sqldf VGAM]; }; rBiopaxParser = derive { name="rBiopaxParser"; version="2.7.0"; sha256="1ni8kaivdxqxv8fj2qf5vnwzmmamfd073l1p4072pnfxpn7rn0p4"; depends=[data_table XML]; }; -rCGH = derive { name="rCGH"; version="0.99.7"; sha256="1bn8rwln7zh686hz87zz3ymv5lylk64xfmwjj357q7kx5r75n2hz"; depends=[aCGH affy AnnotationDbi BiocGenerics DNAcopy GenomeInfoDb GenomicFeatures GenomicRanges ggplot2 lattice limma mclust plyr RUnit shiny]; }; +rCGH = derive { name="rCGH"; version="0.99.10"; sha256="16s2wqnvs1zk9x8cdfc14ays3qlbqcmcnjdv49q6067ndw3qs0ac"; depends=[aCGH affy AnnotationDbi BiocGenerics DNAcopy GenomeInfoDb GenomicFeatures GenomicRanges ggplot2 lattice limma mclust plyr RUnit shiny]; }; rGADEM = derive { name="rGADEM"; version="2.17.0"; sha256="1xwypnpf7sdaqszfmallgg2314g866xbi9q342yhds2fkiw9sp65"; depends=[Biostrings BSgenome IRanges seqLogo]; }; -rGREAT = derive { name="rGREAT"; version="1.1.2"; sha256="0wwwpbxp8263jgkja6szcwqvijig8cfxdb66hvjqq69h9lqg9bkx"; depends=[GenomicRanges GetoptLong IRanges RCurl rjson]; }; +rGREAT = derive { name="rGREAT"; version="1.1.5"; sha256="1c6z4jz0xigfjmddqf44d2wxp3r6b001dh5mxzavcl9q8j7hm1il"; depends=[GenomicRanges GetoptLong IRanges RCurl rjson]; }; rHVDM = derive { name="rHVDM"; version="1.35.0"; sha256="0y2vm6xsdsz174xrs22p54z5f5rxqcx937yf02ilv0bnfa0r06hj"; depends=[affy Biobase minpack_lm R2HTML]; }; rMAT = derive { name="rMAT"; version="3.19.0"; sha256="0nhmf1hbiqwzb9035405f8asnhh2ywj4bm9wdlgbafyhiw6qik98"; depends=[affxparser Biobase BiocGenerics IRanges]; }; rRDP = derive { name="rRDP"; version="1.3.0"; sha256="0q373nfs4ynjnmq9rp0c0ficnnylwb2gf1j0bzlnxcd2cwz215zv"; depends=[Biostrings]; }; rSFFreader = derive { name="rSFFreader"; version="0.17.1"; sha256="105qlrjq4777k4ps2h7gmr2ywix9skrylhg4ds3dw0pi6n9a4w8n"; depends=[Biostrings IRanges S4Vectors ShortRead XVector]; }; rTANDEM = derive { name="rTANDEM"; version="1.9.0"; sha256="08r73kv83w8rfglbqf2zvczj4yix7sfhvrz93wk22nry04jfgccr"; depends=[data_table Rcpp XML]; }; rTRM = derive { name="rTRM"; version="1.7.1"; sha256="06p38i0hif1kjsy4xa88jhfl5giprq8gfa15zh1yv1qdqhaf1v1m"; depends=[AnnotationDbi DBI igraph RSQLite]; }; -rTRMui = derive { name="rTRMui"; version="1.7.0"; sha256="132cm40hxhb4apdidifbw90jyxhlz0dqxgqsr6awv8q6dy9jpfw4"; depends=[MotifDb rTRM shiny]; }; -rain = derive { name="rain"; version="1.3.1"; sha256="0hzfrab9b67wk9kkkx7bn1w2imhlq4j8mi3fch3ij42081g8plww"; depends=[gmp multtest]; }; +rTRMui = derive { name="rTRMui"; version="1.7.1"; sha256="1fv62p436ssgx5ydpjliw0zcfrrq8c5b3vk1q3k3hqg8fjyi49s8"; depends=[MotifDb rTRM shiny]; }; +rain = derive { name="rain"; version="1.3.2"; sha256="1mxv1bxw3nrsimdygcicf5yi0srk9jx64bx9yaw3wr08p4m4vnih"; depends=[gmp multtest]; }; rama = derive { name="rama"; version="1.43.0"; sha256="1siqzb0b9j51b06aijz85xn6c9v4dqvcw7scmrlfpf18dihqaig1"; depends=[]; }; randPack = derive { name="randPack"; version="1.15.0"; sha256="0m9729h3fia15rcgxznz4hmlz7abz8xkbn1ffc3l8qhqks5j50f7"; depends=[Biobase]; }; rbsurv = derive { name="rbsurv"; version="2.27.0"; sha256="1v97vrralg445zn8s3km7vmhlxhkv8bdwcj90fyvd6kfk7gm4xc7"; depends=[Biobase survival]; }; rcellminer = derive { name="rcellminer"; version="1.1.1"; sha256="04ddqp6kxsdhanp7xfifhcvm8hirb915wl15m2qzwx5xy4l97vry"; depends=[Biobase fingerprint gplots rcdk shiny stringr]; }; reb = derive { name="reb"; version="1.47.0"; sha256="1lxl4mzfz9b7hmq4fd7bsplxmknb8a3ffwdpddik3wry8rpqzmsd"; depends=[Biobase idiogram]; }; regionReport = derive { name="regionReport"; version="1.3.8"; sha256="0gpifx0x2khqacmmxpxps09scdqfm4n0fns2jx0v54iabhswgafj"; depends=[bumphunter derfinder derfinderPlot devtools GenomeInfoDb GenomicRanges ggbio ggplot2 gridExtra IRanges knitcitations knitr knitrBootstrap mgcv RColorBrewer rmarkdown whisker]; }; -regioneR = derive { name="regioneR"; version="1.1.1"; sha256="1wylrkqiv5lc9rw3mc1by88ckx437jwhlgyg5kasvpry003rm72c"; depends=[BSgenome GenomicRanges memoise rtracklayer]; }; +regioneR = derive { name="regioneR"; version="1.1.8"; sha256="0fkz3ks1j1dmy7kd8brl7jcrwan3rkzkg15snq5cw91n8crm5jdb"; depends=[BSgenome GenomicRanges memoise rtracklayer]; }; rfPred = derive { name="rfPred"; version="1.7.0"; sha256="0k1z7bqdjmm668kipz8c74kd9k1vw2pcjbirxdi88clrclz3i47y"; depends=[data_table GenomicRanges IRanges Rsamtools]; }; rgsepd = derive { name="rgsepd"; version="1.1.0"; sha256="1rvzlzh43j3sj2vrhmg13hl4wq3bg9hml3xq2dpx28lapynywm41"; depends=[AnnotationDbi biomaRt DESeq2 GenomicRanges goseq gplots hash]; }; -rhdf5 = derive { name="rhdf5"; version="2.13.5"; sha256="1k2hjzzj2irs7jap7g4ys0gd3iymnnbbyvyv986y9pq68p4f1nr0"; depends=[zlibbioc]; }; +rhdf5 = derive { name="rhdf5"; version="2.13.7"; sha256="0dwar7p4iv1wy3akjxya49pmgfyaydxfjy53fb9lbiywncr23jm3"; depends=[zlibbioc]; }; riboSeqR = derive { name="riboSeqR"; version="1.3.0"; sha256="0jlh5q1hkxkfvy496hlbwfkl17k36n304yiyz9f0azq5kv7jz1y2"; depends=[abind GenomicRanges]; }; rnaSeqMap = derive { name="rnaSeqMap"; version="2.27.0"; sha256="1638vikgizcgg4bpfm61ak98smwy74dk5hyx73qjbisd49zvy5nk"; depends=[Biobase DBI DESeq edgeR GenomicAlignments GenomicRanges IRanges Rsamtools]; }; -rnaseqcomp = derive { name="rnaseqcomp"; version="0.99.4"; sha256="0m3xz7fnry89i7b4f51x90mwiqlv2z4d3p2r41mdm4xvwmqj4ghf"; depends=[RColorBrewer]; }; -roar = derive { name="roar"; version="1.5.2"; sha256="0g0ylr49dvnbyb1kwj20hrh3y3x49n4rbdvg7mpdg1byrygcli3c"; depends=[GenomicAlignments GenomicRanges rtracklayer S4Vectors SummarizedExperiment]; }; +rnaseqcomp = derive { name="rnaseqcomp"; version="0.99.5"; sha256="1f39ys12mfj8c5279k4wlm71x62sa9shiv7yha69cy17fgdilndd"; depends=[RColorBrewer]; }; +roar = derive { name="roar"; version="1.5.3"; sha256="0x6h7180znnn85njxqn8418d44vsrfrymirwkxg5cxcy9kn01sfa"; depends=[GenomicAlignments GenomicRanges rtracklayer S4Vectors SummarizedExperiment]; }; rols = derive { name="rols"; version="1.11.6"; sha256="0wgzvwfq677dkqzzcq071xbh6v47vkcrzw66ch1vg348pcj58z0f"; depends=[Biobase XML]; }; -ropls = derive { name="ropls"; version="1.1.2"; sha256="06z0ay0rdaawyvpy7dbdpxkwa8311rlb9plk4v52v830zibamhvs"; depends=[]; }; +ropls = derive { name="ropls"; version="1.1.10"; sha256="0shr5hr75jqh6jd758fk7ppd8250xfsczy9ancc2kwc706cfvx2i"; depends=[]; }; rpx = derive { name="rpx"; version="1.5.1"; sha256="048qldpx4zsp55jkr8g8vljiyidm9kzv4p1vwh1983y38qbz882v"; depends=[RCurl XML]; }; rqubic = derive { name="rqubic"; version="1.15.0"; sha256="19n613m7x48wkrfrhnd0ab9018m5dd7rf08qjbgphakwycssfgcw"; depends=[biclust Biobase BiocGenerics]; }; rsbml = derive { name="rsbml"; version="2.27.0"; sha256="10qmv5gpgqffnr5wqh7zik0l2d1cg0c0m3xak4r4bqmsd1y4dw01"; depends=[BiocGenerics graph]; }; -rtracklayer = derive { name="rtracklayer"; version="1.29.13"; sha256="04f7fxl5k7yl4jr4la57k1z613m39zvrmrf8n5pmdy0j25lxk2z6"; depends=[BiocGenerics Biostrings GenomeInfoDb GenomicAlignments GenomicRanges IRanges RCurl Rsamtools S4Vectors XML XVector zlibbioc]; }; +rtracklayer = derive { name="rtracklayer"; version="1.29.28"; sha256="03bicp96zzil8pwm3g4lzldl6m39x20s8hcilsk9q52d14bfgxw3"; depends=[BiocGenerics Biostrings GenomeInfoDb GenomicAlignments GenomicRanges IRanges RCurl Rsamtools S4Vectors XML XVector zlibbioc]; }; sRAP = derive { name="sRAP"; version="1.9.0"; sha256="0rvnq41gns4ccr6gnfw0xbbi2c2wjl14qh0yr7wj7s4yrxzqr866"; depends=[gplots pls qvalue ROCR WriteXLS]; }; sSeq = derive { name="sSeq"; version="1.7.0"; sha256="0wcw77cz47wklwsrwwimwryqmyc0lrd9mk2aawk0vx1zkqci1yca"; depends=[caTools RColorBrewer]; }; safe = derive { name="safe"; version="3.9.0"; sha256="0x1gdzpgrm4m2m64h6y5rayp64j6ckxlr081d3w46zvfb935294a"; depends=[AnnotationDbi Biobase SparseM]; }; sagenhaft = derive { name="sagenhaft"; version="1.39.1"; sha256="15aimbx6wn4il0jp12df1q2j7rfrifk84gk3khl6qkzwjd4k58c6"; depends=[SparseM]; }; -sangerseqR = derive { name="sangerseqR"; version="1.5.0"; sha256="0wiqaqzn6n63k1389nqj35k5wn93bq7c99gayblwjrhks0y9fll0"; depends=[Biostrings shiny]; }; +sangerseqR = derive { name="sangerseqR"; version="1.5.1"; sha256="1q1kdpmp85lxha5ibfvl87dsajqi0id50ha5ih00mv6qs4c2jzwx"; depends=[Biostrings shiny]; }; sapFinder = derive { name="sapFinder"; version="1.7.0"; sha256="1xg3scw5ijm1z2l4ha4ik52s97vr10plr9ifs9rdk2l6vh8na6kh"; depends=[pheatmap Rcpp rTANDEM]; }; saps = derive { name="saps"; version="2.1.0"; sha256="0r6525n8ksxaa5dcvs9419bca1v369251psvwphfsdnfa4xg2n14"; depends=[piano reshape2 survcomp survival]; }; savR = derive { name="savR"; version="1.7.5"; sha256="0pdkf8rkqd3fl1p8h1adfixmi0fgj1hwfbn2qn5y326w6aq6cqrs"; depends=[ggplot2 gridExtra reshape2 scales XML]; }; +sbgr = derive { name="sbgr"; version="0.99.8"; sha256="171a63a50n664xw3jdx1pfpxkaydr0x1gki61112mifv4fr9lvjs"; depends=[httr jsonlite objectProperties]; }; scsR = derive { name="scsR"; version="1.5.0"; sha256="1n9clp1ldspxbrv4chihv1xhw2fmys13p884cmn037xhwv5b7j3r"; depends=[BiocGenerics Biostrings ggplot2 hash IRanges plyr RColorBrewer sqldf STRINGdb]; }; -segmentSeq = derive { name="segmentSeq"; version="2.3.1"; sha256="005b9a7rhhhcpkac8xyvl9lbzgwjbfpqr49wyn0i9j99v9zw1lfv"; depends=[baySeq GenomicRanges IRanges S4Vectors ShortRead]; }; -seq2pathway = derive { name="seq2pathway"; version="1.1.2"; sha256="1ghanxmfs99h8w2fxn6im3ml7brhhx131k7djbvsm695lvxgqm7a"; depends=[biomaRt GenomicRanges GSA nnet WGCNA]; }; +segmentSeq = derive { name="segmentSeq"; version="2.3.2"; sha256="1nn0dbpczs6nvn7l59rk23v1rclgxln5r6j2an67b1vxjc4hpqdm"; depends=[baySeq GenomicRanges IRanges S4Vectors ShortRead]; }; +seq2pathway = derive { name="seq2pathway"; version="1.1.9"; sha256="05qj9zz8i6l6357j2hp0njmjpk58cbvp7b5nja3s36p2xwaw48hq"; depends=[biomaRt GenomicRanges GSA nnet WGCNA]; }; seqCNA = derive { name="seqCNA"; version="1.15.0"; sha256="171292r5fwvvnwk4ajsxd43j92v2pn9n7aplvzcqxc4z43gvicss"; depends=[adehabitatLT doSNOW GLAD]; }; seqLogo = derive { name="seqLogo"; version="1.35.0"; sha256="1fwg6v536kqgmmjfk3cixy4s5chyp74drq8bj14ap8pzpfivisi1"; depends=[]; }; seqPattern = derive { name="seqPattern"; version="1.1.1"; sha256="0lshbskj928c2n7gi6kf22id6rarmbby5ffrlxir0zihh7g7yfxz"; depends=[Biostrings GenomicRanges IRanges KernSmooth plotrix]; }; seqTools = derive { name="seqTools"; version="1.3.0"; sha256="17n8mz93jx7ggf6w3hm92r9mb224w2spwsyr85amny6x8xrxr7k7"; depends=[zlibbioc]; }; seqbias = derive { name="seqbias"; version="1.17.0"; sha256="02zlj9nmwhjjmbfw499pf1szpair7ahbijvf6ci30z2g805l1qsk"; depends=[Biostrings GenomicRanges Rsamtools zlibbioc]; }; -seqplots = derive { name="seqplots"; version="1.6.0"; sha256="1mxllx6v87mk2vm5za97dhyfbwxdmmg1ly39vzacavldlc7hqkgc"; depends=[Biostrings BSgenome Cairo class DBI digest DT fields GenomeInfoDb GenomicRanges ggplot2 gridExtra IRanges jsonlite kohonen plotrix reshape2 RSQLite rtracklayer S4Vectors shiny]; }; +seqplots = derive { name="seqplots"; version="1.7.7"; sha256="0bh151prd7ifiqn1hpf1y5pgjfgwxfqgncb8bg308py9jhj81xld"; depends=[Biostrings BSgenome Cairo class DBI digest DT fields GenomeInfoDb GenomicRanges ggplot2 gridExtra IRanges jsonlite kohonen plotrix RColorBrewer reshape2 RSQLite rtracklayer S4Vectors shiny]; }; shinyMethyl = derive { name="shinyMethyl"; version="1.3.0"; sha256="03wfpaprrg6czkik0xxwq7hkwgdqm3z7frl6vpcq333chnv3nl5z"; depends=[BiocGenerics matrixStats minfi RColorBrewer shiny]; }; shinyTANDEM = derive { name="shinyTANDEM"; version="1.7.0"; sha256="18fl4kjwhbxnnhifa9kxz6j73pri0kfw08mgrryzdpqbd2p7x70y"; depends=[mixtools rTANDEM shiny xtable]; }; sigPathway = derive { name="sigPathway"; version="1.37.0"; sha256="1gkkpgibj3snpzs33c4k09b7q029s3jjch7slx7ljaqhdzldbpw4"; depends=[]; }; sigaR = derive { name="sigaR"; version="1.13.0"; sha256="0gfimhsmkrg78apasn3x7gw8vz9rcnc8flnnybplv6mgjwdgyqml"; depends=[Biobase CGHbase corpcor igraph marray MASS mvtnorm penalized quadprog snowfall]; }; siggenes = derive { name="siggenes"; version="1.43.0"; sha256="15l5h1shmva4lh9n8n9i1hfap1bh03vlz98bpcz842b7qczhn1v8"; depends=[Biobase multtest]; }; sigsquared = derive { name="sigsquared"; version="1.1.0"; sha256="010fsh2il81rg8k8yh5kms5rpqs379s74r52m69v3cf3pnhjxn2p"; depends=[Biobase survival]; }; -similaRpeak = derive { name="similaRpeak"; version="1.1.0"; sha256="0aq18iwxxapbgnjcjqyig20i58sbbjq1dfrbsmbfdh9i4fs1403w"; depends=[GenomicAlignments R6 Rsamtools rtracklayer]; }; +similaRpeak = derive { name="similaRpeak"; version="1.1.1"; sha256="1s7r52j58d11ryzg7dy41hfd3a8dz7zdifbalbkgxs7c4akvxwmz"; depends=[GenomicAlignments R6 Rsamtools rtracklayer]; }; simpleaffy = derive { name="simpleaffy"; version="2.45.0"; sha256="00fzbq82r9n1mfqh9f51z11a7qc2idms3hc95id1ggkjkqn5ljf8"; depends=[affy Biobase BiocGenerics gcrma genefilter]; }; simulatorZ = derive { name="simulatorZ"; version="1.3.5"; sha256="0rhpljx59n0klajz661ygx9a2xy4sdaxlgz6kqhdjvg7k53kr6z7"; depends=[Biobase BiocGenerics CoxBoost gbm GenomicRanges Hmisc IRanges S4Vectors SummarizedExperiment survival]; }; sincell = derive { name="sincell"; version="1.1.01"; sha256="1fkpdinh38xqx2d8dn0g5cxkfw0gfl1ddp6r5bc7ckdsvl692b5f"; depends=[cluster entropy fastICA fields ggplot2 igraph MASS proxy Rcpp reshape2 Rtsne scatterplot3d statmod TSP]; }; @@ -1005,10 +1029,10 @@ sizepower = derive { name="sizepower"; version="1.39.0"; sha256="1xw2r7m2hlg9r5i skewr = derive { name="skewr"; version="1.1.0"; sha256="1dd7vn4d7zffvmy1ic139qc5rp647wyw4jqlyy6kc2vil0w8368q"; depends=[IRanges methylumi minfi mixsmsn RColorBrewer wateRmelon]; }; snapCGH = derive { name="snapCGH"; version="1.39.0"; sha256="11xdijl28mn7znjdv1qgj5z5hhf7xnnpg79pnxr5kj17b06w5509"; depends=[aCGH cluster DNAcopy GLAD limma tilingArray]; }; snm = derive { name="snm"; version="1.17.0"; sha256="0ckn29nymlml8ldxqq5la1h3bwm2h2c2zcr2sjs5plxl2fga4a0l"; depends=[corpcor lme4]; }; -snpStats = derive { name="snpStats"; version="1.19.1"; sha256="1i4v737mrjjp8b24mihiv53ifgjcs7gaf9c4h2ling6gpasf39z8"; depends=[BiocGenerics Matrix survival zlibbioc]; }; +snpStats = derive { name="snpStats"; version="1.19.3"; sha256="00zcfx1vzxvzvbcbcp6gckx5hqx90x47w5253y9la0hb02wz0sl9"; depends=[BiocGenerics Matrix survival zlibbioc]; }; soGGi = derive { name="soGGi"; version="1.1.2"; sha256="0vqsdlnbdimz1y2q37ycddc3ifykbr9d0hsg47kqh5wjzgsrl4h7"; depends=[BiocGenerics BiocParallel Biostrings chipseq GenomeInfoDb GenomicAlignments GenomicRanges ggplot2 IRanges preprocessCore reshape2 Rsamtools rtracklayer S4Vectors SummarizedExperiment]; }; spade = derive { name="spade"; version="1.17.0"; sha256="02ba8ybgcldjmfsxywb0q7drm5nyhg6i72brvbrcgsq2ni0b7cpf"; depends=[Biobase flowCore igraph Rclusterpp]; }; -specL = derive { name="specL"; version="1.3.5"; sha256="0afaxclb4h797hm6rdybvp5dp85r1hmwgykj0q5h9ialqbjkmsv7"; depends=[DBI protViz Rcpp RSQLite seqinr]; }; +specL = derive { name="specL"; version="1.3.92"; sha256="1a1hm31s5mh0d1fibk5w78h9xd1ch9s8nlbjbqfmspkdf99x2nlb"; depends=[DBI protViz Rcpp RSQLite seqinr]; }; spikeLI = derive { name="spikeLI"; version="2.29.0"; sha256="1f7in8zcbdz9i1cqdhvdcjl6g71vhz9hgd8whc0x9nf12qa87l7p"; depends=[]; }; spkTools = derive { name="spkTools"; version="1.25.0"; sha256="1a260c41jxg0yi2li1159pdp8dqbrxgvda88047k5pjrpzwg0738"; depends=[Biobase gtools RColorBrewer]; }; spliceR = derive { name="spliceR"; version="1.11.0"; sha256="0zfvbnlslpav4kz385sa5h1v73wrzirahxc6fx752zvn4kqbxdkj"; depends=[cummeRbund GenomicRanges IRanges plyr RColorBrewer rtracklayer VennDiagram]; }; @@ -1018,25 +1042,27 @@ splots = derive { name="splots"; version="1.35.0"; sha256="1zc8k0599wjzyvgh01lzk spotSegmentation = derive { name="spotSegmentation"; version="1.43.0"; sha256="1y6ydlc6yn4hi66v7pgsa18kxarq8i164wzp440dxd54baqpq3ps"; depends=[mclust]; }; sscore = derive { name="sscore"; version="1.41.0"; sha256="15hj8wdvafk4kqiy370m95c188jw15aqxs7fjsx03z01kdnqs2xd"; depends=[affy affyio]; }; ssize = derive { name="ssize"; version="1.43.0"; sha256="144jgm68x0r5wrcg0bisrgxcrk9ckkj117rn7c19kvz8874bbir5"; depends=[gdata xtable]; }; -ssviz = derive { name="ssviz"; version="1.3.0"; sha256="1sl181mq7qsibn6f51mp8srl6zzrmpz69rjgbx00h57b5i8frv7b"; depends=[Biostrings ggplot2 RColorBrewer reshape Rsamtools]; }; +ssviz = derive { name="ssviz"; version="1.3.1"; sha256="01yrz5w8gk7b08p25hnvvwlvkzv56nrds33rnd0ipj2dqnqm2msn"; depends=[Biostrings ggplot2 RColorBrewer reshape Rsamtools]; }; staRank = derive { name="staRank"; version="1.11.0"; sha256="0hi3nzm0bdqrgjqjfvgz0qwymdrsd2c4csndw85hw9dj5ml1czqd"; depends=[cellHTS2]; }; stepNorm = derive { name="stepNorm"; version="1.41.0"; sha256="05g9qgxwfahyfq97pz3xmg49y7ml93w8n5hs5fv6f60l1nz59va1"; depends=[marray MASS]; }; stepwiseCM = derive { name="stepwiseCM"; version="1.15.0"; sha256="0r0ca29xpzki7lpr91rf99a1dvc5lmyls2v22pd1nxq4fb3g265l"; depends=[Biobase e1071 glmpath MAclinical pamr penalized randomForest snowfall tspair]; }; -supraHex = derive { name="supraHex"; version="1.7.2"; sha256="1ivi3lcck3ygxbask4v3kf8fkjni5ac9qz2pv55lnarws3s0xns7"; depends=[ape hexbin MASS]; }; +supraHex = derive { name="supraHex"; version="1.7.3"; sha256="0ivcqw6aycnxlf131n23q6dxaiad2jpxr6ffdk6xd3ca7qf5hpr6"; depends=[ape hexbin MASS]; }; survcomp = derive { name="survcomp"; version="1.19.1"; sha256="0nl3i8pbjyvpbn7d9fck5l1z3ayav2s2d943h6jvqdzc24qhb21w"; depends=[bootstrap ipred KernSmooth prodlim rmeta SuppDists survival survivalROC]; }; -sva = derive { name="sva"; version="3.15.0"; sha256="0bskn3famgz24kjaz4lrrm94vw07g5d2103h9gh5qzhajdsc2d03"; depends=[genefilter mgcv]; }; +sva = derive { name="sva"; version="3.16.0"; sha256="033b5n7y7vyv1zn75a2s9lcn6bdyj4vhi9vjqi03cfi0lry5dhq0"; depends=[genefilter mgcv]; }; switchBox = derive { name="switchBox"; version="1.3.0"; sha256="0bnb1wqxl3rv8w5rm0jw3x22yy8q27j11hpqnd792fvsz8ssr5h1"; depends=[]; }; -synapter = derive { name="synapter"; version="1.11.0"; sha256="05gv788mx1bzizr07cg5cw98i4xm3qdh8hpys4xvr06as7q65h2g"; depends=[Biobase BiocParallel Biostrings cleaver hwriter knitr lattice MSnbase multtest qvalue RColorBrewer]; }; -systemPipeR = derive { name="systemPipeR"; version="1.3.20"; sha256="164xjy8vsjr1ri196xhklisiqjj3frcm3nbpvixc6kd4zjgn0r0q"; depends=[annotate BatchJobs BiocGenerics Biostrings DESeq2 edgeR GenomicRanges ggplot2 GOstats limma pheatmap rjson Rsamtools ShortRead SummarizedExperiment VariantAnnotation]; }; -tRanslatome = derive { name="tRanslatome"; version="1.7.0"; sha256="1pcr1ghwkmkpsbkqh85yninvgb2za2vdsnax5bjkdj60wfj0d5bc"; depends=[anota Biobase DESeq edgeR GOSemSim gplots Heatplus limma plotrix RankProd samr sigPathway topGO]; }; +synapter = derive { name="synapter"; version="1.11.2"; sha256="1qycbf0h3czvbglllw6i16m4ky7zbqjka8k3mdyf9gdm5wjamvcy"; depends=[Biobase BiocParallel Biostrings cleaver hwriter knitr lattice MSnbase multtest qvalue RColorBrewer]; }; +synlet = derive { name="synlet"; version="0.99.2"; sha256="0bm58jp3yamjkznpxlb5m4r2wjmv1gy9mkhfp5mg6j8h4gr3s1lr"; depends=[doBy dplyr ggplot2 magrittr RankProd RColorBrewer reshape2]; }; +systemPipeR = derive { name="systemPipeR"; version="1.3.43"; sha256="0zzddm2xb4bjbha42r0dgdig6z8mvbs6jkxshcq0cvcglkj479fk"; depends=[annotate BatchJobs BiocGenerics Biostrings DESeq2 edgeR GenomicFeatures GenomicRanges ggplot2 GOstats limma pheatmap rjson Rsamtools ShortRead SummarizedExperiment VariantAnnotation]; }; +systemPipeRdata = derive { name="systemPipeRdata"; version="0.99.0"; sha256="0q1kvvlz4s40p2mrffgf1yyyar4vakcc9fv4h1sd2js3rsb265rr"; depends=[BiocGenerics]; }; +tRanslatome = derive { name="tRanslatome"; version="1.7.2"; sha256="0ywn5cc4iljp0ka2skv36zy9x1ja04xaxkyyaxqw9jlj1h61ic9j"; depends=[anota Biobase DESeq edgeR GOSemSim gplots Heatplus limma plotrix RankProd samr sigPathway topGO]; }; ternarynet = derive { name="ternarynet"; version="1.13.0"; sha256="13pnzzlfzgkvqn323xhjvbaqzrk2fjq440ff9hjf09a53g14q7li"; depends=[igraph]; }; tigre = derive { name="tigre"; version="1.23.0"; sha256="177phidn72rcghb4mqfcr2wbfx5pz2vdw6jh7ahnki7s5q6fkldl"; depends=[annotate AnnotationDbi Biobase BiocGenerics DBI gplots RSQLite]; }; -tilingArray = derive { name="tilingArray"; version="1.47.0"; sha256="1l7ldbzzjxa60ivnlb18m53z54vjjfdxjp5jxnxwg46n423rs93x"; depends=[affy Biobase genefilter pixmap RColorBrewer strucchange vsn]; }; +tilingArray = derive { name="tilingArray"; version="1.47.1"; sha256="1zq6wfb5pdabarmmq2qa5g0yfsw4m5ca7xpzwlhsa96x8bzrgkm6"; depends=[affy Biobase genefilter pixmap RColorBrewer strucchange vsn]; }; timecourse = derive { name="timecourse"; version="1.41.0"; sha256="1jpbjh4dg71zyhy8vghzqvmkg17aw7azdbhn101j8rdfsf90i8mx"; depends=[Biobase limma marray MASS]; }; tkWidgets = derive { name="tkWidgets"; version="1.47.0"; sha256="08vhxl7bdhnx0vk8pkm4bxjy9jvg42wy8nhlp04fyjkylfs5d58r"; depends=[DynDoc widgetTools]; }; topGO = derive { name="topGO"; version="2.21.0"; sha256="0hhglb4zqbjwqywn37h3klz7qgkypl2zmv1afibxjn70xc6wxq46"; depends=[AnnotationDbi Biobase BiocGenerics graph lattice SparseM]; }; -trackViewer = derive { name="trackViewer"; version="1.5.2"; sha256="0kr6mkim32khr5zqm7wzrv03g9fvn4imxr0b7h8jl7sl896hv5ks"; depends=[GenomicAlignments GenomicFeatures GenomicRanges Gviz gWidgetstcltk pbapply Rsamtools rtracklayer scales]; }; -tracktables = derive { name="tracktables"; version="1.3.0"; sha256="125z9b0rjvrrbg91bdzqrf3rrw0aajivpyxd1m9k1gcs6jmsaaj3"; depends=[GenomicRanges IRanges RColorBrewer Rsamtools stringr tractor_base XML XVector]; }; +trackViewer = derive { name="trackViewer"; version="1.5.5"; sha256="0602jf61rgagmq91hfl2xwkr7c6l49bkpfb920l7z0lb2cs1s88n"; depends=[GenomicAlignments GenomicFeatures GenomicRanges Gviz IRanges pbapply Rsamtools rtracklayer scales]; }; +tracktables = derive { name="tracktables"; version="1.3.1"; sha256="01gc01yhmqqdhadx68zlzk9f2z0wl4p3739fq6ab5aqv74gihzxj"; depends=[GenomicRanges IRanges RColorBrewer Rsamtools stringr tractor_base XML XVector]; }; traseR = derive { name="traseR"; version="0.99.7"; sha256="0rj4jcjgpkqyhclbpmz2ha0afj5jzr9qcc7kl1cw6dbf1syxcj8p"; depends=[GenomicRanges IRanges]; }; triform = derive { name="triform"; version="1.11.3"; sha256="0j8arzd9zbd37kzz1ndr6ljzz21h7bi33p0iqzy83l5ifidd4kaj"; depends=[BiocGenerics IRanges yaml]; }; trigger = derive { name="trigger"; version="1.15.0"; sha256="1gsvp2rvry8pg9wfl9rggjfjxd0dcq3lrfkygfsl4jqcwnankpvc"; depends=[corpcor qtl qvalue sva]; }; @@ -1046,9 +1072,9 @@ tspair = derive { name="tspair"; version="1.27.0"; sha256="0kx2iw2g0nji25qds5z6q tweeDEseq = derive { name="tweeDEseq"; version="1.15.0"; sha256="17mmkz0qpww2qwzk1vd5945wqpr59v091rlvn1s2013h248173vm"; depends=[cqn edgeR limma MASS]; }; twilight = derive { name="twilight"; version="1.45.0"; sha256="0dzgapk34jzxhdadraq072fcj6rwqhkx2795rbn0dkk4vazqz4sn"; depends=[Biobase]; }; unifiedWMWqPCR = derive { name="unifiedWMWqPCR"; version="1.5.0"; sha256="055yvgwqjh91cf8d2hsacnbzq2z9c911cy3qd206azqlr6qyjiip"; depends=[BiocGenerics HTqPCR]; }; -variancePartition = derive { name="variancePartition"; version="0.99.4"; sha256="1xy99saci2cihx95dy7yn92b09fan317iiacnyabsrd6z8l7ypp4"; depends=[Biobase dendextend doParallel foreach ggplot2 iterators limma lme4 reshape]; }; +variancePartition = derive { name="variancePartition"; version="0.99.8"; sha256="0k2v6119zvz4bra60fvglc769yfk8szrvdfppr7b80bfh9z5civ9"; depends=[Biobase dendextend doParallel foreach ggplot2 iterators limma lme4 reshape]; }; vbmp = derive { name="vbmp"; version="1.37.0"; sha256="1i4akvqrwj1r0ahi4vjxl7q780sa5bryj3rd2c5wg0ifd5l95h6s"; depends=[]; }; -viper = derive { name="viper"; version="1.5.2"; sha256="0zcb03c469nz5ka85m54n8if1188hprh4qgdwap5zc7xgyc0lhya"; depends=[Biobase e1071 KernSmooth mixtools]; }; +viper = derive { name="viper"; version="1.5.3"; sha256="0fwrx8mlnh6c5akx43w52mvz91qpwhppivfrxdha9j5ngahmn9ri"; depends=[Biobase e1071 KernSmooth mixtools]; }; vsn = derive { name="vsn"; version="3.37.3"; sha256="09mzv7l5j20sx14m63q9ycpacrh2zayywiyckglfgndpc8v9wp08"; depends=[affy Biobase ggplot2 hexbin lattice limma]; }; vtpnet = derive { name="vtpnet"; version="0.9.0"; sha256="0gbs4pdwy88pjwsn3r2yspnfscz127awhlwym6g1lk8sxkb4mjxc"; depends=[doParallel foreach GenomicRanges graph gwascat]; }; wateRmelon = derive { name="wateRmelon"; version="1.9.0"; sha256="1lgadzv28j5qqqqsrjzakxmyj1q9j0hps3waa2nn9r7dq4cvallh"; depends=[limma lumi matrixStats methylumi ROC]; }; @@ -1057,9 +1083,9 @@ waveTiling = derive { name="waveTiling"; version="1.11.0"; sha256="0y1xfa2z1djcd weaver = derive { name="weaver"; version="1.35.0"; sha256="010qw05wm66n0rwx8lz82kc064p40kqx5jb2nh99yqx14pah0v65"; depends=[codetools digest]; }; webbioc = derive { name="webbioc"; version="1.41.1"; sha256="01nsfzlxwjlj435mghm5ch324w6l22lvr22h0v59mjyi5gspvxbi"; depends=[affy annaffy Biobase BiocInstaller gcrma multtest qvalue vsn]; }; widgetTools = derive { name="widgetTools"; version="1.47.0"; sha256="134yq5qqxd0cpw4lm4k7gc1nq9cmlw7k2h4a93b32s75fa0mmnv7"; depends=[]; }; -xcms = derive { name="xcms"; version="1.45.6"; sha256="174az64bjhkq483zmpycwi28brabracc3478p9a7892yjg9rkiw5"; depends=[Biobase BiocGenerics lattice mzR ProtGenerics RColorBrewer]; }; +xcms = derive { name="xcms"; version="1.45.7"; sha256="1km8h4rm3kb46k0bbap7prkv1wwscl9g0hzdfbipnphzxrd5snh9"; depends=[Biobase BiocGenerics lattice mzR ProtGenerics RColorBrewer]; }; xmapbridge = derive { name="xmapbridge"; version="1.27.0"; sha256="1lmsbmhim1v20j1v9iry5ridvh2dzdvz082wj2r68j68ilcz08gr"; depends=[]; }; -xps = derive { name="xps"; version="1.29.0"; sha256="1m0rabnxwzm6hjfvr38r19c49jri91fgvwpghg5718qmk5hsfac1"; depends=[]; }; +xps = derive { name="xps"; version="1.29.2"; sha256="1cqizxx4a0dxs3ylgk4nbyxwgp54f7z5gnpwv3bfdj2w9rmbsrad"; depends=[]; }; yaqcaffy = derive { name="yaqcaffy"; version="1.29.1"; sha256="13hxgs8qm4z0h8mywxabij4q7fqd188wwcs2zfavna8q4cysf783"; depends=[simpleaffy]; }; zlibbioc = derive { name="zlibbioc"; version="1.15.0"; sha256="1dh5i3r74fy2q5jf31gsy40l3xzig2xqrpligji7aq8r2k4dchqv"; depends=[]; }; } diff --git a/pkgs/development/r-modules/cran-packages.nix b/pkgs/development/r-modules/cran-packages.nix index 169ef5899d4..0eb42ffba55 100644 --- a/pkgs/development/r-modules/cran-packages.nix +++ b/pkgs/development/r-modules/cran-packages.nix @@ -4,20 +4,22 @@ # Rscript generate-r-packages.R cran >new && mv new cran-packages.nix { self, derive }: with self; { -A3 = derive { name="A3"; version="0.9.2"; sha256="01s7znhph2mr3snpscci3y7nbcisa6kg6hy7im3742r6ah0z3jv7"; depends=[pbapply xtable]; }; -ABCanalysis = derive { name="ABCanalysis"; version="1.0.2"; sha256="1lgf9nhh5a8m4m48l6gd3d3avjqcplp40jzpb7d7y5vgj8cj1bw6"; depends=[Hmisc plotrix]; }; +A3 = derive { name="A3"; version="1.0.0"; sha256="017hq9pjsv1h9i7cqk5cfx27as54shlhdsdvr6jkhb8jfkpdb6cw"; depends=[pbapply xtable]; }; +ABCanalysis = derive { name="ABCanalysis"; version="1.1.0"; sha256="09s38xr6cig88v1nb8a192yc19rnhnqsfzazgfa257c7h84l0g9q"; depends=[Hmisc plotrix]; }; ABCoptim = derive { name="ABCoptim"; version="0.13.11"; sha256="1j2pbfl5g9x71gq9f7vg6wznsds8sn8dj3q2h5fhjcv58di3gjhl"; depends=[]; }; ACCLMA = derive { name="ACCLMA"; version="1.0"; sha256="1na27sp18fq12gp6vxgqw1ffsz2yi1d8xvrxbrzx5g1kqxrayy0v"; depends=[]; }; ACD = derive { name="ACD"; version="1.5.3"; sha256="1a67bi3hklq8nlc50r0qnyr4k7m9kpvijy8sqqpm54by5hsysfd6"; depends=[]; }; ACDm = derive { name="ACDm"; version="1.0.2"; sha256="1xj706qm5lcq38pm287d78rvyg7pxd4avbbvm1h4086s4l2qikf9"; depends=[dplyr ggplot2 plyr Rsolnp zoo]; }; ACNE = derive { name="ACNE"; version="0.8.0"; sha256="0ps38lljzm2aszqf8fhh74zbdxh46kypmybkw5w7xaf9nv5kcq8g"; depends=[aroma_affymetrix aroma_core MASS matrixStats R_filesets R_methodsS3 R_oo R_utils]; }; +ACSWR = derive { name="ACSWR"; version="1.0"; sha256="195vjrkang5cl7gwsna0aq4p0h4jym9xg9yh94bnf8vq6wf8j83n"; depends=[MASS]; }; ACTCD = derive { name="ACTCD"; version="1.0-0"; sha256="0zn8f6l5vmn4w1lqjnpcxvfbr2fhwbhdjx4144h3bk71bk9raavl"; depends=[R_methodsS3]; }; ADDT = derive { name="ADDT"; version="1.0"; sha256="1jx7rxi0yfn34pf3cf9zpf434rapgn5qn2mn5rkq5lysr3kwdw91"; depends=[]; }; ADGofTest = derive { name="ADGofTest"; version="0.3"; sha256="0ik817qzqp6kfbckjp1z7srlma0w6z2zcwykh0jdiv7nahwk3ncw"; depends=[]; }; ADM3 = derive { name="ADM3"; version="1.3"; sha256="1hg9wjdhckilqd13dr4cim4j6jsh2sdwm18i3pfmfdj8cyswm3h0"; depends=[]; }; ADPclust = derive { name="ADPclust"; version="0.6.3"; sha256="0lr4zkjhqr9azqxnxpxp9i0ppn8wi8ndb61ki7h2dzfgv27fingk"; depends=[cluster dplyr fields knitr]; }; AER = derive { name="AER"; version="1.2-4"; sha256="0cfhnh6ijwvbywk6falfq852jgx969v35j2l1q3cghwj9yggapbh"; depends=[car Formula lmtest sandwich survival zoo]; }; -AFLPsim = derive { name="AFLPsim"; version="0.3-4"; sha256="0xqp1d3cn8rcrsx0yipqh0k4xynv446acxpcammbflsz01xsgx9v"; depends=[adegenet introgress]; }; +AF = derive { name="AF"; version="0.1"; sha256="1z1pn259zs6iw0wgksn5dgmkji5g9dpzlhd7i2q0yx2hns2gxvq0"; depends=[drgee survival]; }; +AFLPsim = derive { name="AFLPsim"; version="0.4-2"; sha256="0bbbvv81nxqp5gc4hdhk0hyhb4n8f9w83kf21cgmqhy9cqnyr4s8"; depends=[adegenet introgress]; }; AGD = derive { name="AGD"; version="0.35"; sha256="1dk8m3zqvapwhz0677d3b2cbrin14p9adn5annzgjrxgw7ms4mg0"; depends=[gamlss gamlss_dist]; }; AGSDest = derive { name="AGSDest"; version="2.3"; sha256="1g8z7ba70zs4i8cb48iwf4iy1q1l76cpiixiac8fixjf1c7a9hxz"; depends=[ldbounds]; }; AHR = derive { name="AHR"; version="1.2"; sha256="150bj83158l1rks2zcw534py2crbxjgiw54sb0rzvgxwbyh8yz5g"; depends=[etm MASS Rcpp RcppArmadillo survival]; }; @@ -28,20 +30,22 @@ ALDqr = derive { name="ALDqr"; version="0.5"; sha256="0294d6cjfl5m63jhrv4rbh7npw ALKr = derive { name="ALKr"; version="0.5.3.1"; sha256="09df3vx2q0sn8fwz2cc9lckzwrf2hgbglzyn376d6nkrm6gq792a"; depends=[MASS Rcpp]; }; ALS = derive { name="ALS"; version="0.0.6"; sha256="1swrn39vy50fazkpf97r7c542gkj6mlvy8gmcxllg7mf2mqx546a"; depends=[Iso nnls]; }; ALSCPC = derive { name="ALSCPC"; version="1.0"; sha256="0ippxzq5qwb9dnpvm1kxhc0fxh83rs9ny5rcvd30w2bp632q9qdx"; depends=[]; }; -ALTopt = derive { name="ALTopt"; version="0.1.0"; sha256="0vdn535x199m95gs715i42p0cf9zlj74s7xgxly7aknr0l2ypl2c"; depends=[cubature lattice]; }; +ALTopt = derive { name="ALTopt"; version="0.1.1"; sha256="0frpnycnljz6r24cg4z99ivm3rbg9j1nxfkhw18vbrb7gcl1hqj6"; depends=[cubature lattice]; }; AMAP_Seq = derive { name="AMAP.Seq"; version="1.0"; sha256="0z0rrzps6rm58k4m1ybg77s3w05m5zfya4x8ril78ksxsjwi3636"; depends=[]; }; AMGET = derive { name="AMGET"; version="1.0"; sha256="18wdzzg5wr7akbd1iasa4mvmy44fb2n5gpghwcrx80knnicy3dxq"; depends=[]; }; AMOEBA = derive { name="AMOEBA"; version="1.1"; sha256="1npzh3rpfnxd4r1pj1hm214sfgbw4wmq4ws093lnl7pvsl0q37xn"; depends=[rlecuyer snowfall spdep]; }; AMORE = derive { name="AMORE"; version="0.2-15"; sha256="00zfqcsah2353mrhqkv8bbh24l8gaxk4y78icr9kxy4pqb2988yz"; depends=[]; }; +ANOM = derive { name="ANOM"; version="0.4"; sha256="142nw7rgchbxqj5kldrm0rng61f451fq57y4lql5qdi3qg23hrga"; depends=[ggplot2 MCPAN multcomp nparcomp SimComp]; }; AOfamilies = derive { name="AOfamilies"; version="1.01"; sha256="0v3b83k12lsrdcrkjl2ff38d0g8sbrnm5pmm9xphyrk3lfgap76k"; depends=[lqmm quantreg]; }; -APSIM = derive { name="APSIM"; version="0.8.1"; sha256="1d26f7h773938ag5s6zxydl4hx61gmwxxm47d3wy3xd9pmnhhx88"; depends=[data_table lubridate plyr sirad stringr]; }; +APSIM = derive { name="APSIM"; version="0.8.2"; sha256="19bk522d05719i15xky4jzzi76jp7v439ar0f31l7h3x2psy875l"; depends=[data_table lubridate plyr sirad stringr]; }; APSIMBatch = derive { name="APSIMBatch"; version="0.1.0.2374"; sha256="0j44ijq1v1k60lka9nmw8m1jfjw7pidny9bvswqy5v82gzmwl29d"; depends=[]; }; AR1seg = derive { name="AR1seg"; version="1.0"; sha256="0v9adx5wj9r4jwl3bqqmj0byiqfp585jz013qfqrq601wj8v4zi3"; depends=[Segmentor3IsBack]; }; ARPobservation = derive { name="ARPobservation"; version="1.1"; sha256="1cdhn11jf1nf03jyvs17ygmjq9pb5rvmyyrq9fp7ifmvcgbkwsms"; depends=[]; }; +ART = derive { name="ART"; version="1.0"; sha256="186w1ivj5v3h906crl953qxgai5wiznaih83dgvwgnmabs9p1wvk"; depends=[car]; }; ARTIVA = derive { name="ARTIVA"; version="1.2.3"; sha256="1jdvsslc8parz7wibcv51fx62brl2mc6i482hz43j1npsms2z1hl"; depends=[gplots igraph MASS]; }; ARTP = derive { name="ARTP"; version="2.0.4"; sha256="1f6ay9lyaqsc33b0larb8v6imp5adaycya84wif2sg32rv4gx3yl"; depends=[]; }; ARTool = derive { name="ARTool"; version="0.9.5"; sha256="1wfan4v3498libqgjdgn4l4ihf1khp3smj0lmyxd7vb4iaawlzci"; depends=[car lme4 pbkrtest plyr]; }; -ASMap = derive { name="ASMap"; version="0.4-4"; sha256="0fgycpnb2qr1j37f7avg75nij4b6h8bsmfl574cjqs6gmchkwfi0"; depends=[fields gtools lattice qtl]; }; +ASMap = derive { name="ASMap"; version="0.4-5"; sha256="1hrvxkhmycqldah3j1wkja0g7mdx24lyc6gp2x1pnx9fqjanwfy2"; depends=[fields gtools lattice qtl RColorBrewer]; }; ASPBay = derive { name="ASPBay"; version="1.2"; sha256="0b1qpyvmj7z10ixrmdxp42bj9s72c1l9rihzmv9p58f12a5aznjz"; depends=[hexbin Rcpp RcppArmadillo]; }; ATE = derive { name="ATE"; version="0.2.0"; sha256="1i46ivb7q61kq11z9v1rlnwad914nsdjcz9bagqx17vjk160mc0a"; depends=[]; }; ATmet = derive { name="ATmet"; version="1.2"; sha256="047ibxxf5si45zw22zy8a1kpj36q0pd3bsmxwvn0dhf4h65ah0zz"; depends=[DiceDesign lhs metRology msm sensitivity]; }; @@ -70,47 +74,51 @@ AnglerCreelSurveySimulation = derive { name="AnglerCreelSurveySimulation"; versi AnnotLists = derive { name="AnnotLists"; version="1.2"; sha256="1g2khb2ggniwg2zcjamsm3bxyrl2zabvk540b5vyy9am9k83m1g9"; depends=[]; }; AntWeb = derive { name="AntWeb"; version="0.7"; sha256="1ykfg3zzjdvjppr2l4f26lx00cn5vaqhhz1j1b5yh113ggyl40qw"; depends=[assertthat httr leafletR plyr rjson]; }; AnthropMMD = derive { name="AnthropMMD"; version="0.9.9"; sha256="10wn0fkcli5yz3fhngsz8sg1mfllqkvjrpjggd9qynay2zrpiw1n"; depends=[tcltk2]; }; -Anthropometry = derive { name="Anthropometry"; version="1.2"; sha256="15689jy85kf8j9w8yhffjfjw3lsdlv2w99za32p33shp32f3rvjz"; depends=[archetypes biclust cluster depth FNN ICGE nnls rgl shapes]; }; +Anthropometry = derive { name="Anthropometry"; version="1.5"; sha256="0g5i4xn6lbzf1p1rlnmvhpyf21bslh7wysb666a6r0w8ds2aa4p8"; depends=[archetypes biclust cluster depth FNN ICGE nnls rgl shapes]; }; ApacheLogProcessor = derive { name="ApacheLogProcessor"; version="0.1.5"; sha256="1xnx6syn365s4w4pks7xq6rng7hk30xln8hvszxwhwfnkzr8qqn2"; depends=[doParallel foreach]; }; AppliedPredictiveModeling = derive { name="AppliedPredictiveModeling"; version="1.1-6"; sha256="004d2k3mhl45inb7kx1ph8xc8h9bgm7f7l3prmvqrl5792400cn4"; depends=[CORElearn MASS plyr reshape2]; }; AquaEnv = derive { name="AquaEnv"; version="1.0-3"; sha256="1hkygw09w70im9f6l6q5yxk86mdl5pkczqfqrwc4wl1yhz7z1gjb"; depends=[deSolve minpack_lm]; }; -ArArRedux = derive { name="ArArRedux"; version="0.1"; sha256="1fgll399plraijbh1xrhf1nmc308daqhhsi5krq2lm7q2cn584pc"; depends=[]; }; +ArArRedux = derive { name="ArArRedux"; version="0.2"; sha256="0ql9yx46sgqkc3jd7yaw3vwg8rnykbsvpcahrgc66753kcxih04q"; depends=[]; }; ArDec = derive { name="ArDec"; version="2.0"; sha256="14niggcq7xlvpdhxhy8j870gb11cpk4rwn9gwsfmcfvh49g58i80"; depends=[]; }; ArfimaMLM = derive { name="ArfimaMLM"; version="1.3"; sha256="0s5igf703zzvagsbdxf5yv4gn0vdq51b7fvbc8xkgvlmv91yy372"; depends=[fracdiff fractal lme4]; }; ArgumentCheck = derive { name="ArgumentCheck"; version="0.10.0"; sha256="0cq4yzayj3wc45pna59v55xfa6x98q5s62kxwmqs6q76d50z7mzp"; depends=[]; }; ArrayBin = derive { name="ArrayBin"; version="0.2"; sha256="0jlhcv2d7pmqi32w71nz063ri1yj4i4isr3msnw7ckzvi9r42jwm"; depends=[SAGx]; }; AssetPricing = derive { name="AssetPricing"; version="1.0-0"; sha256="12v8hmmknkp472x406zgzwjp7x8sc90byc3s3dvmwd5qhryxkkix"; depends=[deSolve polynom]; }; -AssocTests = derive { name="AssocTests"; version="0.0-2"; sha256="1sba4b3rrk3ki95z0xs8aj8pcikczn7c66m00ziivsdi8iy10gzg"; depends=[cluster combinat fExtremes mvtnorm]; }; +AssocTests = derive { name="AssocTests"; version="0.0-3"; sha256="0vin9jkyvmgwk3kjf32qd8q9cj8ibmvdggbh8ny6f413ldyd77qc"; depends=[cluster combinat fExtremes mvtnorm]; }; AssotesteR = derive { name="AssotesteR"; version="0.1-10"; sha256="0aysilg79vprcyjirqz6c5s1ry1ia92xik3l38qrw1gf3vfli9cw"; depends=[mvtnorm]; }; AsynchLong = derive { name="AsynchLong"; version="1.0"; sha256="097d0zvzjkz3v32qhxdir0xv7kbjkhzy6q5k54w8l4fa2632j3mk"; depends=[]; }; AtelieR = derive { name="AtelieR"; version="0.24"; sha256="0yialpmbsbx70gvps4r58xg9wvqcril8j8yd61lkkmz4b3195zai"; depends=[cairoDevice gWidgetsRGtk2 partitions proto]; }; AtmRay = derive { name="AtmRay"; version="1.31"; sha256="162078jd032i72sgaar9hqcnn1lh60ajcqpsz4l5ysxfkghcxlh8"; depends=[]; }; +AutoModel = derive { name="AutoModel"; version="0.4.9"; sha256="07wpdf5b1z6lk69nqybzx333zc57wbnga6dp0vkf1d50hxmpd9yc"; depends=[aod BaylorEdPsych broom car dplyr gtools lmtest MASS ROCR rowr]; }; AutoSEARCH = derive { name="AutoSEARCH"; version="1.5"; sha256="1s2ldhxijd8n9ba78faik6gn4f07pdzksy0030pqyafxlr3v1qdj"; depends=[lgarch zoo]; }; +AutoregressionMDE = derive { name="AutoregressionMDE"; version="1.0"; sha256="1dmg0q4sp2d2anzhw2my8xjhpyjsx0kf7r202q5bkw8yr57jnhvr"; depends=[]; }; +AzureML = derive { name="AzureML"; version="0.1.1"; sha256="02w0jqf0c6yl2zhf193qcypwhkbzh2j8qipnkkii2hh1lvwiq52r"; depends=[base64enc codetools df2json jsonlite RCurl rjson uuid]; }; B2Z = derive { name="B2Z"; version="1.4"; sha256="0w7394vs883vb32gs6yhrc1kh5406rs851yb2gs8hqzxad1alvpn"; depends=[coda mvtnorm numDeriv]; }; BACA = derive { name="BACA"; version="1.3"; sha256="1vbip7wbzix1s2izbm4058wmwar7w5rv3q8bmj9pm7hcapfi19k0"; depends=[ggplot2 RDAVIDWebService rJava]; }; BACCO = derive { name="BACCO"; version="2.0-9"; sha256="0i1dnk0g3miyv3b60rzgjjm60180wxzv6v2q477r71q74b0v0r1y"; depends=[approximator calibrator emulator]; }; BACprior = derive { name="BACprior"; version="2.0"; sha256="1z9dvjq4lr99yp6c99bcv6n5jiiwfddfz4izcpfnnyvagfgizr8p"; depends=[boot leaps mvtnorm]; }; BAEssd = derive { name="BAEssd"; version="1.0.1"; sha256="04wkhcj4wm93hvmfnnzryswaylnxz5qsgnqky9lsx4jqhvg340l6"; depends=[mvtnorm]; }; -BAMMtools = derive { name="BAMMtools"; version="2.0.5"; sha256="1xrhif8872w5rwiba5lc705162si3vflri2r6wj8n69qg979kvw0"; depends=[ape]; }; +BAMMtools = derive { name="BAMMtools"; version="2.0.6"; sha256="0z6hsfg71rxxs4sq9zjmapijcxig8jswhhxm93n84cwgk9l7zc2r"; depends=[ape]; }; BANFF = derive { name="BANFF"; version="0.3"; sha256="0z7hwplp12m8sypkndjkjkmanbh67h47k8j9wm60qg6nnyqry9np"; depends=[coda doParallel DPpackage foreach igraph mclust network pscl tmvtnorm]; }; BANOVA = derive { name="BANOVA"; version="0.2"; sha256="1zgn9wxh4c89rris58hhj5fh37mmy8wjvligr02id7a1pcw177m3"; depends=[coda rjags runjags]; }; +BAS = derive { name="BAS"; version="1.0.5"; sha256="1pgnn6wr8h2vz27h6ijjz5mx7l42qnhfm4vbw9c3x4dx4yscy51r"; depends=[]; }; BASIX = derive { name="BASIX"; version="1.1"; sha256="18dkvv1iwskfnlpl6xridcgqpalbbpm2616mvc3hfrc0b26v01id"; depends=[]; }; -BAT = derive { name="BAT"; version="1.3.1"; sha256="16zc1pzx9x8xiqwm2c8zm6n6ry1hkc5dy9s4630as7f1cprq0k5v"; depends=[nls2 spatstat vegan]; }; +BAT = derive { name="BAT"; version="1.4.0"; sha256="18152jd8k3pngnjgzjmbvsk5qhxsqsi3k1yfdrcb61n4hvqxgns1"; depends=[nls2 spatstat vegan]; }; BAYSTAR = derive { name="BAYSTAR"; version="0.2-9"; sha256="0crillww1f1jvhjw639sf09lpc3wpzd69milah143gk9zlrkhmz2"; depends=[coda mvtnorm]; }; BB = derive { name="BB"; version="2014.10-1"; sha256="1lig3vxhyxy8cnic5bczms8pajmdvwr2ijad1rkdndpglving7x0"; depends=[quadprog]; }; -BBEST = derive { name="BBEST"; version="0.1-4"; sha256="0yqsz97lljlydhphiy0fb7vwbqxpjzn5v0v665c39dlprxv3jg3b"; depends=[DEoptim ggplot2 reshape2 shiny wmtsa]; }; +BBEST = derive { name="BBEST"; version="0.1-5"; sha256="0lsz4f4ygv53a04b6007krimsgkvk42cnmr1zlhx0ms5lwbbh34h"; depends=[DEoptim ggplot2 reshape2 shiny wmtsa]; }; BBMM = derive { name="BBMM"; version="3.0"; sha256="1cvv786wf1rr5906qg1di2krrv5jgw3dnyl8z2pvs8jyn0kb3fkj"; depends=[]; }; BBRecapture = derive { name="BBRecapture"; version="0.1"; sha256="05xzp5zjmkh0cyl47qfsz0l8drg8mimssybhycc4q69aif9scqxb"; depends=[HI lme4 locfit secr]; }; BBmisc = derive { name="BBmisc"; version="1.9"; sha256="01ihbx6cfgqvz87kpy7yb9c7jlizdym3f0n16967x2imq73dazsb"; depends=[checkmate]; }; BCA = derive { name="BCA"; version="0.9-3"; sha256="0ksd6b0ykydgdn33x29bwwqkrp23cvdj3imps0l6qs1p4465j5nf"; depends=[car clv flexclust Rcmdr RcmdrMisc rpart]; }; -BCBCSF = derive { name="BCBCSF"; version="1.0-0"; sha256="1ag8wz8a9vh1x4jgppimgchfs53rr6hbg5xzzr6k2h4bfsg7pmn3"; depends=[abind]; }; +BCBCSF = derive { name="BCBCSF"; version="1.0-1"; sha256="0hvhnra68i0x78n57nlbxmz0qwl2flng9w47089jw6f9hzkq9r7n"; depends=[abind]; }; BCDating = derive { name="BCDating"; version="0.9.7"; sha256="0z3a95sc481p0n33mhg7qlsf1jynbm1vbfds0n03bsjrwvqkzpb2"; depends=[]; }; BCE = derive { name="BCE"; version="2.1"; sha256="0dqp08pbq7r88yhvlwgzzk9dcdln7awlliy5mfq18j5jhiy7axiz"; depends=[FME limSolve Matrix]; }; BCEA = derive { name="BCEA"; version="2.1-1"; sha256="1j2zb2icv5b6kwgbjzvidbzvciag89227ina6qcb2m4g6spyxcrm"; depends=[]; }; BCEE = derive { name="BCEE"; version="1.0"; sha256="0c1fj263qfmg0vba2xf9bkchymcp8zjkwyjysgkkrdflxc4qskdi"; depends=[BMA]; }; -BCEs0 = derive { name="BCEs0"; version="1.1"; sha256="0q63bkmk0kk9p5d3xb0f5srzfrbr743isyw4v2h9ch5yyxizcizb"; depends=[]; }; +BCEs0 = derive { name="BCEs0"; version="1.1-1"; sha256="1ipg8xliqnpfa4ga9r0gqf5sfa9gass4hvrlgxazs5hb18fpsl91"; depends=[]; }; BCRA = derive { name="BCRA"; version="1.0"; sha256="1bbxh1kf35h31c4k565kk6grdhp5pnn8vr3nr6vnp32dp4pc05zh"; depends=[]; }; -BDgraph = derive { name="BDgraph"; version="2.19"; sha256="1z1ah2d5mjdfqgi00p2jlslhfd256ksijg3nk307594k2c8psqfp"; depends=[igraph Matrix]; }; +BDgraph = derive { name="BDgraph"; version="2.23"; sha256="0mk4lm7r3ijakww63ma35bp9ild02ryhp40q0xgsk54n4iiz9biy"; depends=[igraph Matrix]; }; BEANSP = derive { name="BEANSP"; version="1.0"; sha256="0xcb81pk3iidb3dz9l4hm6cwx8hrbg5qz0sfi59yx2f7nsazr4xk"; depends=[]; }; BEDASSLE = derive { name="BEDASSLE"; version="1.5"; sha256="1bz3lr0waly9vj9adwhmgs3lq7zjdkcbvm3y9rnn72qlrwmv5fbn"; depends=[emdbook MASS matrixcalc]; }; BEQI2 = derive { name="BEQI2"; version="2.0-0"; sha256="19q29kkwww5hziffkm2yx7n4cpfcsyh0z4mljdcnjkwfp732sjig"; depends=[jsonlite knitr markdown plyr reshape2 xtable]; }; @@ -120,7 +128,7 @@ BGPhazard = derive { name="BGPhazard"; version="1.2.2"; sha256="1v89pjigrjkin9vs BGSIMD = derive { name="BGSIMD"; version="1.0"; sha256="0xkr56z8l72wps7faqi5pna1nzalc3qj09jvd3v9zy8s7zf5r7w4"; depends=[]; }; BH = derive { name="BH"; version="1.58.0-1"; sha256="17rnwyw9ib2pvm60iixzkbz7ff4fslpifp1nlx4czp42hy67kqpf"; depends=[]; }; BHH2 = derive { name="BHH2"; version="2015.06.25"; sha256="19c8qjfvg4f3zlrqvrsdmc776f81ghv8w0l3bnbpdbyz7fivc1qw"; depends=[]; }; -BIFIEsurvey = derive { name="BIFIEsurvey"; version="1.3-0"; sha256="1sp09aavzz8xibn3lgaxfb5z31wfbnv5gqgwvbd150pq6i7mg0aj"; depends=[miceadds mitools Rcpp RcppArmadillo TAM]; }; +BIFIEsurvey = derive { name="BIFIEsurvey"; version="1.4-0"; sha256="1vi67lh9f30gf43q7dzyfwkhi5kwlg0l263fyi0ijc0p2la14rwq"; depends=[miceadds mitools Rcpp RcppArmadillo TAM]; }; BIGDAWG = derive { name="BIGDAWG"; version="1.1"; sha256="0rgk2w7d8qq2dahfmiv81v1ydm1by6nabjzjb6iabfk0b8bnwqy2"; depends=[haplo_stats XML]; }; BIOM_utils = derive { name="BIOM.utils"; version="0.9"; sha256="0xckhdvf15a62awfk9rjyqbi6rm7p4awxz7vg2m7bqiqzdll80p7"; depends=[]; }; BIPOD = derive { name="BIPOD"; version="0.2.1"; sha256="04r58gzk3hldbn115j9ik4bclzz5xb2i3x6b90m2w9sq7ymn3zg1"; depends=[Rcpp RcppArmadillo]; }; @@ -129,20 +137,21 @@ BLR = derive { name="BLR"; version="1.4"; sha256="0wy3c8nnzkdhwb5s1ygdid47hpdx72 BMA = derive { name="BMA"; version="3.18.4"; sha256="1lqcvr6p0y2b3n099j6rqvg5sz9i185qh9fcmm83p7czdjwn9yg9"; depends=[inline leaps robustbase rrcov survival]; }; BMN = derive { name="BMN"; version="1.02"; sha256="12gyq01cn6a9ixqgki1ihx5jrp2gw6jdj7q210rb12xlvj3p6x7w"; depends=[]; }; BMS = derive { name="BMS"; version="0.3.3"; sha256="1yj9vi8jvhkwpcjkclf0zbah0dayridklpj65ay6r18fyf4crnd2"; depends=[]; }; -BMhyd = derive { name="BMhyd"; version="1.2-2"; sha256="09gb1pq9y3gq9avpaqrlxdsm9iqsxpbnr0bg2mw1vkhc0d5z8zv7"; depends=[corpcor numDeriv]; }; +BMhyd = derive { name="BMhyd"; version="1.2-8"; sha256="14pv5f621zq5x9i408zjm8k80hcsabkjpdf86gk3ylgw5yqcivrx"; depends=[ape corpcor geiger mvtnorm numDeriv phylobase phytools TreeSim]; }; BNDataGenerator = derive { name="BNDataGenerator"; version="1.0"; sha256="17zi83jhpn9ygavkpr9haffvd4622sca18jzzxxxmfq0ilrj201g"; depends=[]; }; BNPTSclust = derive { name="BNPTSclust"; version="1.1"; sha256="1zmxwg6zn3nqqm1sw2n4pvq47mv7ygb4lf1c6yhn3xaf1rqmf26s"; depends=[MASS mvtnorm]; }; BNPdensity = derive { name="BNPdensity"; version="2015.5"; sha256="0jgdc9dayc57y77bb2yjcn1pb5ahrvbrsmyjkhyl4365sn5njzl8"; depends=[]; }; BNSP = derive { name="BNSP"; version="1.0.5"; sha256="0iyrmrpnx32akcfvd43jh74457l56n5n4pnlyqi9v3cjp4n95fds"; depends=[]; }; BOG = derive { name="BOG"; version="2.0"; sha256="0lz5af813b67hfl4hzcydn58sjhgn5706n2h44g488bks928k940"; depends=[DIME hash]; }; -BOIN = derive { name="BOIN"; version="1.2"; sha256="1vd1w3cd1l1hk63hdrn6c1hrpqwy6nkkxni1d37yj2iz7gz6wbsg"; depends=[]; }; +BOIN = derive { name="BOIN"; version="2.0"; sha256="1jyj41936nd6dianifa0bhh9fzpj72fb87g6hgq7m9zi04cnp69s"; depends=[Iso]; }; BRugs = derive { name="BRugs"; version="0.8-5"; sha256="13941d3x3l9jr4xdn7xyp3yixnlzmi5xmh42isni0fc1ji86p0jm"; depends=[coda]; }; BSDA = derive { name="BSDA"; version="1.01"; sha256="06mgmwwh56bj27wdya8ln9mr3v5gb6fcca7v9s256k64i19z12yi"; depends=[e1071 lattice]; }; BSGS = derive { name="BSGS"; version="2.0"; sha256="08m8g4zbsp55msqbic4f17lcry07mdn0f5a61zdcy2msn2ihzzf9"; depends=[batchmeans MASS plyr pscl]; }; -BSGW = derive { name="BSGW"; version="0.9"; sha256="0df5d0d0kfvwavxbxra36jjs9044q1szq1xm37dvh4wfvvv6igmb"; depends=[survival]; }; -BSSasymp = derive { name="BSSasymp"; version="1.1-0"; sha256="0z3abgvbpmwgzb6b6r5ys3msy97lfdg81p8d19c83aaa6hrngggn"; depends=[fICA JADE]; }; +BSGW = derive { name="BSGW"; version="0.9.1"; sha256="1zp8352mgqpmyn63b5xfmq67rsf3cdy7yy5k1qihdlkw9bi5r3vc"; depends=[doParallel foreach MfUSampler survival]; }; +BSSasymp = derive { name="BSSasymp"; version="1.1-1"; sha256="1q2ci9wkz9jd8sr3qqrsbqcd395pfi6agcn3swkz5cxkv1na7k7h"; depends=[fICA JADE]; }; BSagri = derive { name="BSagri"; version="0.1-8"; sha256="148pr4lkgdi4bwc9lavgj356nh240iazz28xklq14rw4gzhmz2k4"; depends=[boot gamlss MCPAN mratios multcomp mvtnorm]; }; BSquare = derive { name="BSquare"; version="1.1"; sha256="1s16307m5gj60nv4m652iisyqi3jw5pmnvar6f52rw1sypfp5n49"; depends=[quadprog quantreg VGAM]; }; +BTLLasso = derive { name="BTLLasso"; version="0.1-2"; sha256="02zd0fp7km4l2ks50z37gqcbpq6fsvkiwqnccndszrwqhi41x7y5"; depends=[Matrix Rcpp RcppArmadillo stringr]; }; BTSPAS = derive { name="BTSPAS"; version="2014.0901"; sha256="0ankkhm38rvq06g0jnbvjbja4jv8lg21dsc0rxsy174b1i6vjhwi"; depends=[actuar coda ggplot2 plyr R2OpenBUGS rjags]; }; BTYD = derive { name="BTYD"; version="2.4"; sha256="13szcsgsrd7mwc4f47xrfrmsm2sg5sf7pfm21ly4cbvqcz8m0147"; depends=[hypergeo Matrix]; }; BVS = derive { name="BVS"; version="4.12.1"; sha256="111g61bpwh80v6gy44q087swcrnnnzdcibm22pzzi9jsfphy6l0c"; depends=[haplo_stats MASS msm]; }; @@ -161,7 +170,7 @@ BayesBridge = derive { name="BayesBridge"; version="0.6"; sha256="1j03m465pwq0lh BayesCR = derive { name="BayesCR"; version="2.0"; sha256="0cafind5vz81ryw1c7324hyfc6922fsxmjnvddb4mrhis54id2r4"; depends=[mnormt mvtnorm Rlab rootSolve truncdist]; }; BayesComm = derive { name="BayesComm"; version="0.1-2"; sha256="1rrbvwcfm93cw0m33g0zn6nyshfjc97kb3fby9cga0zaixc0a8rk"; depends=[abind coda mvtnorm Rcpp RcppArmadillo]; }; BayesDA = derive { name="BayesDA"; version="2012.04-1"; sha256="0fp27cmhw8dsxr4mc1flm6qh907476kph8ch2889g9p31xm1psjc"; depends=[]; }; -BayesFactor = derive { name="BayesFactor"; version="0.9.11-1"; sha256="0vq656q38vlf0ba8g23psk8as1y48y6s8yrvqrppbjx5d9wlm9wv"; depends=[coda gtools Matrix MatrixModels mvtnorm pbapply Rcpp RcppEigen stringr]; }; +BayesFactor = derive { name="BayesFactor"; version="0.9.12-2"; sha256="17zfs8bmzp59zaxzcrzis2sxdnqxrv9h1kpb22112mp9l1alvwl4"; depends=[coda gtools Matrix MatrixModels mvtnorm pbapply Rcpp RcppEigen stringr]; }; BayesGESM = derive { name="BayesGESM"; version="1.4"; sha256="0qw2byb48f67461m1k8a1rqh6a0c3zq1rc4ni9xzxv8dih4wkq0f"; depends=[Formula GIGrvg normalp]; }; BayesLCA = derive { name="BayesLCA"; version="1.7"; sha256="0lsqgjqal9092v1wr07p8g5cqm24k2d80sp7hlr7r1xknakmm1b6"; depends=[coda e1071 fields MCMCpack nlme]; }; BayesLogit = derive { name="BayesLogit"; version="0.5.1"; sha256="0nr215wzhqlfi32617mmqb6i3w5x1kh5fiy68k0xzdqjsyjr65m0"; depends=[]; }; @@ -181,7 +190,7 @@ Bayesianbetareg = derive { name="Bayesianbetareg"; version="1.2"; sha256="0imsz2 Bayesthresh = derive { name="Bayesthresh"; version="2.0.1"; sha256="0w26h1ragqcg1i4h7c2y6vd8fig2jb2zrnvvchgg5z2hg9qdplsf"; depends=[coda lme4 MASS matrixcalc mvtnorm VGAM]; }; BaylorEdPsych = derive { name="BaylorEdPsych"; version="0.5"; sha256="1kq6nvzdqwawygp7k62lw5hyccsj81jg82hq60yidgxnmmnnf7y2"; depends=[]; }; BcDiag = derive { name="BcDiag"; version="1.0.8"; sha256="1x9rkr96dgxp88z9qaw72ikcdmdlxnj8vjn3bfv0q27sfyxwb3a5"; depends=[fabia]; }; -Bchron = derive { name="Bchron"; version="4.1.1"; sha256="0dnfz7xpmbygyarh9ai9x3xfsqiizi0zhnxm8bmkvqyb8h7zpghb"; depends=[coda ellipse hdrcde inline MASS mclust]; }; +Bchron = derive { name="Bchron"; version="4.1.2"; sha256="0pljizj3689mxvsj62mhcy1zvcx7s41vsr5fawz9hij91nq1b8yi"; depends=[coda ellipse hdrcde inline MASS mclust]; }; Bclim = derive { name="Bclim"; version="2.3.1"; sha256="160c9v83bpik73yjj45lr8sdgl8v4ymlkqw424ncc3lficyhvfjg"; depends=[hdrcde MASS mclust statmod]; }; Benchmarking = derive { name="Benchmarking"; version="0.26"; sha256="00w7a16lhra6rjylyj26q67mvgbc3wa27a2wmiwjz5yh7wdnh193"; depends=[lpSolveAPI ucminf]; }; BenfordTests = derive { name="BenfordTests"; version="1.2.0"; sha256="1nnj0w0zwcmg7maqmmpixx7alvsyxva370ssc26ahg6kxy5a621w"; depends=[]; }; @@ -191,7 +200,7 @@ Bessel = derive { name="Bessel"; version="0.5-5"; sha256="1apcpwqgnbsn544x2mfjkp Bhat = derive { name="Bhat"; version="0.9-10"; sha256="1vg4pzrk3y0dk1kbf80mxsbz9ammkysh6bn26maiplmjagbj954v"; depends=[]; }; BiDimRegression = derive { name="BiDimRegression"; version="1.0.6"; sha256="1kgrk4xanvxqdq619ha08wwplmsn2xqygx4dziagx48iqfpp1lxj"; depends=[nlme]; }; BiSEp = derive { name="BiSEp"; version="2.0.1"; sha256="15sn9kxs0mb98kclfpif90c808a1365gdj2j332sxi07f64pb87q"; depends=[AnnotationDbi GOSemSim mclust]; }; -BiTrinA = derive { name="BiTrinA"; version="1.0"; sha256="04q3dkv5h8nrizgbw6qawwzh7v9jl0ykdxqxbp1z8cmv1r4n7z37"; depends=[diptest]; }; +BiTrinA = derive { name="BiTrinA"; version="1.1"; sha256="1isq7dffzchllynj2pifjaw2vjkhclqjk2xh6kbnh9cxca16s0kq"; depends=[diptest]; }; BiasedUrn = derive { name="BiasedUrn"; version="1.06.1"; sha256="1ra9fmymm97a2b8jsrsi98cjnnxc478zq51lx7a5pgafprcwcgkg"; depends=[]; }; BigTSP = derive { name="BigTSP"; version="1.0"; sha256="1jdpa8rcnrhzn0hilb422pdxprdljrzpgr4f26668c1vv0kd6k4v"; depends=[gbm glmnet randomForest tree]; }; BinNonNor = derive { name="BinNonNor"; version="1.2"; sha256="15bzpi2q2428661v8z9izp942ihffgq8dgh4fsnzllvdrpqcyc41"; depends=[BB corpcor Matrix mvtnorm]; }; @@ -200,14 +209,13 @@ BinOrdNonNor = derive { name="BinOrdNonNor"; version="1.0"; sha256="1x231xxdiyp6 Binarize = derive { name="Binarize"; version="1.1"; sha256="07r41n5123pk6nwdwajgw6m3w38kprf4ksinx4rjldd8h1yd6rik"; depends=[diptest]; }; BinaryEPPM = derive { name="BinaryEPPM"; version="1.0"; sha256="088yg07966g09gv9hznhwfdka4yk0c9j0viy9x4ldmhxl9w9scv5"; depends=[expm Formula numDeriv]; }; BioGeoBEARS = derive { name="BioGeoBEARS"; version="0.2.1"; sha256="0wyddc5ma47ljpqipfkwsgddp12m9iy4kqwwgklyhf0rqia56b1h"; depends=[ape cladoRcpp FD gdata optimx phylobase plotrix rexpokit xtable]; }; -BioMark = derive { name="BioMark"; version="0.4.2"; sha256="17r4q2migmdk2vqfbr69q07cgdzwpjgs3ijmnm42srs5d3brw8cr"; depends=[glmnet MASS pls st]; }; +BioMark = derive { name="BioMark"; version="0.4.5"; sha256="1ifc72bayy3azbilajqqzl0is6z7l1zaadchcg3n8lhmjrv5sk3m"; depends=[glmnet MASS pls st]; }; BioPhysConnectoR = derive { name="BioPhysConnectoR"; version="1.6-10"; sha256="1cc22knlvbvwsrz2a7syk2ampm1ljc44ykv5wf0szhnh75pxg13l"; depends=[matrixcalc snow]; }; BioStatR = derive { name="BioStatR"; version="2.0.0"; sha256="1k3z337lj8r06xgrqgi5h67hhkz2s5hggj6dhcciq26i1nzafsw6"; depends=[ggplot2]; }; Biodem = derive { name="Biodem"; version="0.4"; sha256="0k0p4s21089wg3r3pvyy9cxsdf4ijdl598gmxynbzvwpr670qnsh"; depends=[]; }; -BiodiversityR = derive { name="BiodiversityR"; version="2.5-3"; sha256="1j3al5rakpqlacijp3ryr5dlasghda3bli3pxvf3yqjn5wwyddgs"; depends=[Rcmdr vegan]; }; -Biograph = derive { name="Biograph"; version="2.0.4"; sha256="1mik5yvbi28xnyzha8p3xjaa064x29wgn18yx766wha7djxxr353"; depends=[Epi etm ggplot2 lubridate msm mstate mvna plyr reshape survival]; }; +BiodiversityR = derive { name="BiodiversityR"; version="2.5-4"; sha256="0w5nn0wv7fknnmbzilxwsh5wfmb6vagxvsh1gy1mzm5fiknfzh9k"; depends=[Rcmdr vegan]; }; BivarP = derive { name="BivarP"; version="1.0"; sha256="08f7sphylaj3kximy1avaf29hxj2n800adsnssh01p9bcxnzb2i4"; depends=[copula dfoptim survival]; }; -BlakerCI = derive { name="BlakerCI"; version="1.0-4"; sha256="1sa9qq5frjjcw46p3ankn7v3gj0gwn9lww6jacz8flf5qpplhn4l"; depends=[]; }; +BlakerCI = derive { name="BlakerCI"; version="1.0-5"; sha256="16zj678qzwqih92q19dma7a602d0hif2dhii5hvxdgjymg7hg2bj"; depends=[]; }; BlandAltmanLeh = derive { name="BlandAltmanLeh"; version="0.1.0"; sha256="0y35zkxiallp4x09646qb8wj9bayh7mpnjg43qmzhxkm7l95b78r"; depends=[]; }; Blaunet = derive { name="Blaunet"; version="1.0.1"; sha256="1qcp5wag4081pcjg5paryxz3hk3rqql15v891ppqc1injni7rljz"; depends=[network]; }; BlockMessage = derive { name="BlockMessage"; version="1.0"; sha256="1jrcb9j1ikbpw098gqbcj29yhffa15xav90y6vpginmhbfpwlbf4"; depends=[]; }; @@ -219,7 +227,7 @@ BoolNet = derive { name="BoolNet"; version="2.1.1"; sha256="0g8f2pv8s8kj84qcp2fy Boom = derive { name="Boom"; version="0.2"; sha256="0myb8pihjz25y9sj8b844jrkkd2x7zxyr3pg212cgkx9arby0afn"; depends=[BH MASS]; }; BoomSpikeSlab = derive { name="BoomSpikeSlab"; version="0.5.2"; sha256="0n7kf0nkznsaajx4z4bkzjx99b56mjpd8543jc1dq6ki81yxlr1v"; depends=[BH Boom]; }; BootPR = derive { name="BootPR"; version="0.60"; sha256="03zw7hz4gyhp6iq3sb03pc5k2fhvrpkspzi22zks25s1l7mq51bi"; depends=[]; }; -Boruta = derive { name="Boruta"; version="4.0.0"; sha256="1r7bl4ab6swhks9cijhqn9gdhp2vjfhwb65fi5rzz0yvzxx97xi8"; depends=[randomForest rFerns]; }; +Boruta = derive { name="Boruta"; version="5.0.0"; sha256="0sz9rbpxwjaz3l4kx4b616x2kfb2szv8s1qk4qv05smqf34hf8rw"; depends=[ranger]; }; BradleyTerry2 = derive { name="BradleyTerry2"; version="1.0-6"; sha256="1080q7fw4yfl2y0jh3w2xz342i5yhhhavq40i3902bsmjj8g531d"; depends=[brglm gtools lme4]; }; BrailleR = derive { name="BrailleR"; version="0.22.0"; sha256="13bwy6mcmh57iznm600r34mz757i9dy6f2nb3a2jw1xvk5zsnasz"; depends=[devtools extrafont gridGraphics gridSVG knitr moments nortest rmarkdown xtable]; }; Brobdingnag = derive { name="Brobdingnag"; version="1.2-4"; sha256="1saxa492f32f511vw0ys55z3kgyzhswxkylw9k9ccl87zgbszf3a"; depends=[]; }; @@ -230,16 +238,17 @@ C50 = derive { name="C50"; version="0.1.0-24"; sha256="17ay0rbm2cg2s27mh09xg0knk CADFtest = derive { name="CADFtest"; version="0.3-2"; sha256="00nsnzgjwkif7mbrw7msswjxhi9aysjdx3qg3i4mdmj1rmp7c4dc"; depends=[dynlm sandwich tseries urca]; }; CALIBERrfimpute = derive { name="CALIBERrfimpute"; version="0.1-6"; sha256="036nwnday098mawc9qlgl3jjjcdjnja1immg6xkq27hvv2xfbz82"; depends=[mice mvtnorm randomForest]; }; CAM = derive { name="CAM"; version="1.0"; sha256="07mmrz6j8cm6zgaw2zcxgkxb7abd651kb80526r271snjgvpr5bl"; depends=[glmnet Matrix mboost mgcv]; }; -CAMAN = derive { name="CAMAN"; version="0.72"; sha256="10qikirv73d03ssg3sb6w3ih92ms5726b5lqw3x7r5rpbl9179rh"; depends=[mvtnorm sp]; }; -CARBayes = derive { name="CARBayes"; version="4.2"; sha256="1abb2yp5gvgn99dlsfj2cads5d0rjdznf8kghrhr21y3j9kk0aid"; depends=[CARBayesdata coda MASS Rcpp sp spam spdep truncdist]; }; -CARBayesST = derive { name="CARBayesST"; version="2.0"; sha256="1m2alay8iryqgkshdjb7dr30qh2672248anq1srnsydhy3llrhms"; depends=[coda MASS Rcpp spam truncdist]; }; +CAMAN = derive { name="CAMAN"; version="0.73"; sha256="0acksmgi7g0nngq5wcyrxzplxk6h8yi0s1q1pdkqna8dyriw7ih1"; depends=[mvtnorm sp]; }; +CANSIM2R = derive { name="CANSIM2R"; version="0.11"; sha256="12d5558b3wldla3sgwqdqwmfixcqfa8h92bq4a8ia284946vcbbf"; depends=[Hmisc reshape2]; }; +CARBayes = derive { name="CARBayes"; version="4.3"; sha256="1c98y2pmwqh7g6nn9ccw39xgklyhixg99bz13qkzdyl0yl5h9jdh"; depends=[CARBayesdata coda MASS Rcpp sp spam spdep truncdist]; }; +CARBayesST = derive { name="CARBayesST"; version="2.1"; sha256="1wlvcndqvpfyi6p5gps3p97m8yvbd57adqd5d7al1jc9k493yvfd"; depends=[coda MASS Rcpp spam truncdist]; }; CARBayesdata = derive { name="CARBayesdata"; version="1.0"; sha256="19dhgkqpdcq1y866arb3qm7wbl348w66yl85kwajkmqgplx2pvaq"; depends=[shapefiles sp]; }; CARE1 = derive { name="CARE1"; version="1.1.0"; sha256="1zwl4zv60mrzlzfgd7n37jjlr0j918a8ji36n94s5xw8wwipiznw"; depends=[]; }; CARLIT = derive { name="CARLIT"; version="1.0"; sha256="04kpjfps4ydf8fj75isqp16g1asdsyf8nszhbfkpw1zxkrmiksyp"; depends=[]; }; CARramps = derive { name="CARramps"; version="0.1.2"; sha256="097xxvql6qglk6x4yi7xsvr15n0yj21613zv003z0mhgvqr1n5vf"; depends=[]; }; CARrampsOcl = derive { name="CARrampsOcl"; version="0.1.4"; sha256="1sdrir7h7xl1imipm9b71vca062dxqsqd8mg3w9f3s80x2aghxl8"; depends=[fields OpenCL]; }; -CAvariants = derive { name="CAvariants"; version="2.1"; sha256="105bj6r6i7xz95lr5g4ld9xfgyq1dn15lw117jivx76z3k2zpi59"; depends=[]; }; -CBPS = derive { name="CBPS"; version="0.9"; sha256="08pc50fndpx6xvxkvqdklrp6v98w2j387frq08nlglcbfjk22i6x"; depends=[MASS MatchIt nnet numDeriv]; }; +CAvariants = derive { name="CAvariants"; version="3.0"; sha256="1nds4ngda6qjm74bwwphd4a648q66xj25x0n9xvb3fdzfkqfvvrp"; depends=[]; }; +CBPS = derive { name="CBPS"; version="0.10"; sha256="0k3mb97d49r870dm7ac1nwhy4kvh0936jmka7ib03154jmzsfyn7"; depends=[MASS MatchIt nnet numDeriv]; }; CCA = derive { name="CCA"; version="1.2"; sha256="00zy6bln22qshhlll0y0adnvb8wa1f7famqyws71b6pcnwxki5ha"; depends=[fda fields]; }; CCAGFA = derive { name="CCAGFA"; version="1.0.6"; sha256="19il9i7ybjg2qchmpjwkyx48l4fl7lb1zdkfpiaw3fng6ndasp1k"; depends=[]; }; CCM = derive { name="CCM"; version="1.1"; sha256="0gya1109w61ia6cq3jg2z5gmvjkv9xg71l2rxhrrf6bx1c2nsrq6"; depends=[]; }; @@ -248,12 +257,12 @@ CCTpack = derive { name="CCTpack"; version="1.4"; sha256="09s2ysqsz158lrah44rwvs CCpop = derive { name="CCpop"; version="1.0"; sha256="10kgw3b98r0kn74w89znq6skgk8b3ldil6yb0hn5rlcf6lazjzca"; depends=[nloptr]; }; CDFt = derive { name="CDFt"; version="1.0.1"; sha256="0sc8ga48l3vvqfjq3ak5j1y27hgr5dw61wp0w5jpwzjz22jzqbap"; depends=[]; }; CDLasso = derive { name="CDLasso"; version="1.1"; sha256="0n699y18ia2yqpk78mszgggy7jz5dybwsi2y56kdyblddcmz1yv7"; depends=[]; }; -CDM = derive { name="CDM"; version="4.4-1"; sha256="0m75h7q60bzn66hrv9w2s21w7yp1qphylrfv8323srnj2q4yqi93"; depends=[lattice MASS mvtnorm plyr polycor psych Rcpp RcppArmadillo sfsmisc]; }; +CDM = derive { name="CDM"; version="4.5-0"; sha256="0z0k3ykg4rrknqh12mccq2lfj11kl52jlkffz1dz9xqjm5kmwl7v"; depends=[lattice MASS mvtnorm plyr polycor psych Rcpp RcppArmadillo sfsmisc]; }; CDNmoney = derive { name="CDNmoney"; version="2012.4-2"; sha256="1isbvfq0lygs75y1hn3klqms8q7g1xbkcr8fgj75h1c99d4khvm6"; depends=[]; }; CDVine = derive { name="CDVine"; version="1.3"; sha256="0z3n9zplrmqhclq6skfg13h7mqdifphlaa8bc67q4n9ff4x697rm"; depends=[igraph MASS mvtnorm]; }; CEC = derive { name="CEC"; version="0.9.3"; sha256="05cgd281p0hxkni4nqb0d4l71aah3f3s6jxdnzgw8lqxaxz4194i"; depends=[]; }; CEGO = derive { name="CEGO"; version="1.0.1108"; sha256="0klj9g656rnfqhj36r4v8y6mv4cazlzyrvws6yqa0r61abfbxy68"; depends=[DEoptim MASS]; }; -CEoptim = derive { name="CEoptim"; version="1.0"; sha256="1mrv2vhrwd7hvw67ys08nilbn3f1fp3bsvlbc8ggwyl3lw957fi9"; depends=[MASS msm]; }; +CEoptim = derive { name="CEoptim"; version="1.1"; sha256="130x215lwm8lsygxnkykhiv80ry7srs9n77rcyjgxag9f1hn223x"; depends=[MASS msm sna]; }; CFC = derive { name="CFC"; version="0.7.0"; sha256="1sl0gsx4gcbcf7bc6xf84g3lx58zraj2h51riacch2iyxl1ygspq"; depends=[abind]; }; CGP = derive { name="CGP"; version="2.0-2"; sha256="1mggv3c8525vbdfdc3yhpp4vm4zzdvbwyxim29zj0lzwjf9fkgqk"; depends=[]; }; CHAT = derive { name="CHAT"; version="1.1"; sha256="1hl4xr4lkvb7r36gcbgax6ipqc3rsvn1r03w7fk9gf9bbyg7bkhg"; depends=[DNAcopy DPpackage]; }; @@ -270,7 +279,7 @@ CLSOCP = derive { name="CLSOCP"; version="1.0"; sha256="0rkwq9rl2ph4h5zwb2i3yphj CMC = derive { name="CMC"; version="1.0"; sha256="1r9a5k79fyw01yiwxq02327hpn4l1v2lp0958jj9217wxmhn3pr5"; depends=[]; }; CMF = derive { name="CMF"; version="1.0"; sha256="0hvqcbmg2vd0i1rjb1m1bkrbv2vkj1siank1v8w0n5b6881cyz7q"; depends=[Rcpp]; }; CMPControl = derive { name="CMPControl"; version="1.0"; sha256="0cp29cibiydawsl0cq433l9abdivr16b431zlrh45wzr5kzfcs0v"; depends=[compoisson]; }; -CMplot = derive { name="CMplot"; version="2.0.1"; sha256="0pja152i10i7s5lx08ai8saaa4iw3rbv03kkcnjg1y0jr5nbnmr8"; depends=[]; }; +CMplot = derive { name="CMplot"; version="3.0.1"; sha256="1z6gl5l62ig3aggwjfgyy14ipsgqwjgglkrd2p5m0x07h080b5p9"; depends=[]; }; CNOGpro = derive { name="CNOGpro"; version="1.1"; sha256="1frsmhfqrlg1vsa06cabqmrzngq4p5gqwyb9qgnsgg81a9ybm6l8"; depends=[seqinr]; }; CNVassoc = derive { name="CNVassoc"; version="2.1"; sha256="0gwyhipkvvnivdahr9mkj1b8j9wzg6g8mcsvk5rq28xdzrskz0i8"; depends=[CNVassocData mclust mixdist survival]; }; CNVassocData = derive { name="CNVassocData"; version="1.0"; sha256="17r3b1w9i9v6llawnjnrjns6jkd82m2cn9c90aif8j0bf4dmgdli"; depends=[]; }; @@ -281,7 +290,7 @@ COMMUNAL = derive { name="COMMUNAL"; version="1.0"; sha256="0smza4q0gnhskyq3fxcr COMPoissonReg = derive { name="COMPoissonReg"; version="0.3.5"; sha256="15w78h0kkqbisp34g4wj2mkq4c0pb2166f1m7s65iifnnd5plvb6"; depends=[]; }; COPASutils = derive { name="COPASutils"; version="0.1.6"; sha256="0vi7x14ma3i4gabdb04byr4ba0209lklj3d5ql2f2vaxyb4a1hj9"; depends=[dplyr ggplot2 kernlab knitr reshape2 stringr]; }; CORE = derive { name="CORE"; version="3.0"; sha256="0wq9i7nscnzqiqz6zh6hglm7924261bw169q3x6l9i6jgqhvn32d"; depends=[]; }; -CORElearn = derive { name="CORElearn"; version="0.9.46"; sha256="1jwc3sqkbhhmn67x44iyqzvpjsnbrwhgq6yam6h6gf086nv0lmic"; depends=[cluster rpart]; }; +CORElearn = derive { name="CORElearn"; version="1.47.1"; sha256="0apsv6lam5a6miirhq6z0acm4xnynyskqp94cxvxpgkaaap2c55l"; depends=[cluster rpart]; }; CORM = derive { name="CORM"; version="1.0.2"; sha256="0g5plafx2h1ija8jd6rxvy8qsrqprfbwbi1kq1p4jdr9miha20nv"; depends=[cluster limma]; }; COSINE = derive { name="COSINE"; version="2.1"; sha256="10ypj849pmvhx117ph3k1jqa62nc4sdmv8665yahds7mh0ymhpjj"; depends=[genalg MASS]; }; COUNT = derive { name="COUNT"; version="1.3.2"; sha256="1lb67gwznva5p046f4gjjisip5a12icp7d2g1ipizixw99c5lll8"; depends=[MASS msme sandwich]; }; @@ -295,13 +304,14 @@ CRF = derive { name="CRF"; version="0.3-8"; sha256="0w9wfjlx6hvd07k0iszfyip0vn0c CRM = derive { name="CRM"; version="1.1.1"; sha256="09h6xvqc2h2gxhdhc7592z93cnw16l549pn9i26ml0f0n20hljmf"; depends=[]; }; CRTSize = derive { name="CRTSize"; version="1.0"; sha256="1d45zx26bf0zk0piham69gvb8djqf48g6iisbldv0ds3s2hhcsin"; depends=[]; }; CTT = derive { name="CTT"; version="2.1"; sha256="0v8k54x9pib6hq3nz3m80g1a3p003f7bn8wnj9swwvacc90d6n44"; depends=[]; }; +CTTShiny = derive { name="CTTShiny"; version="0.1"; sha256="1c9vsiqyig6kfjpy3dfrysc466h4v9530m49aynz65i1njplswyh"; depends=[CTT ltm psych shiny shinyAce]; }; CUMP = derive { name="CUMP"; version="1.0"; sha256="0dbpgm75nbd4h8rf3ca5n4mgdn3qm4yyf2d48vlihakzw6rqbpka"; depends=[]; }; CVST = derive { name="CVST"; version="0.2-1"; sha256="17xacyi8cf37rr2xswx96qy7pwkaqq394awdlswykz3qlyzx4zx2"; depends=[kernlab Matrix]; }; CVThresh = derive { name="CVThresh"; version="1.1.1"; sha256="19d7pslzj8r3z5gn3cplpz2h2ayz6k1nrfx3s2b7a8w1il3vmi69"; depends=[EbayesThresh wavethresh]; }; CVTuningCov = derive { name="CVTuningCov"; version="1.0"; sha256="1bwzis82lqwcqp2djy4bnd3vvjr47krlv3pdc5msh12wcs0xhs7n"; depends=[]; }; CVcalibration = derive { name="CVcalibration"; version="1.0-1"; sha256="0ca582fnysrldlzxc3pihsph9pvdgygdh7sfzgxvr5fc3z1jbjzb"; depends=[]; }; CaDENCE = derive { name="CaDENCE"; version="1.2.3"; sha256="1810a785czaxwfvhjnmhzqg743mgcgrdp3j1irlfl9pbli0ppidx"; depends=[pso]; }; -Cairo = derive { name="Cairo"; version="1.5-8"; sha256="1paqyb95jikbwyp1x3c8fxwla1ihp003vn53l3z9mqywxyamvjdw"; depends=[]; }; +Cairo = derive { name="Cairo"; version="1.5-9"; sha256="1x1q99r3r978rlkkm5gixkv03p0mcr6k7ydcqdmisrwnmrn7p1ia"; depends=[]; }; CarletonStats = derive { name="CarletonStats"; version="1.1"; sha256="18pd1hi8bnbv0sdixw746xvdg9szvng422yj12mk0k50v60403xg"; depends=[]; }; CatDyn = derive { name="CatDyn"; version="1.1-0"; sha256="0bdixcf1iwbmjd2axi6csrzms25ghdj4r6223qhk2b54wlmbzaiz"; depends=[BB optimx]; }; CateSelection = derive { name="CateSelection"; version="1.0"; sha256="194lk6anrb05gaarwdg8lj5wm6k61b4r702cja3nf3z91i8paqi7"; depends=[]; }; @@ -310,14 +320,16 @@ CausalGAM = derive { name="CausalGAM"; version="0.1-3"; sha256="0g68m2kxixwr7rx6 Causata = derive { name="Causata"; version="4.2-0"; sha256="04lndjy4rdf063z75zv42b000z06ffnr91pv2sql1ks6w60zmh1m"; depends=[boot data_table foreach ggplot2 glmnet R_utils RCurl rjson RMySQL stringr XML yaml]; }; CePa = derive { name="CePa"; version="0.5"; sha256="1y2q72j8bqx509i62a2x9j40rj5bkpgx4z6fwj05ibazc1441asd"; depends=[igraph snow]; }; CellularAutomaton = derive { name="CellularAutomaton"; version="1.1-1"; sha256="0kmw2ic161xwalqa63hznic4n4hdz20hsilf2awlcldg7m9si1zd"; depends=[R_methodsS3 R_oo]; }; +CensMixReg = derive { name="CensMixReg"; version="0.7"; sha256="0ricfbm1k7dvsj658sj9ava8xgwqzypi99ihn41llnfdgdnslifs"; depends=[mixsmsn]; }; CensRegMod = derive { name="CensRegMod"; version="1.0"; sha256="0qqwkxn8knhcjb6mph7mp7mma56zxslbvkfgfajq2lq4gbg901y4"; depends=[]; }; CerioliOutlierDetection = derive { name="CerioliOutlierDetection"; version="1.0.8"; sha256="0n67y7ah496wck9hlrphya9k753gk44v7zgfz4s2a5ii49739zqi"; depends=[robustbase]; }; CfEstimateQuantiles = derive { name="CfEstimateQuantiles"; version="1.0"; sha256="1qf85pnl81r0ym1mmsrhbshwi4h1iv19a2wjnghbylpjaslgxp6i"; depends=[]; }; -ChainLadder = derive { name="ChainLadder"; version="0.2.1"; sha256="0c7mjxn050nx3ldbvg55paj58mgkk8apsvwqyzhfc9f9py02q07r"; depends=[actuar lattice Matrix reshape2 statmod systemfit tweedie]; }; +ChainLadder = derive { name="ChainLadder"; version="0.2.2"; sha256="1lxcy7q02lgsi575z1l1bxhxrgc3qcf2ln09pf4rb4diw7fs6ply"; depends=[actuar cplm ggplot2 lattice Matrix reshape2 statmod systemfit tweedie]; }; +ChannelAttribution = derive { name="ChannelAttribution"; version="1.1"; sha256="0lz8vrr9s4qxymdfkgq9fll3l217bvpajw7ggg7cdb37jldpmd8r"; depends=[Rcpp RcppArmadillo]; }; ChargeTransport = derive { name="ChargeTransport"; version="1.0.2"; sha256="0mq06ckp3yyj5g1z2sla79fiqdk2nlbclm618frhqcgmq93h0vha"; depends=[]; }; CheckDigit = derive { name="CheckDigit"; version="0.1-1"; sha256="0091q9f77a0n701n668zaghi6b2k3n2jlb1y91nghijkv32a7d0j"; depends=[]; }; ChemoSpec = derive { name="ChemoSpec"; version="4.1.15"; sha256="147ynbj8w4hiwfac3637s2skyjyyyv19axwv5bxlg73kvp40zp0h"; depends=[plyr rgl]; }; -ChemometricsWithR = derive { name="ChemometricsWithR"; version="0.1.8"; sha256="084da2hx6agryw7bv6img10pqmsdz2mpihbrj6j081lammrik4fj"; depends=[ChemometricsWithRData MASS pls]; }; +ChemometricsWithR = derive { name="ChemometricsWithR"; version="0.1.9"; sha256="095jahs7n591fam7s6i38h2iw5jbl005n040s1i489zzmsnj2n6d"; depends=[ChemometricsWithRData kohonen MASS pls]; }; ChemometricsWithRData = derive { name="ChemometricsWithRData"; version="0.1.3"; sha256="14l1y4md8hxq8gvip5vgg07vcr0d9yyhm5ckhzk8zwprdabn9a10"; depends=[]; }; ChoiceModelR = derive { name="ChoiceModelR"; version="1.2"; sha256="0dkp3354gvrn44010s8fjbmkpgn1hpl4xbfs5xslql8sk8rw0n2c"; depends=[]; }; CircE = derive { name="CircE"; version="1.1"; sha256="14bja3zv9wg389m6khmsy3q12hhnfcp49rvrmw47y6fh5m7ihrz2"; depends=[]; }; @@ -329,19 +341,21 @@ Ckmeans_1d_dp = derive { name="Ckmeans.1d.dp"; version="3.3.1"; sha256="0gzwcg6f Claddis = derive { name="Claddis"; version="0.1"; sha256="1dxsz62x856lpapw5xpvvr2qpyj3j93m9dn07m0bjbpmx0y0bm9c"; depends=[ape gdata phytools strap]; }; ClamR = derive { name="ClamR"; version="2.1-1"; sha256="0raz1n79g24a9mc93zj49r20xcmdziw6vvcw5sd3qyjp1ycia13c"; depends=[]; }; ClickClust = derive { name="ClickClust"; version="1.1.4"; sha256="17r8jzhzwqa5h04bxdcyv31jhk6c709sx5m1z53jh3yf9zmkilvi"; depends=[]; }; -ClimClass = derive { name="ClimClass"; version="1.0"; sha256="07jl8vwqyyj4q2hav8qbg69yjs73s3kbms5bd9hqs1y938rrp2l5"; depends=[geosphere ggplot2 reshape2]; }; +ClimClass = derive { name="ClimClass"; version="2.0.1"; sha256="13h6qj7wda5n1vgfqpclp0n3ir4qqqm7f00zlnq7dfpifd7ci4vn"; depends=[geosphere ggplot2 reshape2]; }; ClueR = derive { name="ClueR"; version="1.0"; sha256="1ak8pgbzm5xrk7pjnkbiqdwyvvyvrm6k6h50ycc86w3zy7fnqhds"; depends=[e1071]; }; ClustGeo = derive { name="ClustGeo"; version="1.0"; sha256="0n7i6lwc86cizpn5ibd6k9i41w8fcbh1cdxqm7w52z024w0z40jh"; depends=[FactoMineR plyr rCarto]; }; ClustMMDD = derive { name="ClustMMDD"; version="1.0.1"; sha256="0pzascdiadhvx4xjxa6kjw5kkmj3izphz2f86jnimyn5fid7cl02"; depends=[Rcpp]; }; ClustOfVar = derive { name="ClustOfVar"; version="0.8"; sha256="17y8q2g4yjxs2jl1s8n5svxi021nlm0phs1g5hcnfxzpadq84wbs"; depends=[]; }; -ClustVarLV = derive { name="ClustVarLV"; version="1.4.0"; sha256="1dm4vyfq4mf9y2ha32fhirqyss4yjk5zxrb9i3fx4i8kbaw6160z"; depends=[Rcpp]; }; +ClustVarLV = derive { name="ClustVarLV"; version="1.4.1"; sha256="02a3ljds8hlkmpa0hw2mm51abimw23dnvr8c08bx2671284nwzmc"; depends=[Rcpp]; }; +ClusterStability = derive { name="ClusterStability"; version="1.0.1"; sha256="16py4816xk339xvy7hpysq1ql1s2wa3n46bn0v811i5g3xkaay0s"; depends=[cluster clusterCrit Rcpp WeightedCluster]; }; CoClust = derive { name="CoClust"; version="0.3-1"; sha256="00i0dghd35s91kkkxj1ywa5i93752mfa5527ifclw4xxxshppva8"; depends=[copula gtools]; }; CoImp = derive { name="CoImp"; version="0.2-3"; sha256="04n0drx98hi8hmlb5xwl87ylv03j1ld04vp9d8s5sphvm9bbx690"; depends=[copula gtools locfit nnet]; }; CoinMinD = derive { name="CoinMinD"; version="1.1"; sha256="0invnbj5589wbs0k2w5aq9qak7axc3s0g9nw85c48lnl0v95s91i"; depends=[MCMCpack]; }; -CollocInfer = derive { name="CollocInfer"; version="1.0.1"; sha256="0wfk3qw28msz3wqm5xmivjgi18kqv1s6w76vh71zq777d6a7al6i"; depends=[deSolve fda MASS Matrix spam]; }; +CollocInfer = derive { name="CollocInfer"; version="1.0.2"; sha256="0bs4ivnk394l7xjxyvg7fhlfi3vdscp1c27dpvilrlmfikbzpc33"; depends=[deSolve fda MASS Matrix spam]; }; ColorPalette = derive { name="ColorPalette"; version="1.0-1"; sha256="1dsj5njikx3qm2lnamqqg4qgwwyr11fwx9s5sdi7dkfx3nmf6dac"; depends=[]; }; CombMSC = derive { name="CombMSC"; version="1.4.2"; sha256="1wkawxisn9alpwrymja8dla8n25z2fhai3l2xhin0b914y2kai09"; depends=[]; }; CombinS = derive { name="CombinS"; version="1.1"; sha256="18wanir5vqk5i65hd6gr2za1xd26yfa0c3c029dbxsrsczwmb9xi"; depends=[]; }; +Combine = derive { name="Combine"; version="1.0"; sha256="0n3jkxf4s778d6fzcanb2b09xhpv5sqzawpg17bbfngfhp0vfyrq"; depends=[]; }; CombinePValue = derive { name="CombinePValue"; version="1.0"; sha256="0mlngyz2nq7s39javnnjbb5db93c5sg9daw2szng83mbyfza4hv2"; depends=[]; }; CommT = derive { name="CommT"; version="0.1.1"; sha256="1kimm8z3k7p5lxsjnkb203js2rqn09grywxs890fab1hhgssgv2r"; depends=[ape ggplot2 gridExtra phangorn reshape]; }; CommonJavaJars = derive { name="CommonJavaJars"; version="1.0-5"; sha256="0kwf504g1izyy7hxss21dgz26w0spxibdlacrjdh7q10z799hfhh"; depends=[]; }; @@ -355,23 +369,23 @@ CompR = derive { name="CompR"; version="1.0"; sha256="1k4q0yanvhdh3ksia7d42lxky1 CompRandFld = derive { name="CompRandFld"; version="1.0.3-4"; sha256="1a3j5j50fz3f8vkvdmfccv5hn00spk08xanadqxpdy8pn925gqqb"; depends=[]; }; CompareCausalNetworks = derive { name="CompareCausalNetworks"; version="0.1.1"; sha256="1j3yrgyv7vlgwi50w62q8dpk1zpvrwk9vn0ka0ry6524s9zs0r03"; depends=[Matrix]; }; CompareTests = derive { name="CompareTests"; version="1.1"; sha256="1assdqwr5qhwfqhc8gpfa53kcmd4dy5fb449pm4ng0n674qvra6c"; depends=[]; }; -Compind = derive { name="Compind"; version="1.0"; sha256="13gfsbjaciign8cswsibdj9a4rwj5afwrk4g1x4fyihfhnm4qx7m"; depends=[Benchmarking boot GPArotation Hmisc lpSolve MASS nonparaeff psych]; }; +Compind = derive { name="Compind"; version="1.1"; sha256="1435b8g6dzim7hff6kvxgx00linx5gk9y7zidbmishsybv5r1mar"; depends=[Benchmarking boot GPArotation Hmisc lpSolve MASS nonparaeff psych]; }; ComplexAnalysis = derive { name="ComplexAnalysis"; version="1.0"; sha256="1yk0r3iwxirjsksnpwpnrgq4yhni6in9kgxxrs7v51l35zn78kji"; depends=[]; }; Compounding = derive { name="Compounding"; version="1.0.2"; sha256="1xlb3ylwjv70850agir0mx79kcvs43h0n1sm22zcny3509s2r7lf"; depends=[hypergeo]; }; ConConPiWiFun = derive { name="ConConPiWiFun"; version="0.4.4"; sha256="1dq9nlg04xs2n9g62y4gbl8ay4vsa25d7d7dra7q8zq6a561hzz5"; depends=[Rcpp]; }; -ConSpline = derive { name="ConSpline"; version="1.0"; sha256="04zwnnp8rmzacfl9skd1lybqwxja0527h4xwcx5ki2z8c0zvvpi8"; depends=[coneproj]; }; +ConSpline = derive { name="ConSpline"; version="1.1"; sha256="0ap3qxqdby9rf665vh40m6f4wjz7q3cz8i4abw1ccryjlwjv1kzp"; depends=[coneproj]; }; Conake = derive { name="Conake"; version="1.0"; sha256="1rj1rv8r53516jqhwp9xqqwjxh4gx1w47c0bw59f87wiy5pbchpf"; depends=[]; }; CondReg = derive { name="CondReg"; version="0.20"; sha256="1ffnrjfjcb66i9nyvidkcn4k9pcj4r7xanjwzcxcrj2qm39apkqx"; depends=[]; }; ConjointChecks = derive { name="ConjointChecks"; version="0.0.9"; sha256="097mhiz8zjmmkiiapr3zfx7v35xirg57nqp1swd72dixaa23nhr1"; depends=[]; }; ConnMatTools = derive { name="ConnMatTools"; version="0.1.5"; sha256="02cv2rlfp9shwqc9nwb8278akmwv7yvviwl23jglzsyh721dpqkr"; depends=[]; }; -ConsRank = derive { name="ConsRank"; version="0.0.1"; sha256="04hqqc1d29yxfb53ccy1gr5qaw3jpm92zp0zvm5ps3jqw170kvxx"; depends=[gtools MASS proxy rgl]; }; +ConsRank = derive { name="ConsRank"; version="1.0.2"; sha256="11pdccndmiz4vm15kaidzwy92vi2aqi5klwxag4p2xk1xivnlm0n"; depends=[gtools MASS proxy rgl]; }; ConvCalendar = derive { name="ConvCalendar"; version="1.2"; sha256="0yq9a42gw3pxxwvpbj6zz5a5zl7g5vkswq3mjjv5r28zwa3v05vc"; depends=[]; }; ConvergenceConcepts = derive { name="ConvergenceConcepts"; version="1.1"; sha256="0878fz33jxh5cf72lv0lga48wq2hqa4wz6m59111k59pzrsli344"; depends=[lattice tkrplot]; }; Copula_Markov = derive { name="Copula.Markov"; version="1.0"; sha256="028rmpihyz9xr4r305lbcbb0y22jw1szmhw5iznv5zma507grbl3"; depends=[]; }; CopulaREMADA = derive { name="CopulaREMADA"; version="0.9"; sha256="0fhd4g8157rmkda5dygvnvb50f8dz31wlg1x432g9ra8fw7bdq01"; depends=[matlab statmod tensor]; }; CopulaRegression = derive { name="CopulaRegression"; version="0.1-5"; sha256="0dd1n7b23yww36718khi6a5kgy8qjpkrh0k433c265653mf1siq8"; depends=[MASS VineCopula]; }; CopyDetect = derive { name="CopyDetect"; version="1.1"; sha256="0h9bf7ay5yr6dwk7q28b6xxfzy6smljkq6qwjkzfscy5hnmwxkpa"; depends=[irtoys]; }; -CopyNumber450kCancer = derive { name="CopyNumber450kCancer"; version="1.0.3"; sha256="1rraqp2hi6sa4j4lci1zbvr1q8rm6vrlqwjn81qqc57h4an07540"; depends=[]; }; +CopyNumber450kCancer = derive { name="CopyNumber450kCancer"; version="1.0.4"; sha256="0csmrv5n4lxd19q8q94sxs374lkqilp5x2dj8nxzs0x1v8hn0knm"; depends=[]; }; CorReg = derive { name="CorReg"; version="1.0.5"; sha256="1b7l17i33bqvdzgqw5vc73fnpdgqbr01456qgmxls80ji8qjiv9x"; depends=[corrplot elasticnet lars MASS Matrix mclust mvtnorm Rcpp RcppEigen ridge Rmixmod rpart]; }; CorrBin = derive { name="CorrBin"; version="1.5"; sha256="1kg8kms76z127j2vmf7v162n0sh2jqylw4i7c35x5sig4q22m9gy"; depends=[boot combinat dirmult geepack mvtnorm]; }; CorrMixed = derive { name="CorrMixed"; version="0.1-11"; sha256="18n70yx6yysvcn3wsf1zmnp4z2hs3783mr1n0pjp2ph5yd9xk4mg"; depends=[nlme psych]; }; @@ -380,6 +394,7 @@ CosmoPhotoz = derive { name="CosmoPhotoz"; version="0.1"; sha256="04girid6wvgyrk CountsEPPM = derive { name="CountsEPPM"; version="2.0"; sha256="0bwd2jc8g62xpvnnq759cxhjvip94abbj63yk6n1awlh5hb4ni3b"; depends=[expm Formula numDeriv]; }; CovSel = derive { name="CovSel"; version="1.1"; sha256="13dh97857h3r684yw1bzyr1rkpk8l7sshgy9hvg5y95csgai2qhw"; depends=[boot cubature dr MASS np]; }; CoxBoost = derive { name="CoxBoost"; version="1.4"; sha256="1bxkanc8zr4g3abn4ds5wqibv65flvm4y648fs9s0l4vc9vmyshg"; depends=[Matrix prodlim survival]; }; +CoxPlus = derive { name="CoxPlus"; version="1.1.0"; sha256="1ns1lykbpfppwxddc043q6x7mmzbb0sfjvqy3dj9glr4xylng7fx"; depends=[Rcpp RcppArmadillo]; }; CoxRidge = derive { name="CoxRidge"; version="0.9.2"; sha256="0p65mg4hzdgks03k1lj90yj6qbk50s94rwvcwzkb5xxxwrijd10r"; depends=[survival]; }; Coxnet = derive { name="Coxnet"; version="0.1-1"; sha256="07ivs47lj0l84mk4r7bvzncvddspq4yl19aibii5pvjmzfzdgymp"; depends=[Matrix Rcpp RcppEigen]; }; CpGFilter = derive { name="CpGFilter"; version="1.0"; sha256="07426xlmx0ya3pi1y5c24zr58wr024m38y036h9gz26pw7bpawy2"; depends=[]; }; @@ -387,16 +402,16 @@ CpGassoc = derive { name="CpGassoc"; version="2.50"; sha256="052mzkcp7510dm12win Cprob = derive { name="Cprob"; version="1.2.4"; sha256="0zird0l0kx2amrp4qjvlagw55pk9jrx0536gq7bvajj8avyvyykr"; depends=[geepack lattice lgtdl prodlim tpr]; }; CreditMetrics = derive { name="CreditMetrics"; version="0.0-2"; sha256="16g3xw8r6axqwqv2f0bbqmwicgyx7nwzff59dz967iqna1wh3spi"; depends=[]; }; Crossover = derive { name="Crossover"; version="0.1-15"; sha256="1g9z4ssqyb3silaprcsjsdd1bk5rsih2hvqr6rm1qb8ayqjr1sp3"; depends=[CommonJavaJars crossdes digest ggplot2 JavaGD MASS Matrix multcomp Rcpp RcppArmadillo rJava xtable]; }; -CryptRndTest = derive { name="CryptRndTest"; version="1.0.5"; sha256="0ypqwzn9r9x7l4wzz6vqnirmjx7zrbx0jck4wpy83w1jvx02qcqv"; depends=[copula kSamples LambertW MissMech sfsmisc tseries]; }; +CryptRndTest = derive { name="CryptRndTest"; version="1.1.5"; sha256="0zw487g31j25hzskl0g466y8p7dqmivkhgwfyg3lgs3i61mxx7px"; depends=[gmp kSamples LambertW MissMech Rmpfr sfsmisc tseries]; }; CrypticIBDcheck = derive { name="CrypticIBDcheck"; version="0.3-1"; sha256="1lrpwgvsif1wnp19agh8fs3nhlb7prr3hhqg28fi4ikdd1l2j3r4"; depends=[car chopsticks ellipse rJPSGCS]; }; Cubist = derive { name="Cubist"; version="0.0.18"; sha256="176k9l7vrxamahvw346aysj19j7il9a2v6ka6dzmk0qq7hf3w9ka"; depends=[lattice reshape2]; }; D2C = derive { name="D2C"; version="1.2.1"; sha256="0qhq27978id0plyz9mgdi0r1sr3ixnvqm8w6hp5c2wjd1yhhh12s"; depends=[corpcor foreach gRbase lazy MASS randomForest RBGL Rgraphviz]; }; D3M = derive { name="D3M"; version="0.41"; sha256="12yny4a6rggaz5zfjpacsmxcj805nbkw19n26m9vr58a7zg1iwa1"; depends=[beanplot Rcpp]; }; -DAAG = derive { name="DAAG"; version="1.20"; sha256="05jlsrs0frk9ky20h17c5vj9d4j28c9n0a1jww5lssacimn1d4x5"; depends=[lattice latticeExtra]; }; +DAAG = derive { name="DAAG"; version="1.22"; sha256="16xp4qk09v9jwm4cs7b4mpn0kgl1va9rw86viwcjc54vjc32953f"; depends=[lattice latticeExtra]; }; DAAGbio = derive { name="DAAGbio"; version="0.62"; sha256="18m4vq8vv0yi79na62nrm0cy1nlk7bg0xbddzxv5gpkmzi1i6m9s"; depends=[limma]; }; DAAGxtras = derive { name="DAAGxtras"; version="0.8-4"; sha256="18lg13mbyharidj5j7ncx8s7d72v2hcnqr00vilhf3djk2mjq7xn"; depends=[]; }; DAGGER = derive { name="DAGGER"; version="1.4"; sha256="0b2hzv001xhch7pqgb53lfpdcjwg5lj33i6pb884l1kx92svjfr7"; depends=[Matrix quadprog Rglpk]; }; -DAISIE = derive { name="DAISIE"; version="1.0.1"; sha256="1dhfkjgksxy39siz5mf97sw2gyb0jvy44ndy0asdmplwhmqrc4md"; depends=[deSolve]; }; +DAISIE = derive { name="DAISIE"; version="1.0.2"; sha256="1w5pdsfcalr86k1gj6qz9qdgx82n5lxcjdzvyf854prxaq5a5z0m"; depends=[deSolve]; }; DAKS = derive { name="DAKS"; version="2.1-2"; sha256="1817s7xd4h2zzaagmnw423qaxpa5fmxi3fh4h9hm2ra9w7nh6ljj"; depends=[relations sets]; }; DALY = derive { name="DALY"; version="1.4.0"; sha256="1gx4q24149q1ipsrinswrm37z1nf4swgq188zsc1xifmw9l28v11"; depends=[]; }; DAMOCLES = derive { name="DAMOCLES"; version="1.1"; sha256="07z8mynhqnk1zcvm84w09xzkiy2dfxwhmnpi6gaddr3p0waql4gj"; depends=[ape caper deSolve expm geiger matrixStats picante]; }; @@ -407,6 +422,7 @@ DBI = derive { name="DBI"; version="0.3.1"; sha256="0xj5baxwnhl23rd5nskhjvranrwr DBKGrad = derive { name="DBKGrad"; version="1.6"; sha256="0207zx0v1x3zhfbs0h1ssxc1b683k111f90k8ybhknb147104knr"; depends=[lattice minpack_lm SDD TSA]; }; DCGL = derive { name="DCGL"; version="2.1.2"; sha256="1dhkdvdglpsr0fzrfrrr6q76jhwxgrcjsiqn56s082y7v366xvs4"; depends=[igraph limma]; }; DCL = derive { name="DCL"; version="0.1.0"; sha256="1ls3x3v0wmddfy7ii7509cglb28l1ix1zaicdc6mhwin0rpp2rx3"; depends=[lattice latticeExtra]; }; +DCchoice = derive { name="DCchoice"; version="0.0.13-3"; sha256="0p2apjygzg28w0i6zgvy9kikz46718j6wjsahvn6x33c48zra44r"; depends=[Ecdat interval MASS]; }; DCluster = derive { name="DCluster"; version="0.2-7"; sha256="008nyry64s5g80narcc58273v0jhqzfgwynka6mh7jgi7qsqnxjd"; depends=[boot MASS spdep]; }; DDD = derive { name="DDD"; version="2.7"; sha256="06nnfn84vhfix8ks08y3kar2cpm63fqghf9y2dhgrnb4midpk5ig"; depends=[ade4 ape deSolve]; }; DDHFm = derive { name="DDHFm"; version="1.1.1"; sha256="03zs2zbrhjcb321baghva7b8y61c8p9z6bfj2vg9cvadpb0260nk"; depends=[]; }; @@ -419,11 +435,13 @@ DESnowball = derive { name="DESnowball"; version="1.0"; sha256="012kdnxmzap6afc3 DEoptim = derive { name="DEoptim"; version="2.2-3"; sha256="0pcs7kkhad139c3nhmg7bkac1av4siknfg59lpknwwrsxbz208dg"; depends=[]; }; DEoptimR = derive { name="DEoptimR"; version="1.0-3"; sha256="0wvq78hk0fyx2wkskvnwkj3lrk93p80skqykfh9qnc4r94irl5aj"; depends=[]; }; DFIT = derive { name="DFIT"; version="1.0-2"; sha256="1kn3av6pnkmf9703yp3cn0zbdzjzxrlm6nbbcg7lwv9550jw2c4n"; depends=[ggplot2 mvtnorm simex]; }; +DIFboost = derive { name="DIFboost"; version="0.1"; sha256="1wms7k1h09an46zi0sx2qi83zhzhqc864abnxn5iybv5g72xj89k"; depends=[mboost penalized stabs]; }; DIFlasso = derive { name="DIFlasso"; version="1.0-1"; sha256="048d5x9nzksphsdk9lwfagl165bb40r0pvjq2ihvhqvxspgpar4b"; depends=[grplasso miscTools penalized]; }; DIFtree = derive { name="DIFtree"; version="1.0.0"; sha256="08s6ba44517xq783fysksb1h53zkqsk7zakaibi1c2npq1gzny9p"; depends=[penalized plotrix]; }; DIME = derive { name="DIME"; version="1.2"; sha256="11l6mk6i3kqphrnq4iwk4b0ridbbpg2pr4pyqaqbsb06ng899xw0"; depends=[]; }; DIRECT = derive { name="DIRECT"; version="1.0"; sha256="129bx45zmd6h7j6ilbzj2hjg4bcdc08dvm2igggi8ajndl1l5q9j"; depends=[]; }; -DLMtool = derive { name="DLMtool"; version="1.35"; sha256="1qcc5q35a68m468ip1mhij2g0qzz5fhcjzax11a8n2fl9x2s9d57"; depends=[boot MASS snowfall]; }; +DJL = derive { name="DJL"; version="1.0"; sha256="1fc79jp1g4qcp0c34mnrbf89cyhl5zzgmvm63935gczq58l1kl3k"; depends=[lpSolveAPI]; }; +DLMtool = derive { name="DLMtool"; version="2.0"; sha256="1z5i66dypi5jvnrcgizyq0bq7fkg1a0axcvqrdlihx3xzmaqqf8y"; depends=[boot MASS snowfall]; }; DMR = derive { name="DMR"; version="2.0"; sha256="1kal3bvhwqs00b6p6kl0ja35pcz9v9y569148qfhy94m319fcpzm"; depends=[magic]; }; DMwR = derive { name="DMwR"; version="0.4.1"; sha256="1qrykl9zdvgm4c801iix5rxmhk9vbwnrq9cnc58ms5jf34hnmbcf"; depends=[abind class lattice quantmod ROCR rpart xts zoo]; }; DNAprofiles = derive { name="DNAprofiles"; version="0.3.1"; sha256="0chsndrmanb2swmhfan9iz1bzz3jsvk24n7j9fnjxibckmn2fdpv"; depends=[bit Rcpp RcppProgress]; }; @@ -433,10 +451,11 @@ DOBAD = derive { name="DOBAD"; version="1.0.4"; sha256="1hslwgs4q05xm29my5cq6g3v DOvalidation = derive { name="DOvalidation"; version="0.1.0"; sha256="0vm4sxbchkj2hk91xnzj6lpj05jg2zcinlbcamy0x1lrbjffn9zk"; depends=[]; }; DPpackage = derive { name="DPpackage"; version="1.1-6"; sha256="01qdl6cp6wkddl9fwwpxwvyhb7lpjxis6wnbm2s288y2n9wi4j24"; depends=[MASS nlme survival]; }; DPw = derive { name="DPw"; version="1.1.3"; sha256="1cw9qig5z2nfp2b3k4ng5hpar9izd3d6jihj93mkc0rqcli2wzp1"; depends=[fOptions]; }; +DRIP = derive { name="DRIP"; version="1.1"; sha256="050xfq30fp9m03ig938bci2haiglj6jj4k327fpz7r2y78cgcnn4"; depends=[caTools readbitmap]; }; DSBayes = derive { name="DSBayes"; version="1.1"; sha256="0iv4l11dww45qg8x6xcf82f9rcz8bcb9w1mj7c7ha9glv5sfb25v"; depends=[BB]; }; DSL = derive { name="DSL"; version="0.1-6"; sha256="0fmqxladifqqcs4mpb8a1az74fyb4gb8l2y5gzqaad3dbiz82qih"; depends=[]; }; DSpat = derive { name="DSpat"; version="0.1.6"; sha256="1v6dahrp8q7fx0yrwgh6lk3ll2l8lzy146r28vkhz08ab8hiw431"; depends=[mgcv RandomFields rgeos sp spatstat]; }; -DSsim = derive { name="DSsim"; version="1.0.3"; sha256="01kkpzs0prcq43y4nmyaw39bgjabr99xxs2hn3fmb4ka46xj0bfb"; depends=[mgcv mrds shapefiles splancs]; }; +DSsim = derive { name="DSsim"; version="1.0.4"; sha256="0mdz8m0s03cj4br8w7h493vaks37lr2qg7zjmf03qpnjdppnbnmb"; depends=[mgcv mrds shapefiles splancs]; }; DStree = derive { name="DStree"; version="1.0"; sha256="14wba25ylmsyrndh007kl377dv4r34wr1555yxl6kyxrs4yg3jir"; depends=[Ecdat pec Rcpp rpart rpart_plot survival]; }; DSviaDRM = derive { name="DSviaDRM"; version="1.0"; sha256="1hj2pgnldrpgapwwz1kf4k6mvyzwdvb1i6czd7sbimsx5hafwps8"; depends=[igraph ppcor]; }; DT = derive { name="DT"; version="0.1"; sha256="0mj7iiy1gglw7kixybmb7kr1bcl5r006zcb3klkw7p6vvvzdm6qj"; depends=[htmltools htmlwidgets magrittr]; }; @@ -465,8 +484,8 @@ Demerelate = derive { name="Demerelate"; version="0.8-1"; sha256="1qngwlzzpd2cmi DendSer = derive { name="DendSer"; version="1.0.1"; sha256="0id6pqx54zjg5bcc7qbxiigx3wyic771xn9n0hbm7yhybz6p3gz9"; depends=[gclus seriation]; }; Density_T_HoldOut = derive { name="Density.T.HoldOut"; version="2.00"; sha256="0kh5nns1kqyiqqfsgvxhx774i2mf4gcim8fp5jjyq577x4679r31"; depends=[histogram]; }; DepthProc = derive { name="DepthProc"; version="1.0.3"; sha256="0xil3pl33224sizn1wy9x3lcngw017qjl22hfqzss9iy73cmxqnc"; depends=[colorspace geometry ggplot2 lattice MASS np Rcpp RcppArmadillo rrcov sm]; }; -Deriv = derive { name="Deriv"; version="3.5.4"; sha256="07a3pm79mv8wiapjdb2n6scgl3hc7pvz9inalm80aqlhpqrvp3hs"; depends=[]; }; -DescTools = derive { name="DescTools"; version="0.99.11"; sha256="0ccqgx6w7x55h5pd76hjyq79g0cdyw2m0w1h55kw4chqj0ibqizy"; depends=[boot foreign manipulate mvtnorm]; }; +Deriv = derive { name="Deriv"; version="3.5.6"; sha256="1hfpc3yh4w778jcpwmyccb3nbv00wvlv29sczap9xn0qbxjca7af"; depends=[]; }; +DescTools = derive { name="DescTools"; version="0.99.13"; sha256="0mfxpwhsccbnjv8mpawnjyrll4d3mbbkhkqaxc923ilb3z3mzf9f"; depends=[BH boot foreign manipulate mvtnorm Rcpp]; }; DescribeDisplay = derive { name="DescribeDisplay"; version="0.2.4"; sha256="13npxq1314n4n08j6hbmij7qinl1xrxrgc5hxpbbpbd16d75c7iw"; depends=[GGally ggplot2 plyr proto reshape2 scales]; }; DetMCD = derive { name="DetMCD"; version="0.0.2"; sha256="0z4zs0k8c8gsd2fry984p06l3p17fdyfky8fv9kvypk7xdg52whc"; depends=[Rcpp RcppEigen robustbase]; }; DetSel = derive { name="DetSel"; version="1.0.2"; sha256="0igkccclmjwzk7sl414zlhiykym0qwaz5p76wf4i7yrpjgk7mhl9"; depends=[ash]; }; @@ -494,13 +513,14 @@ DivE = derive { name="DivE"; version="1.0"; sha256="1ixkk8kd3ri78ykq178izib0vwpp DivMelt = derive { name="DivMelt"; version="1.0.3"; sha256="03vkz8d283l3zgqg7bh5dg3bss27pxv4qih7zwspwyjk81nw3xmr"; depends=[glmnet]; }; DiversitySampler = derive { name="DiversitySampler"; version="2.1"; sha256="1sfx7craykb82ncphvdj19mzc0kwzafhxlk9jcxkskygrlwsxfgg"; depends=[]; }; DnE = derive { name="DnE"; version="2.1.0"; sha256="02cbfb3m9xf24wkgqc06k3k0rx7qlqh4ma43khg6fpvif6yyahrn"; depends=[]; }; -DoE_base = derive { name="DoE.base"; version="0.27"; sha256="0nh0hs4g8cl3h7p84ddag1qk4rdyw5wb13qnvw23r12q0f1p6y3l"; depends=[combinat conf_design MASS vcd]; }; +DoE_base = derive { name="DoE.base"; version="0.27-1"; sha256="1r2vwiid76cc5nmjisidwpx2jnp8d2ln7s6mb34qxh1g5d489izg"; depends=[combinat conf_design MASS vcd]; }; DoE_wrapper = derive { name="DoE.wrapper"; version="0.8-10"; sha256="12q3arfm76x9j8qnrmw07jh904qdqz59ga1zk8m3n17prr11vrgb"; depends=[AlgDesign DiceDesign DoE_base FrF2 lhs rsm]; }; Dodge = derive { name="Dodge"; version="0.8"; sha256="1vnvqb2qvl6c13s48pyfn1g6yfhc60ql3vn7yh2zymxcsr1gxgcw"; depends=[]; }; Dominance = derive { name="Dominance"; version="1.0.0"; sha256="0xcmslzfdcy826vcnlybhdyym5kqkrdqidq6jn10s4jic7jk8nl3"; depends=[chron gdata igraph]; }; DoseFinding = derive { name="DoseFinding"; version="0.9-12"; sha256="126xhq1ckry65g312cqvs9bdcl2ws34k6xnq7n9dcgi8jiizz46d"; depends=[lattice mvtnorm]; }; DoubleCone = derive { name="DoubleCone"; version="1.0"; sha256="1pba9ypp0n3i2k3ji1x8j7h548pfam9z99hxylcjcxnnvc7xs2fw"; depends=[coneproj MASS Matrix]; }; -DoubleExpSeq = derive { name="DoubleExpSeq"; version="1.0"; sha256="0y797iqmxihrsp8lhy84p5hlyw3ckpklv0pgcqv4h39a6cpglbvd"; depends=[numDeriv]; }; +DoubleExpSeq = derive { name="DoubleExpSeq"; version="1.1"; sha256="00xpj5xmpgmvp6h76imkmghrnlfk6c50ydvv0jram6m6ix3z8323"; depends=[numDeriv]; }; +Dowd = derive { name="Dowd"; version="0.1"; sha256="159khzfcxwyngdqzq20x7zja1mq5fkjda5n21i6fb6d9fkp22kxp"; depends=[bootstrap forecast MASS]; }; DunnettTests = derive { name="DunnettTests"; version="2.0"; sha256="1sf0bdxays10n8jh2qy85fv7p593x58d4pas9dwlvvah0bddhggg"; depends=[mvtnorm]; }; DynClust = derive { name="DynClust"; version="3.13"; sha256="020zl2yljp47r03rcbzrbdmwk482xx27awwzv4kdrbchbzwhxqgm"; depends=[]; }; DynNom = derive { name="DynNom"; version="1.0.1"; sha256="0gdy3kqj63khm74cdjhfmlnd06ard97h1598rkqwm7c3cng7b98c"; depends=[compare ggplot2 shiny stargazer]; }; @@ -515,12 +535,13 @@ EDISON = derive { name="EDISON"; version="1.1"; sha256="09xw4p4hwj8djq143wfdcqhr EDR = derive { name="EDR"; version="0.6-5.1"; sha256="10ldygd1ymc4s9gqhhnpipggsiv4rwbgajvdk4mykkg3zmz7cbpm"; depends=[]; }; EEM = derive { name="EEM"; version="1.0.1"; sha256="05kmys1qq2v7zj4akpbs81ss74q1zp2v7n8m5mmgj4frivzgqbzn"; depends=[colorRamps R_utils readxl reshape2 sp]; }; EFDR = derive { name="EFDR"; version="0.1.1"; sha256="0jgznwrd40g9xmvhrd7b441g79x41ppfdn6vbsbzc0k5ym1wzb1p"; depends=[doParallel dplyr foreach gstat Matrix sp tidyr waveslim]; }; -EGRET = derive { name="EGRET"; version="2.3.0"; sha256="07b2wxdciybvm3l579vibdprcxvzl2ym25xba7wlxmrbx37ndx5z"; depends=[dataRetrieval fields lubridate survival]; }; +EGRET = derive { name="EGRET"; version="2.3.1"; sha256="0wgrkb8l0iafbw78f3kkv9c0ab5ng5rnnhin6i015ckqab80h4rc"; depends=[dataRetrieval fields lubridate survival]; }; +EGRETci = derive { name="EGRETci"; version="1.0.0"; sha256="1pz0l59hm7yy30p6albx3b4nm1qfbphj9jkz79a5mljk1fx8dbrz"; depends=[binom EGRET lubridate]; }; EIAdata = derive { name="EIAdata"; version="0.0.3"; sha256="12jgw3vi2fminwa4lszczdr4j4svn2k024462sgj1sn07a4a4z2s"; depends=[plyr XML xts zoo]; }; EILA = derive { name="EILA"; version="0.1-2"; sha256="0wxl9k4fa0f7jadw3lvn97iwy7n2d02m8wvm9slnhr2n8r8sx3hb"; depends=[class quantreg]; }; EL = derive { name="EL"; version="1.0"; sha256="13r7vjy2608h8jph8kwy69rnkg98b2v69117nrl728r3ayc46a18"; depends=[]; }; -ELT = derive { name="ELT"; version="1.3"; sha256="0q6gc3npwxqq0hz1ardssv5wfxjnx93pi4l1viqsb0wp2kkfq3w6"; depends=[lattice latticeExtra locfit xlsx]; }; -ELYP = derive { name="ELYP"; version="0.7-2"; sha256="1aji3b9mixhzc6zv7qksacx328drpi0q7pgv3gi6iazira7lybdy"; depends=[survival]; }; +ELT = derive { name="ELT"; version="1.4"; sha256="080m00a63a4i2mz11nfna2yzj6wbn1nq4zmpf5a1xbfj518vc44a"; depends=[lattice latticeExtra locfit xlsx]; }; +ELYP = derive { name="ELYP"; version="0.7-3"; sha256="1d91r59m85k91kcjjlvhvbsa9855fyd702bwj7drvk36ssfr8qb9"; depends=[survival]; }; EMA = derive { name="EMA"; version="1.4.4"; sha256="1hqkan9k6ps4qckjrhsgxzham106fm38m5rgayz8i2ji3spvbfca"; depends=[affy AnnotationDbi biomaRt cluster FactoMineR gcrma GSA heatmap_plus MASS multtest siggenes survival xtable]; }; EMC = derive { name="EMC"; version="1.3"; sha256="0sdpxf229z3j67mr9s7z4adzvvphgvynna09xkkpdj21mpml23p6"; depends=[MASS mvtnorm]; }; EMCC = derive { name="EMCC"; version="1.2"; sha256="1qff8yvw7iqdsrqkvwb7m14xh7gcnjcrf8gw00g4j6aq0h0cgk2z"; depends=[EMC MASS mclust]; }; @@ -535,27 +556,28 @@ EMP = derive { name="EMP"; version="2.0.1"; sha256="1zdy05jfhcgj6415pnm079v8xjg9 EMT = derive { name="EMT"; version="1.1"; sha256="0m3av1x3jcp3hxnzrfb128kch9gy2zlr6wpy96c5c8kgbngndmph"; depends=[]; }; EMVC = derive { name="EMVC"; version="0.1"; sha256="1725zrvq419yj0gd79h8bm56lv2mmk296wq3wapivcy6xn0j97jh"; depends=[]; }; EMbC = derive { name="EMbC"; version="1.9.3"; sha256="189kgp6qv9dl4q1sirm3v9zqk11259il6ykb0008nnghv78rdcyd"; depends=[maptools mnormt move RColorBrewer sp]; }; -ENMeval = derive { name="ENMeval"; version="0.1.1"; sha256="0g1h8dklv6rv73wwpx3vhbpnwply5lpq8x9jvl7r018x9gcvvb9m"; depends=[dismo raster rJava]; }; +ENMeval = derive { name="ENMeval"; version="0.2.0"; sha256="0jy7a21av6ansx8r9bh7appsdjspzqnj13xk0vn5smgq3gkljg64"; depends=[dismo doParallel foreach raster rJava]; }; ENiRG = derive { name="ENiRG"; version="0.1"; sha256="1cnl1mjl5y1rc6fv7c9jw2lkm898l3flfrj3idx9v1brjzyx5xlf"; depends=[ade4 fgui gdata miniGUI R_utils raster sp spgrass6]; }; ENmisc = derive { name="ENmisc"; version="1.2-7"; sha256="07rix4nbwx3a4p2fif4wxbm0nh0qr7wbs7nfx2fblafxfzhh6jc7"; depends=[Hmisc RColorBrewer vcd]; }; -EPGLM = derive { name="EPGLM"; version="1.0"; sha256="0cijk21dl7hkd0m8dzj2nx5yzm3q1l764fyv82dr3k31c7vq7xh1"; depends=[BH MASS Rcpp RcppArmadillo]; }; +EPGLM = derive { name="EPGLM"; version="1.1"; sha256="0bgxrli2gxnq4jx43iimzsq1abg1az35fjlkx2i0qkmacqw9bhq6"; depends=[BH MASS Rcpp RcppArmadillo]; }; EQL = derive { name="EQL"; version="1.0-0"; sha256="0lxfiizkvsfls1km1zr9v980191af6qjrxwcqsa2n6ygzcb17dp5"; depends=[lattice ttutils]; }; ERP = derive { name="ERP"; version="1.0.1"; sha256="0wy1p7pp9dvc3krylskb627rmfqaj11qvia97m88x05ydqx1fwmr"; depends=[fdrtool mnormt]; }; ES = derive { name="ES"; version="1.0"; sha256="1rapwf6kryr6allzbjk6wmxpj9idd3xlnh87rwbh6196xb7rp8lv"; depends=[]; }; ESEA = derive { name="ESEA"; version="1.0"; sha256="06r5lki32mxkznj6yxvlz0ikqcxm3jbaralv4qp9xrw6dy6yyg27"; depends=[igraph parmigene XML]; }; ESG = derive { name="ESG"; version="0.1"; sha256="1jw6239asv6lwxrz5v0r5pzg6v500bqxg8361sh4jj67rsrc7g9m"; depends=[]; }; ESGtoolkit = derive { name="ESGtoolkit"; version="0.1"; sha256="0r09arhsvamdyahini5yhgc43msdxwvn45l57xbfszahsnr3b3aq"; depends=[CDVine ggplot2 gridExtra Rcpp reshape2 ycinterextra]; }; +ESKNN = derive { name="ESKNN"; version="1.0"; sha256="1w43v3q9i7dkx1qwcl5cgh9wdgg5r4s7vfbkk0vcsq9qd8nbcvfy"; depends=[caret]; }; ETAS = derive { name="ETAS"; version="0.0-1"; sha256="1p38ay3vnca8b8wszm66whxap8k58c004l1nlsk7zkynyia0im6c"; depends=[spatstat]; }; ETC = derive { name="ETC"; version="1.3"; sha256="1nvb9n0my7h1kq996mk91canxi6vxy3mzhrshrvm13ixvl48lkkh"; depends=[mvtnorm]; }; ETLUtils = derive { name="ETLUtils"; version="1.3"; sha256="13xq9i9fr34kx1nym7nr02gynshzm4jjn4qzx6ydg044b7xl57jp"; depends=[bit ff]; }; EW = derive { name="EW"; version="1.1"; sha256="0wc3v9qisiikvlp28xhlgsxb92fhkm6vslia6d0vpihyai0p1h1g"; depends=[]; }; EWGoF = derive { name="EWGoF"; version="2.1"; sha256="10p392n003sxn8l9sfnksi789k1w191rmkah6gxhji5f41gib5rh"; depends=[Rcpp]; }; -EasyABC = derive { name="EasyABC"; version="1.4"; sha256="0v3i7vlx2pnfkcqxka4g7ss8k8zphyx3vq5l0c1b433qp0fnjwf3"; depends=[abc lhs MASS mnormt pls]; }; +EasyABC = derive { name="EasyABC"; version="1.5"; sha256="17qv6y8sf2iwwqcv5wfg6sii259gv5jyr72dnfpir2bw78wb3mqx"; depends=[abc lhs MASS mnormt pls tensorA]; }; EasyHTMLReport = derive { name="EasyHTMLReport"; version="0.1.1"; sha256="1hgg8i7py7bx48cldyc7yydf0bggmbj3fx3kwiv9jh1x5wyh929z"; depends=[base64enc ggplot2 knitr markdown reshape2 scales xtable]; }; EasyMARK = derive { name="EasyMARK"; version="1.0"; sha256="10slkblbyxq98c3sxgs194dnkx996khfcpxj6jhz355dp35z7c9d"; depends=[coda doParallel foreach MASS random rjags stringr]; }; EasyStrata = derive { name="EasyStrata"; version="8.6"; sha256="0agmap9lmqbpfw8ijwxmjkcqjvc1ng0jsadkqpfz71a963nkqdcl"; depends=[Cairo plotrix]; }; EbayesThresh = derive { name="EbayesThresh"; version="1.3.2"; sha256="0n7cr917jrvmgwfqki7shvz9g9zpmbz9z8hm5ax7s8nnfzphrh4g"; depends=[]; }; -Ecdat = derive { name="Ecdat"; version="0.2-7"; sha256="1z9mxx3mvn3vi5drxlzss7gs7vpzg7shinl529bx4jpxqpci90jy"; depends=[Ecfun]; }; +Ecdat = derive { name="Ecdat"; version="0.2-9"; sha256="076di40cvfzm7zkj5f08zlk1wizzi7syfp0ghsrr4q61n5c1r72b"; depends=[Ecfun]; }; Ecfun = derive { name="Ecfun"; version="0.1-6"; sha256="1mz2smbxyjzc6vf3vhycgvjwqq6hr22vxikrl0hx185qxgwbgrxn"; depends=[fda gdata jpeg MASS RCurl stringi TeachingDemos tis XML]; }; EcoGenetics = derive { name="EcoGenetics"; version="1.2.0-2"; sha256="1c2pz2a8f57fhq0sk4jgfi4v8jwznsjaqx4jnziz3lak7gmcrwql"; depends=[ggplot2 party raster reshape2 rgdal rkt SoDA sp]; }; EcoHydRology = derive { name="EcoHydRology"; version="0.4.12"; sha256="03dzdw79s0cnnd7mv6wfxw374yf66dlcmj10xh6sh5i352697xp1"; depends=[DEoptim operators topmodel XML]; }; @@ -581,7 +603,7 @@ EntropyExplorer = derive { name="EntropyExplorer"; version="1.1"; sha256="02ljnq EnvNicheR = derive { name="EnvNicheR"; version="1.0"; sha256="1vw21gsdrx8gkf1rf8cnazv8l9ddcdmy2gckyf33fz7z2mbzgbkk"; depends=[]; }; EnvStats = derive { name="EnvStats"; version="2.0.1"; sha256="1z909p56dlhr00a5ir55sn5ny51h1wwi85as6arv3cn8c0zqyi74"; depends=[MASS]; }; EnviroStat = derive { name="EnviroStat"; version="0.4-2"; sha256="0ckax6vkx0vwczn21nm1dr8skvpm59xs3dgsa5bs54a3xhn5z9hs"; depends=[MASS]; }; -Epi = derive { name="Epi"; version="1.1.67"; sha256="12wbzv21whjnzlyqacgqmsgrjbkgj2495y9fwvav5mr21yfrjds3"; depends=[]; }; +Epi = derive { name="Epi"; version="1.1.71"; sha256="082q5y4g05gw9w8iq1bjfhiazwb50safh43wkl884a9h0srckjv9"; depends=[cmprsk etm MASS survival]; }; EpiBayes = derive { name="EpiBayes"; version="0.1.2"; sha256="1qfir0dl085c9ib1acsygmj7gihc4ar98k5niqdsgnmji88h17y2"; depends=[coda epiR scales shape]; }; EpiContactTrace = derive { name="EpiContactTrace"; version="0.9.1"; sha256="10yd24xcydn03rq9kcqcxj5gn25v54ljsm9mgc206g9wf1xx0wjf"; depends=[]; }; EpiDynamics = derive { name="EpiDynamics"; version="0.2"; sha256="1hqbfysvw2ln8z3as6lfcjlhkzccksngwh2vm25zsgy93gxw3mcc"; depends=[deSolve ggplot2 reshape2]; }; @@ -593,31 +615,32 @@ EstHer = derive { name="EstHer"; version="1.0"; sha256="1j8sczwfzil16j85mw5d1c7c EstSimPDMP = derive { name="EstSimPDMP"; version="1.2"; sha256="05gp0gdix4d98111sky8y88p33qr5w4vffkp6mg9klggn37kdj8j"; depends=[]; }; EvCombR = derive { name="EvCombR"; version="0.1-2"; sha256="1f5idjaza91npf64hvcnpgnr72mpb7y6kf91dp57xy9m14k7jx5g"; depends=[]; }; EvalEst = derive { name="EvalEst"; version="2015.4-2"; sha256="1jkis39iz3zvi5yfd0arvw7bym6naq45f5cravywg8c37n9v967x"; depends=[dse setRNG tfplot tframe]; }; -Evapotranspiration = derive { name="Evapotranspiration"; version="1.6"; sha256="0z15n5vacq6aghcbcwiiyq6kc8cl6pn3ip3axxg9g7bxig2rb8fh"; depends=[zoo]; }; +Evapotranspiration = derive { name="Evapotranspiration"; version="1.7"; sha256="1zgarrf1a4vfy730w9ikv9mkxj9ql2qgs6ad9wwkvz8p0lwbqs7d"; depends=[zoo]; }; EvoRAG = derive { name="EvoRAG"; version="2.0"; sha256="0gb269mpl2hbx1cqakv3qicpyrlfb4k8a3a7whhg90masbgmh8f6"; depends=[]; }; ExPosition = derive { name="ExPosition"; version="2.8.19"; sha256="04s9kk8x6khvnryg6lqdwnyn79860dzrjk8a9jyxgzp94rgalnnz"; depends=[prettyGraphs]; }; Exact = derive { name="Exact"; version="1.6"; sha256="0d5g5p98yrcd6v56iadsq448hl522shdqln2icmc3yfnya326as7"; depends=[]; }; ExactCIdiff = derive { name="ExactCIdiff"; version="1.3"; sha256="1vayq8x7gk1fnr1jrlscg6rb58wncriybw4m1z0glfgzr259103y"; depends=[]; }; ExactPath = derive { name="ExactPath"; version="1.0"; sha256="0ngvalmgdswf73q0jr4psg0ihnb7qwkamm6h64l01k5rmgd5nm16"; depends=[lars ncvreg]; }; ExceedanceTools = derive { name="ExceedanceTools"; version="1.2.2"; sha256="084sc6pggfbcyavhfnd5whyigw7dyjhb4cxmxi0kh2jiam5k8v5b"; depends=[SpatialTools splancs]; }; -ExomeDepth = derive { name="ExomeDepth"; version="1.1.5"; sha256="11ff89c080855wmvglapif7h3wmk6zrgfqcb0kshy4jglpwkz52x"; depends=[aod Biostrings GenomicAlignments GenomicRanges IRanges Rsamtools VGAM]; }; +ExomeDepth = derive { name="ExomeDepth"; version="1.1.6"; sha256="1zm42v8ki2nn095sl4q1a69nbcf2xffc8092n85y3mbza4ymm4w9"; depends=[aod Biostrings GenomicAlignments GenomicRanges IRanges Rsamtools VGAM]; }; ExpDes = derive { name="ExpDes"; version="1.1.2"; sha256="0qfigbx06b3p04x5v7wban139mp8hg8x77x6nzwa4v6dr226qbkv"; depends=[]; }; ExpDes_pt = derive { name="ExpDes.pt"; version="1.1.2"; sha256="0khw2jhg2vxcivgr20ybvrsqhd8l8bir5xjmr4m44za9nhap43bz"; depends=[]; }; +ExplainPrediction = derive { name="ExplainPrediction"; version="1.0.2"; sha256="00hw95k64p7zwb9a9n89cyghb8l6rrh33xlciw6g2q1dcmdfxzqg"; depends=[CORElearn semiArtificial]; }; ExtDist = derive { name="ExtDist"; version="0.6-3"; sha256="1vsxm578bb70wnz3mxm7y1n5vs0x5pby99hvxg5y5ksh2g2ascwa"; depends=[numDeriv optimx]; }; -ExtremeBounds = derive { name="ExtremeBounds"; version="0.1.5"; sha256="1fsrp2dm1bdg5p0qsi2wa8qxrlq065jlazsxzixpjsni910mrb2k"; depends=[Formula]; }; +ExtremeBounds = derive { name="ExtremeBounds"; version="0.1.5.1"; sha256="0b67bap1ks3wq3m6wgr7splpn7wq635wslcks74xqzv0man4kh84"; depends=[Formula]; }; FACTscorer = derive { name="FACTscorer"; version="0.1.0"; sha256="1gbfpm5szi6w8iyp7ywpqrmdq0wrv5axj29sj9gxjwmjfh5qgqjx"; depends=[]; }; FADA = derive { name="FADA"; version="1.2"; sha256="1wpjqvhhgvirzcvl8r23iaw63wr8rys19mjy71mn24wg3zwnc2qz"; depends=[crossval elasticnet glmnet MASS mnormt sda sparseLDA]; }; FAMILY = derive { name="FAMILY"; version="0.1.19"; sha256="1912l2zj2cmh8yx8lkg8fpgvfddn6wbi1vrr4yx04mh73gk1s5mk"; depends=[pheatmap pROC]; }; FAMT = derive { name="FAMT"; version="2.5"; sha256="0mn85yy9zmiklfwqjbhbhzbawwp2yqrm9pvm8jhasn9c3kw1pcp2"; depends=[impute mnormt]; }; FAOSTAT = derive { name="FAOSTAT"; version="2.0"; sha256="06z8c964sf73ld4v9vybqjsdxskxp3ssyv0a3mpcs9la5y7n9jaz"; depends=[classInt data_table ggplot2 labeling MASS plyr RJSONIO scales]; }; -FAdist = derive { name="FAdist"; version="2.1"; sha256="1y66ymg0k6kmyq4bclwwlqkp8brkq925ajpp0jqqn39f749c2kji"; depends=[]; }; +FAdist = derive { name="FAdist"; version="2.2"; sha256="0nw3w4g7y846bm57xyjnb13g7z746kxf8mb2hnljwwsypcg6i2n8"; depends=[]; }; FAiR = derive { name="FAiR"; version="0.4-15"; sha256="18nj95fiy3j7kf4nzf692dxja3msnaaj5csg745bnajb48l606wz"; depends=[gWidgetsRGtk2 Matrix rgenoud rrcov]; }; -FAmle = derive { name="FAmle"; version="1.3.3"; sha256="125m2hvl603avg9h9x5gfb7l9clpg7p0ir8fdypxyjiqggdr8hxa"; depends=[mvtnorm]; }; +FAmle = derive { name="FAmle"; version="1.3.4"; sha256="0di9mmpsll7339cw1lss3jk4w1cyqhap6y72r793q8w3x14q0j9d"; depends=[mvtnorm]; }; FAwR = derive { name="FAwR"; version="1.1.0"; sha256="0566h9fgnnk8xankqkpvcshf8acr46lz84sf2pzlmasgvwh7xp19"; depends=[glpkAPI lattice MASS]; }; FBFsearch = derive { name="FBFsearch"; version="1.0"; sha256="1nxfhll9gx9l6hzpcihlz880qxr0fyv5rjghk0xgp8xn4r5wxw11"; depends=[Rcpp RcppArmadillo]; }; FBN = derive { name="FBN"; version="1.5.1"; sha256="0723krsddfi4cy2i3vd6pi483qjxniychnsi9r8nw7dm052nb4sf"; depends=[]; }; FCMapper = derive { name="FCMapper"; version="1.0"; sha256="1wp5byx68067fnc0sl5zwvw2wllaqdbcy4g2gbzmlqwli0jz2dsk"; depends=[igraph]; }; -FCNN4R = derive { name="FCNN4R"; version="0.3.4"; sha256="1qzfgspar54ki3n36zr322lxx249w4a5lzr9n18gwmzhkb61lgbf"; depends=[Rcpp]; }; +FCNN4R = derive { name="FCNN4R"; version="0.4.1"; sha256="13fw1km5i7f82mcff8l01vbwhhy8gzi39mvxgcic69k1riv451hb"; depends=[Rcpp]; }; FD = derive { name="FD"; version="1.0-12"; sha256="0xdpciq14i8rh7v6mw174hip64r7mrzhx7gwri3vp9y7a1380sbi"; depends=[ade4 ape geometry vegan]; }; FDGcopulas = derive { name="FDGcopulas"; version="1.0"; sha256="1i86ns4hq74y0gnxfschshjlc6if3js0disjb4bwfizaclwbw3as"; depends=[numDeriv randtoolbox Rcpp]; }; FDRreg = derive { name="FDRreg"; version="0.1"; sha256="17hppvyncbmyqpi7sin9qsrgffrnx8xjcla2ra6y0sqzam1145y4"; depends=[fda mosaic Rcpp RcppArmadillo]; }; @@ -629,10 +652,11 @@ FGSG = derive { name="FGSG"; version="1.0.2"; sha256="1r3sjhzf9gcnbcx6rqr1s555z8 FGalgorithm = derive { name="FGalgorithm"; version="1.0"; sha256="1dq6yyb3l6c9fzvk9gs6pb240xb5hvc6fh8p3qd3c91b3m289mcc"; depends=[]; }; FHtest = derive { name="FHtest"; version="1.3"; sha256="1cay1cl1x4lias55vxc14caznggdw6j8vgqgkxfmvldnvjfljsq1"; depends=[interval KMsurv MASS perm survival]; }; FI = derive { name="FI"; version="1.0"; sha256="17qzl8qvxklpqrzsmvw4wq3lyqz3zkidr7ihxc4vdzmmz69pyh2f"; depends=[]; }; +FIACH = derive { name="FIACH"; version="0.1.0"; sha256="0l3dr8xnhdgbwgcfx3n3c9171c7j2g5v2pxyvy5igwh2lqdy17mq"; depends=[Rcpp RcppArmadillo RNiftyReg tkrplot]; }; FITSio = derive { name="FITSio"; version="2.0-0"; sha256="1gf3i1q9g81gydag2gj1wsy6wi5jj2v4j3lyrnh1n2g4kxd6s3cp"; depends=[]; }; FKF = derive { name="FKF"; version="0.1.3"; sha256="01ibihca39zng4wrvhq8h28bmb2rnsjm21xy22b85kpn3mbnh7f1"; depends=[RUnit]; }; FLIM = derive { name="FLIM"; version="1.2"; sha256="180az4zwmfcglmvismyacmh7ri4qg8jvhlisqpway0z5z6fsda6r"; depends=[MASS zoo]; }; -FLLat = derive { name="FLLat"; version="1.1"; sha256="1h2nfx7gb66hjdfkdm6im6n8c1fjdz9csg39pckb47c0khl3g9r0"; depends=[gplots]; }; +FLLat = derive { name="FLLat"; version="1.2"; sha256="0kdc269vsc94pi00n55196a20qiv6c5pxf2xrh34w4x2vkn5mbxz"; depends=[gplots]; }; FLR = derive { name="FLR"; version="1.0"; sha256="0k50vi73qj7sjps0s6b2hq1cmpa4qr2vwkpd2wv2w1hhhrj8lm0n"; depends=[combinat]; }; FLSSS = derive { name="FLSSS"; version="3.1"; sha256="0cyrjq1b0s7x0dz3x2kvd7pr8v4lyw1324ik4rnbj9hv9mf1g0af"; depends=[Rcpp]; }; FME = derive { name="FME"; version="1.3.2"; sha256="1sjnsc8jbylb2bln5ic24s5bany3clzn44lqnymhsy81x88396ff"; depends=[coda deSolve MASS minpack_lm rootSolve]; }; @@ -644,7 +668,7 @@ FRAPO = derive { name="FRAPO"; version="0.3-8"; sha256="1wqayyai8pdm1vq6qvpd10qp FRB = derive { name="FRB"; version="1.8"; sha256="13rp4gqldx84mngrdv5fa9xamkng7b3kgy30ywykcx46gmrym6ps"; depends=[corpcor rrcov]; }; FRCC = derive { name="FRCC"; version="1.0"; sha256="1g1rsdqsvwf7wc16dj16y6r0347j8jsv5l1pxvj1h0579zinaf2b"; depends=[calibrate CCP corpcor MASS]; }; FREQ = derive { name="FREQ"; version="1.0"; sha256="01nra30pbnqdd63pa87lcws3hnhhzybcjvx2jqyxjghn6khz47j0"; depends=[]; }; -FRESA_CAD = derive { name="FRESA.CAD"; version="2.0.2"; sha256="1clnv18d6f747725ayksas3c2hng1bkb4zss44avfqh9q1y0z1iy"; depends=[Hmisc miscTools pROC Rcpp RcppArmadillo stringr]; }; +FRESA_CAD = derive { name="FRESA.CAD"; version="2.1.3"; sha256="1as5b19pri5ib88g8cxbgs70zdsz24nqw6979z744vcgvzqk8gvv"; depends=[Hmisc miscTools pROC Rcpp RcppArmadillo stringr]; }; FSInteract = derive { name="FSInteract"; version="0.1.1"; sha256="0hlmz0sc4l9vmb4b2y3j95gh39m1jqrp9bvqsjjqdr0ly1lb7mvm"; depends=[Matrix Rcpp]; }; FSelector = derive { name="FSelector"; version="0.20"; sha256="0gbnm48x5myhxxw8gz7ck9sl41nj5rxq4gwifqk3l4kiqphywlpi"; depends=[digest entropy randomForest RWeka]; }; FTICRMS = derive { name="FTICRMS"; version="0.8"; sha256="0kv02mdmwflhqdrkhzb55si5qnqqgdadgyabqc2hwr6iccn7aq8c"; depends=[lattice Matrix]; }; @@ -656,6 +680,7 @@ FactoMineR = derive { name="FactoMineR"; version="1.31.3"; sha256="164pxgy9sn7ir Factoshiny = derive { name="Factoshiny"; version="1.0.2"; sha256="0wwsv0frn2d6a5l5lr9qzqglznaigc23bq7nhcbfy1wlvsmimnr3"; depends=[FactoMineR shiny]; }; Fahrmeir = derive { name="Fahrmeir"; version="2015.6.25"; sha256="1ca4m3m4jip7n489yywdfvh6nlhxspg5awxi23spgfnvhrcs9k3y"; depends=[]; }; Familias = derive { name="Familias"; version="2.2"; sha256="1nhjxn3f063gvi4jvwb8r4fap7f1zbcvb6qa30153yh31yprljls"; depends=[kinship2 paramlink]; }; +FastBandChol = derive { name="FastBandChol"; version="0.1.1"; sha256="1hlgipn792vaylvc0r44clkjcnkns6p241a1fs8sb3gpq81naazk"; depends=[Rcpp RcppArmadillo]; }; FastGP = derive { name="FastGP"; version="1.1"; sha256="01d2435ag4hgwljwp896gqzjih6510aqf05522q7q209r2dbl0km"; depends=[MASS mvtnorm rbenchmark Rcpp RcppEigen]; }; FastHCS = derive { name="FastHCS"; version="0.0.5"; sha256="02ds9syqh8wpjrqibdv3kqxcyijclm572daqrj262b4b6211v46x"; depends=[matrixStats Rcpp RcppEigen robustbase]; }; FastImputation = derive { name="FastImputation"; version="1.2"; sha256="04bz623kcanxcl9z8zl6m7m47pk0szcjrjlgs5v1yl3jnq9m2n7g"; depends=[]; }; @@ -665,8 +690,8 @@ FastRCS = derive { name="FastRCS"; version="0.0.6"; sha256="0wjsh37jas8hcb9554ij FastRWeb = derive { name="FastRWeb"; version="1.1-1"; sha256="0xh3710kvnc60pz9rl5m3ym2cxf0mag9gi29y7j3fl4dh2k7zf74"; depends=[base64enc Cairo]; }; FatTailsR = derive { name="FatTailsR"; version="1.2-3"; sha256="139hc8axzp0faib0lpj3f6kfwna29vsqjjwflcva8xsghakc1d4r"; depends=[minpack_lm timeSeries]; }; FeaLect = derive { name="FeaLect"; version="1.10"; sha256="1r7rgcadrqjhxn2g2w16axygsck82fprxg7l14ai11bn4b7h4pmb"; depends=[lars rms]; }; -FeatureHashing = derive { name="FeatureHashing"; version="0.9"; sha256="1xbzmyah22kjrkd7ln1pjzwyn5w0zmhdhs9w1a3p8rjxrwmx6ssf"; depends=[BH digest magrittr Matrix Rcpp]; }; -FedData = derive { name="FedData"; version="2.0.0"; sha256="1c3lfjl1rdd34f0d9gyhvyclqcb83cq1fvf5w88s8d32q6iimigx"; depends=[data_table devtools igraph raster RCurl rgdal rgeos soilDB sp]; }; +FeatureHashing = derive { name="FeatureHashing"; version="0.9.1"; sha256="1i5m69as3j7ih0ly792m10z4b69mgsw0n3mnf1lhpmygm0h146sk"; depends=[BH digest magrittr Matrix Rcpp]; }; +FedData = derive { name="FedData"; version="2.0.1"; sha256="0zp0vaziaxi57ps8v72spfy0yjiq41xykr7cgz97ci8f9c8mvxp5"; depends=[data_table devtools igraph raster RCurl rgdal soilDB sp]; }; FeedbackTS = derive { name="FeedbackTS"; version="1.3.1"; sha256="1zx64wbl5pzqn69bjhshd3nayxx4wlg7n1zwv7ilh68raxfxnbbx"; depends=[geoR mapdata maps proj4 sp]; }; FieldSim = derive { name="FieldSim"; version="3.2.1"; sha256="1snz2wja3lsgxys0mdlrjjvk5575cyd64mjipafibwcs97bva5x1"; depends=[RColorBrewer rgl]; }; FinAsym = derive { name="FinAsym"; version="1.0"; sha256="0v15ydz4sq9djwcdcfp90mk8l951rry7h91d7asgg53mddbxjj6f"; depends=[]; }; @@ -681,8 +706,7 @@ FisHiCal = derive { name="FisHiCal"; version="1.1"; sha256="1dds629jlja3vw2l010n FisherEM = derive { name="FisherEM"; version="1.4"; sha256="1lhkyyk82i6alxyiqrvy5fx60f8vab0y62zmw5fjaq6h0vczqn3s"; depends=[elasticnet MASS]; }; FitAR = derive { name="FitAR"; version="1.94"; sha256="1mkk3kvfq4v0pdabnhbwrk31ji2mv2v6ns16xsvvr1qyg2fnx6hq"; depends=[bestglm lattice leaps ltsa]; }; FitARMA = derive { name="FitARMA"; version="1.6"; sha256="1r9mqrqkm4wh3nd6v9wmpj23gw21i4p89p6z4c7639kn4f590ldk"; depends=[FitAR]; }; -FlexParamCurve = derive { name="FlexParamCurve"; version="1.5-2"; sha256="1r8iacjnpbkpqwp58dz724g1cpnmll4b1mkxnsdj3h9iq1rbi7bq"; depends=[nlme]; }; -FluOMatic = derive { name="FluOMatic"; version="1.0"; sha256="06hww6viynisnfiphvghv4iqf1gk2snb8aksignaw8pnlkixnsg7"; depends=[]; }; +FlexParamCurve = derive { name="FlexParamCurve"; version="1.5-3"; sha256="0766ghwbdd7r4yj5xf31hnknn775ziw1hhrn13wf8bibyd8blz70"; depends=[nlme]; }; Flury = derive { name="Flury"; version="0.1-3"; sha256="105fv9azjkd8bsb9b8ba3gpy3pjnyyyp753qhrd11byp3d0bbxy0"; depends=[]; }; ForIT = derive { name="ForIT"; version="1.0"; sha256="0mi2cw09mbc54s8qwcwxin2na1gfyi60cdssy2ncynma7alq3733"; depends=[]; }; ForImp = derive { name="ForImp"; version="1.0.3"; sha256="0ai4i6q233sdsi8xilpbkxjqdf4pxw93clkdkhcxal6q43rnf7vd"; depends=[homals mvtnorm sampling]; }; @@ -694,6 +718,7 @@ FourScores = derive { name="FourScores"; version="1.0"; sha256="0d21mrl9bzsvhljv FrF2 = derive { name="FrF2"; version="1.7-1"; sha256="0i9hfx7n0g866imdsmalqzs8v95vx08cz97hi8311v1wc3pqsn1j"; depends=[BsMD DoE_base igraph scatterplot3d sfsmisc]; }; FrF2_catlg128 = derive { name="FrF2.catlg128"; version="1.2-1"; sha256="0i4m5zb9dazpvmnp8wh3k51bm0vykh4gncnhdg71mfk4hzrfpdac"; depends=[FrF2]; }; FractalParameterEstimation = derive { name="FractalParameterEstimation"; version="1.0"; sha256="12v72zn1san2kv82b9y1vd0gzd1fa800yscc63zlq8lfflz47xvz"; depends=[]; }; +Fragman = derive { name="Fragman"; version="1.0.1"; sha256="053mbhjhc5kzzj7kjrxa6vk5zky4mkr7x79i9apvkhm149wrrwrw"; depends=[]; }; Frames2 = derive { name="Frames2"; version="0.1.1"; sha256="004h3w5bfnbbxa8yczlcd8m0bc9xq91dg5ph6yql28ivibw24q1l"; depends=[sampling]; }; FreeSortR = derive { name="FreeSortR"; version="1.1"; sha256="03z5wmr88gr6raa2cg7w4j6y5vgxr3g8b8axzhbd7jipswr5x1jf"; depends=[ellipse smacof vegan]; }; FunChisq = derive { name="FunChisq"; version="2.1.0"; sha256="0k5b0kl64yswl5d41yiav9xnqcsqx8n6qc5p2nz5vqjs6qb7mbvd"; depends=[BH Rcpp RcppClassic]; }; @@ -707,7 +732,7 @@ FuzzyNumbers = derive { name="FuzzyNumbers"; version="0.4-1"; sha256="15i0chp43y FuzzyStatProb = derive { name="FuzzyStatProb"; version="2.0.1"; sha256="0cj6dqb5iy4gw7kkip9jvk9djf6dx20078kmb42br8sim1065j8m"; depends=[DEoptim FuzzyNumbers MultinomialCI]; }; FuzzyToolkitUoN = derive { name="FuzzyToolkitUoN"; version="1.0"; sha256="104s45mmlam67vwpshhpns2mgwvmhnbj8w1918jyk2r5mqibwz06"; depends=[]; }; G1DBN = derive { name="G1DBN"; version="3.1.1"; sha256="015rw3bpz32a8254janddgg1ip947qgcvmiwx5r3v7g8n854bwxn"; depends=[igraph MASS]; }; -G2Sd = derive { name="G2Sd"; version="2.1.3"; sha256="02j30mfrzi4q3a387i0cr4khj2hzf7jrlyj06qc8bwlhz0f4l35m"; depends=[ggplot2 reshape2 rJava shiny xlsx xlsxjars]; }; +G2Sd = derive { name="G2Sd"; version="2.1.4"; sha256="1436kv0hyanyqgx62f3n6hnaqxyjpx43wkz1bipdj18ph4is2r96"; depends=[ggplot2 reshape2 rJava shiny xlsx xlsxjars]; }; GA = derive { name="GA"; version="2.2"; sha256="1pk80jwzvpmi61df0y331qvl8jkdizblg93s7gaspkbzy50wyfkp"; depends=[foreach iterators]; }; GA4Stratification = derive { name="GA4Stratification"; version="1.0"; sha256="0li23mrxjx72fir16j3q06fa32cicck4pfc30n0dy2lysf81m9gs"; depends=[]; }; GABi = derive { name="GABi"; version="0.1"; sha256="1zmiaqbd1jrpiz9hk16s8rggcpl3xyyhjkkdliymx2p42vy5b5mf"; depends=[hash]; }; @@ -716,7 +741,7 @@ GAIPE = derive { name="GAIPE"; version="1.0"; sha256="04iarbwxrhn48bk329wxis7ifz GAMBoost = derive { name="GAMBoost"; version="1.2-3"; sha256="0450h9zf12r524lxk1lrv9imvvkk6fmyd3chnxp18nnvys7215pv"; depends=[Matrix]; }; GANPA = derive { name="GANPA"; version="1.0"; sha256="0ia8djv46jm397nxjrm9yc5gacf1r4z0ckiliz57cbrqwh7z2wpa"; depends=[GANPAdata]; }; GANPAdata = derive { name="GANPAdata"; version="1.0"; sha256="0mhdadl7zgsacn59ym42magg3214k1xhabwn78fv7kgccszcgc86"; depends=[]; }; -GAR = derive { name="GAR"; version="1.0"; sha256="1278rdln23pl5ay87nb6w15ywdh6ls8hx8k0nb48ab4ysjqf6r04"; depends=[httr jsonlite]; }; +GAR = derive { name="GAR"; version="1.1"; sha256="12xgk87bndinx7ibaasn51a9fad3ymvpjmixa7l18pfy99l3pcll"; depends=[httr jsonlite]; }; GAabbreviate = derive { name="GAabbreviate"; version="1.0"; sha256="0c9407i6dq7psw744fpkf190as99fssd9n9k0xbvwif10agm278l"; depends=[GA psych]; }; GB2 = derive { name="GB2"; version="2.1"; sha256="06rcck97pdm1rsb02cy0jd9fknv0mz5jwk364gsaahdk56ddk18a"; depends=[cubature hypergeo laeken numDeriv survey]; }; GCAI_bias = derive { name="GCAI.bias"; version="1.0"; sha256="10092mwpmfbcga0n39a0i6g8xxch8xiwg15cckipw6yxjyx0sivc"; depends=[]; }; @@ -728,13 +753,14 @@ GDELTtools = derive { name="GDELTtools"; version="1.2"; sha256="1rx6kjh7kmyycqap GENEAread = derive { name="GENEAread"; version="1.1.1"; sha256="0c3d76yl8dqclk8zhhgrd6bv6b599vkpbyg3hjspb6npdw6zs6k8"; depends=[bitops]; }; GENLIB = derive { name="GENLIB"; version="1.0.4"; sha256="1gl8qsgm9iy57rlajgc47lfxah52jsg7lpj131a6813kj0c639l7"; depends=[bootstrap doParallel foreach kinship2 lattice Matrix quadprog Rcpp]; }; GEOmap = derive { name="GEOmap"; version="2.3-5"; sha256="11sxlijfcswxmry6p9pb4g6prrql0qnqcqc21f72a0jp3k3670nc"; depends=[fields RPMG splancs]; }; +GERGM = derive { name="GERGM"; version="0.3.2"; sha256="0rwl97ph60pmirblxzi2166qv37g3ahrglh38bmzi5jlkwbff2ns"; depends=[BH ggplot2 Rcpp RcppArmadillo stringr]; }; GESTr = derive { name="GESTr"; version="0.1"; sha256="1q12l2vcq6bcyybnknrmfbm6rpzcmxgq2vyj33xwhkmm9g2ii9k6"; depends=[gtools mclust]; }; -GEVStableGarch = derive { name="GEVStableGarch"; version="1.0"; sha256="007s7lbfpp1bqnyg08rwarsmkxlx16p4is1k3736fmnri9sfp7z6"; depends=[fExtremes fGarch Rsolnp skewt stabledist]; }; +GEVStableGarch = derive { name="GEVStableGarch"; version="1.1"; sha256="1iypv0k4cbvsdyglgvf7y52sqvl5qcin627pjqwq42kisqynm8d7"; depends=[fExtremes fGarch Rsolnp skewt stabledist timeDate timeSeries]; }; GEVcdn = derive { name="GEVcdn"; version="1.1.4"; sha256="13p6wi72z6j7iyp5hv16ndvsq6jf6hdqgcmf1i8g713gn73l79kj"; depends=[VGAM]; }; GExMap = derive { name="GExMap"; version="1.1.3"; sha256="1a6i2z9ndgia4v96nkr77cjqnbgxigqbqlibg82gwa0a6pl7r7nz"; depends=[Biobase multtest]; }; GGEBiplotGUI = derive { name="GGEBiplotGUI"; version="1.0-8"; sha256="0bkagsm9mkcghc2q46cc86kjajzgjbq9588v0v2bp71qw8m97mbh"; depends=[rgl tkrplot]; }; GGIR = derive { name="GGIR"; version="1.1-5"; sha256="0lanza1i7bqa0z745hbxkkyjhf6jy578jjva6nbisbbfsrbf7ydj"; depends=[]; }; -GGMselect = derive { name="GGMselect"; version="0.1-9"; sha256="18l98v6hv0sjhany275lsbdjwclx3abqfi924n9qlcnap1rvsfwz"; depends=[gtools lars mvtnorm]; }; +GGMselect = derive { name="GGMselect"; version="0.1-10"; sha256="0ihxxih5fw470pnmnljsarahd4xim6ncx3w7fym5i5q86bqcyahb"; depends=[gtools lars mvtnorm]; }; GGally = derive { name="GGally"; version="0.5.0"; sha256="00ix8qafi71l7vhj6268f9srqbgr9iw1qk0202y59mhfrj6c6f5i"; depends=[ggplot2 gtable plyr reshape stringr]; }; GHQp = derive { name="GHQp"; version="1.0"; sha256="0qpcpwv7rz67qhz1p5k2im02jvs7l8z9sa6ypz13hig5fzm8j9bp"; depends=[statmod]; }; GIGrvg = derive { name="GIGrvg"; version="0.4"; sha256="0sflklyzl2l5bcjhz7n75aww76ih93sq5mbgdc4v1p0vqhrbbg47"; depends=[]; }; @@ -759,16 +785,16 @@ GPfit = derive { name="GPfit"; version="1.0-0"; sha256="0g0g343ncqsqh88qq9qrf4xv GPseq = derive { name="GPseq"; version="0.5"; sha256="0k5xif44qk2ppvcyja16xshmfciq1h84l1w6d8dfkyryfajbc8ai"; depends=[]; }; GPvam = derive { name="GPvam"; version="3.0-3"; sha256="0dmws29ahbjhx82s2i8jfzhl8pp5q201a592w90jvhwy2bnm1ywk"; depends=[Matrix numDeriv Rcpp RcppArmadillo]; }; GRANBase = derive { name="GRANBase"; version="1.0.12"; sha256="1qfx2zp8vjyqx9rqz23kgl1dj7kz7qkligym8r2l41nc0hinijpi"; depends=[hwriter switchr XML]; }; -GRTo = derive { name="GRTo"; version="1.2"; sha256="0x65g8a39vrb8m3hqajxi0ksmdavz0p6mlamqprkdn9p6ikf5c73"; depends=[bootstrap]; }; +GRTo = derive { name="GRTo"; version="1.3"; sha256="1xkcx2agvrpfnmplgaqx70vz303v8rhwnxdyr4hmdlf4h92lbv8i"; depends=[bootstrap]; }; GRaF = derive { name="GRaF"; version="0.1-12"; sha256="1d7mr2z49v6ch4jbzh0dj2yjy2c5p51ws38xfz233sjz475snajr"; depends=[dismo]; }; GSA = derive { name="GSA"; version="1.03"; sha256="1h1sbpn1rrdh44w4fx2avc7x24ba40mvpd8b2x5wfrc7a294zf6z"; depends=[]; }; GSAgm = derive { name="GSAgm"; version="1.0"; sha256="18bhk67rpss6gg1ncaj0nrz0wbfxv7kvy1cxria083vi60z0vwbb"; depends=[edgeR survival]; }; -GSE = derive { name="GSE"; version="3.2.1"; sha256="1sq28hi60jayl3yc8432dfv0knavsmy0khmwa5h16ag23cg962w6"; depends=[ggplot2 MASS Rcpp RcppArmadillo rrcov]; }; +GSE = derive { name="GSE"; version="3.2.2"; sha256="1sg1cpc3izykkzrbc8j0w96d174xb909d5i9vffmwzycxr4rf1pd"; depends=[ggplot2 MASS Rcpp RcppArmadillo rrcov]; }; GSIF = derive { name="GSIF"; version="0.4-7"; sha256="1c2lk6yzacwrxvs5v0al8hwvi7ncqdvn4f7ngicy6g8iyi4p7z08"; depends=[aqp dismo gstat plotKML plyr raster rgdal RSAGA sp]; }; GSM = derive { name="GSM"; version="1.3.2"; sha256="04xjs9w4gaszwzxmsr7657ry2ywa9pvpwpczpvinxi8vpj347jbb"; depends=[gtools]; }; GUIDE = derive { name="GUIDE"; version="1.0.9"; sha256="1y0y6rwv1khd9bdaz5rl9nmxiangx0jckgihg16wb6hx6kf8kzc1"; depends=[rpanel tkrplot]; }; GUILDS = derive { name="GUILDS"; version="1.2.1"; sha256="1z90qjgrx16yk956phbifcr7jd3w59h7akzz7p6g5ymrcjzih4qf"; depends=[pracma Rcpp subplex]; }; -GUIProfiler = derive { name="GUIProfiler"; version="0.1.2"; sha256="1k56clda6xr649xfacnigi3c2s7ih1whchwcfqm7aa2d44vv3axz"; depends=[MASS Nozzle_R1]; }; +GUIProfiler = derive { name="GUIProfiler"; version="2.0.1"; sha256="10m4d7f2rhw6cmkrnw3jh4iqlkfphf4v7mpfwzw17laq0ncmsx5r"; depends=[graph MASS Nozzle_R1 proftools Rgraphviz rstudioapi]; }; GUTS = derive { name="GUTS"; version="1.0.0"; sha256="0s64swhs7wpknvycca7qj36kj910anrh9qrbpyfjl9lw8cqa2058"; depends=[Rcpp]; }; GUniFrac = derive { name="GUniFrac"; version="1.0"; sha256="0xr68yv3h2lwn7sxy8l5p9g1z3q9hihg9jamsyl70jj9b2ic80jn"; depends=[ape vegan]; }; GWAF = derive { name="GWAF"; version="2.2"; sha256="11lk1dy24y1d0biihy2aypdvlx569lw1pfjs51m54rhgpwzkw6yd"; depends=[coxme geepack lme4]; }; @@ -779,7 +805,7 @@ GWRM = derive { name="GWRM"; version="2.0"; sha256="1dfrwxr12dn6i39mv6i3j6k341f9 GWmodel = derive { name="GWmodel"; version="1.2-5"; sha256="14pp1hy4bqr6kg9fy9nchjm6kb3l85f58rl2449b7wv7vsk3yfvk"; depends=[maptools robustbase sp]; }; GWsignif = derive { name="GWsignif"; version="1.0"; sha256="04663qgy3xmijrx8m1s5ql7zj70mgsd58dl08ci742l1fzmfya5f"; depends=[]; }; GaDiFPT = derive { name="GaDiFPT"; version="1.0"; sha256="15fnj1w30h0zdj032f3js0bbb1qlyk4b54a4aclykwzicqdgalkg"; depends=[]; }; -GameTheory = derive { name="GameTheory"; version="1.0"; sha256="07v2qhnhczid814isnz4ywf624sds6jxxzayl8mzlnjv5qnk59z8"; depends=[combinat gtools ineq kappalab lpSolveAPI]; }; +GameTheory = derive { name="GameTheory"; version="2.0"; sha256="0p5zz1waffynnciq1mbjjlnmaif1fnr5799y6izk50ckhh07bgfs"; depends=[combinat gtools ineq kappalab lpSolveAPI]; }; Gammareg = derive { name="Gammareg"; version="1.0"; sha256="1a5wibnbd8jg0v8577n1x9kc358qpd4jz7l8h7r541sdpprm6wb0"; depends=[]; }; GenABEL = derive { name="GenABEL"; version="1.8-0"; sha256="0sd497qvik70iwv7wc8r50rhc5wx153pm8vif738wwqqp43chks3"; depends=[GenABEL_data MASS]; }; GenABEL_data = derive { name="GenABEL.data"; version="1.0.0"; sha256="0p66fb0gynjx3mnfvnlz45cbn6xf49gwx9mfyxf584xfcggxaa1c"; depends=[]; }; @@ -787,7 +813,7 @@ GenBinomApps = derive { name="GenBinomApps"; version="1.0-2"; sha256="1ps1rq8cjl GenCAT = derive { name="GenCAT"; version="1.0.1"; sha256="1a6jjfynngcqqacmn8lpjyvm4681n691savz768g0xq7mf4cmijw"; depends=[doParallel dplyr foreach ggplot2]; }; GenForImp = derive { name="GenForImp"; version="1.0"; sha256="1wcvi52fclcm6kknbjh4r9bpkc2rg8nk6cddnf5j8zqbvrwf4k5x"; depends=[mvtnorm sn]; }; GenKern = derive { name="GenKern"; version="1.2-60"; sha256="12qmd9ydizl7h178ndn25i4xscjnrssl5k7bifwv94m0wrgj4x6c"; depends=[KernSmooth]; }; -GenOrd = derive { name="GenOrd"; version="1.3.0"; sha256="07ll15fqcfvrbsd8psbvn9569hcmvghwadzb3h9qxh6pxnl9i5qd"; depends=[MASS Matrix mvtnorm]; }; +GenOrd = derive { name="GenOrd"; version="1.4.0"; sha256="17mfrj1fwj8mri1w0bl2pw1rqriidmd67i7gpn9v56g9dzw5rzms"; depends=[MASS Matrix mvtnorm]; }; GenSA = derive { name="GenSA"; version="1.1.5"; sha256="10fkb30p3ncswlq4f9jknfhrrsi4v3lkn2nlnpb2yhrqai538wij"; depends=[]; }; GenWin = derive { name="GenWin"; version="0.1"; sha256="0jm537i4jn3azdpvd50y9p0fssfx2ym2n36d3zgnfd32gqckz3s4"; depends=[pspline]; }; GeneCycle = derive { name="GeneCycle"; version="1.1.2"; sha256="1ghdzdddbv6cnxqd08amy4c4s5jsxa637r828ygffk6z76xjr6b6"; depends=[fdrtool longitudinal MASS]; }; @@ -796,24 +822,27 @@ GeneFeST = derive { name="GeneFeST"; version="1.0.1"; sha256="0qgzjzhwf3nigfi09m GeneNet = derive { name="GeneNet"; version="1.2.13"; sha256="0w52apk0nnr8nsskf26ff7ana8xiksr8wqmkjxzwhzgg7fncm61p"; depends=[corpcor fdrtool longitudinal]; }; GeneReg = derive { name="GeneReg"; version="1.1.2"; sha256="081qc66mb17dwk886x9l2z4imklxnfs02yqql0ri9c47bpsga7wp"; depends=[igraph]; }; Geneland = derive { name="Geneland"; version="4.0.5"; sha256="1v2m8v4sy95rajjw8m9bg4yal5ay7x1k5kqjxrivm45ad546ykwh"; depends=[fields RandomFields]; }; +GeneralOaxaca = derive { name="GeneralOaxaca"; version="1.0"; sha256="19j5c5xr6mdb6pmih94wbjas4yh0dmsqfggg8clvdxkpwk0h338v"; depends=[boot]; }; GeneralizedHyperbolic = derive { name="GeneralizedHyperbolic"; version="0.8-1"; sha256="0rx07z5npawvsah2lhhkryzpj19sg0sl0w410gmff985ksdn285m"; depends=[DistributionUtils RUnit]; }; GeneticSubsetter = derive { name="GeneticSubsetter"; version="0.5"; sha256="1j04qbnx6j39w16ks3v05hr99lsdsy8sp8af2cfg2mqwk4dy3kx2"; depends=[rrBLUP]; }; GeneticTools = derive { name="GeneticTools"; version="0.3.1"; sha256="033dwg94ns4mz2ixgn180h6qd783gm492p9qs2nf8498cb4ycg9m"; depends=[gMWT plotrix Rcpp RcppArmadillo snpStats]; }; GeoDE = derive { name="GeoDE"; version="1.0"; sha256="0wawkzj0344pprm8g884d7by8v74iw96b109rgm7anal48fl30im"; depends=[MASS Matrix]; }; GeoGenetix = derive { name="GeoGenetix"; version="0.0.2"; sha256="0rrc8rdf6whpd830s2g9ybz82jcd0il9kkfrjh3xza3b86fasdvg"; depends=[RandomFields]; }; -GeoLight = derive { name="GeoLight"; version="1.03"; sha256="0l2p4rcmk33dj31xy06652mn05d2dhnny3xpzcf12kxyflpipdgr"; depends=[changepoint maps]; }; +GeoLight = derive { name="GeoLight"; version="2.0.0"; sha256="1i49hyj3f5rcw0s6j2csnfwc6mnp5zn44vxjnk05wdkpw6dpvx5i"; depends=[changepoint fields maps MASS]; }; GeoXp = derive { name="GeoXp"; version="1.6.2"; sha256="18wdmdwb79ipdjdii068dz9f55b5ldxn95g5q6jcxsqwp0wldvw8"; depends=[KernSmooth quantreg rgeos rgl robustbase spdep splancs]; }; GetR = derive { name="GetR"; version="0.1"; sha256="1b2wirhz4nhvmf863czwb8z8b42ilsyjjrg9rc4nd9b7nz50bmjg"; depends=[party]; }; GetoptLong = derive { name="GetoptLong"; version="0.1.0"; sha256="1r86bffsj6s8d71wngspqvfv0gyrrpihf225b4v3c69c05n36qm1"; depends=[GlobalOptions rjson]; }; GhcnDaily = derive { name="GhcnDaily"; version="1.5"; sha256="1gln1giid5n5b9mxidh90l8ahvcgx968zak2lxr2f9c32pnrpmnp"; depends=[abind ncdf R_methodsS3 R_oo R_utils]; }; +GiANT = derive { name="GiANT"; version="1.1"; sha256="1918fncz7qgdc9qka6fv841ml4wzkg7nx6fwlz920x2a0zi494zj"; depends=[]; }; GibbsACOV = derive { name="GibbsACOV"; version="1.1"; sha256="1ikcdsf72sn1zgk527zmxw3zjhx0yvkal6dv001cgkv202842kll"; depends=[MASS]; }; GillespieSSA = derive { name="GillespieSSA"; version="0.5-4"; sha256="0bs16g8vm9yrv74g94lj8fdfmf1rjj0f04lcnaya7gyak3jhk36q"; depends=[]; }; Giza = derive { name="Giza"; version="1.0"; sha256="13nkm8mk1v7s85kmp6psvnr1v97vi0gid8rsqyq3x6046pyl5z6v"; depends=[lattice reshape]; }; GlobalDeviance = derive { name="GlobalDeviance"; version="0.4"; sha256="0s318arq2kmn8fh0rd5hd1h9wmadr9q8yw8ramsjzvdc41bxqq1a"; depends=[snowfall]; }; GlobalFit = derive { name="GlobalFit"; version="1.0"; sha256="0cx4jpr5yhjdqbvnswqjwx7542mnmk73dy99klwg8bsz0c36ii5k"; depends=[sybil]; }; -GlobalOptions = derive { name="GlobalOptions"; version="0.0.7"; sha256="1vg948xh0ndwkspbf5qb00b28fy9ygda55m5fq8bspq9d2y3c0pc"; depends=[]; }; +GlobalOptions = derive { name="GlobalOptions"; version="0.0.8"; sha256="1kj88y1rqq4hd9a5l9aiasj3zhs8bf8b5l9xh59bfas66jwkrlj9"; depends=[]; }; Gmisc = derive { name="Gmisc"; version="1.1"; sha256="1dcnnsjxap50zfx984rxgksjcvqgbb9zxxd03186h4669slh1d0d"; depends=[abind forestplot Hmisc htmlTable knitr lattice magrittr Rcpp]; }; GoFKernel = derive { name="GoFKernel"; version="2.0-6"; sha256="11x9xvgrb7si2y6s2cgxgk01j0laizjqddbqmmj37ylmnh0539mw"; depends=[KernSmooth]; }; +Grace = derive { name="Grace"; version="0.1"; sha256="16bzvfg1gaa20kxirfy95fv8bwm7jq4sm2pky1y6nh7h1bkrgkjf"; depends=[glmnet scalreg]; }; GrammR = derive { name="GrammR"; version="1.0.1"; sha256="1dhq4srzxbdbym89dy4gh0c4jjfkljxdnriv4v0yh9g688my1gvn"; depends=[ape cluster GUniFrac gWidgets gWidgetsRGtk2 MASS rgl RGtk2]; }; GraphPCA = derive { name="GraphPCA"; version="1.0"; sha256="17ipcp7nh47lfs9jy1aybpz4r172zj5yyrdrgmd6wa7hax8yv8gg"; depends=[FactoMineR ggplot2 scales scatterplot3d]; }; GrapheR = derive { name="GrapheR"; version="1.9-84"; sha256="1wwks2a4vzhj1rcspizp1vadl6kvrqr8s4zd6pghj02nd266znk9"; depends=[]; }; @@ -821,6 +850,7 @@ GrassmannOptim = derive { name="GrassmannOptim"; version="2.0"; sha256="05r5zg4k Grid2Polygons = derive { name="Grid2Polygons"; version="0.1-5"; sha256="18hgyx8a75allldsc2ih5i1p7ajkwj2x020cfd2hp18zrc4qyp5n"; depends=[rgeos sp]; }; GriegSmith = derive { name="GriegSmith"; version="1.0"; sha256="1a7gnaig1wvxpph7d8c37kx51dznzk0457fzf7alw95iwpyb4z7j"; depends=[spatstat]; }; GroupSeq = derive { name="GroupSeq"; version="1.3.3"; sha256="0abb18w9jylb1nf6yc6xic6b01f8zfxsm8hsmxk4whivn17ckfp9"; depends=[]; }; +GsymPoint = derive { name="GsymPoint"; version="1.0"; sha256="0wcscyrkxl1sxhzgm35x2zh94lmnhvj16x77k9vhscc7j8as5d90"; depends=[Rsolnp truncnorm]; }; GuardianR = derive { name="GuardianR"; version="0.5"; sha256="0m5arxz4ih84zg8sf2wy2kg38adraa098gb52vwz93dzdm1dhslw"; depends=[RCurl RJSONIO]; }; Guerry = derive { name="Guerry"; version="1.6-1"; sha256="1hpp49w2kd1npsd709cwg125pw6mrqxfv2nn3lcs1mg2r49ki2bl"; depends=[]; }; GxM = derive { name="GxM"; version="1.1"; sha256="02rv8qb46ylk22iqn9cgh63vkyrg9a8nr1d0d3j5hqhi0wyhc41r"; depends=[minqa nlme Rcpp]; }; @@ -830,12 +860,12 @@ HAPim = derive { name="HAPim"; version="1.3"; sha256="03qy0pxazv3gdq3fck7171ixil HBSTM = derive { name="HBSTM"; version="1.0.1"; sha256="0bx7dxcfj46k4kqpqb39w4qkm4hvr1ka8d8rws445vkyl31kr0q6"; depends=[fBasics maps MASS]; }; HBglm = derive { name="HBglm"; version="0.1"; sha256="1sral7lh5qw5mn31n8459pk52frgw1bjq0z5ckpsnbc4qf3xxcjn"; depends=[bayesm Formula MfUSampler sns]; }; HDMD = derive { name="HDMD"; version="1.2"; sha256="0na0z08fdf47ghfl2r3fp9qg5pi99kvp7liymwxym2wglkwl4chq"; depends=[MASS psych]; }; -HDPenReg = derive { name="HDPenReg"; version="0.91"; sha256="0q63pm39ivka64f7rhad6bv0yr1b2b3241ln8gqfnal25qw31w82"; depends=[rtkpp]; }; +HDPenReg = derive { name="HDPenReg"; version="0.92"; sha256="1kzvxcjhjbl5gz1n6jfj1vs6wbj3lvk3b3sirj7x04v0m2052lip"; depends=[Rcpp rtkpp]; }; HDclassif = derive { name="HDclassif"; version="1.3"; sha256="1b80dnaa6m4px0ijpd9yf45v8jl0b9srcmrdyar8fs7lxpc53k2l"; depends=[MASS]; }; HDtweedie = derive { name="HDtweedie"; version="1.1"; sha256="14awd7sws0464f68f5xwnv1xvr0xflvx2z2zzcfj1csvk3af0zzj"; depends=[]; }; HEAT = derive { name="HEAT"; version="1.2"; sha256="1qifqd06ifl0f5l44mkxapnkwhpm0b82yq6dhfw4f8yhb27wd0z2"; depends=[]; }; HGNChelper = derive { name="HGNChelper"; version="0.3.1"; sha256="0vidw7gdvr0i4l175ic5ya8q2x2jj0v2vc7fagzrp2mcy7fn1y6a"; depends=[]; }; -HH = derive { name="HH"; version="3.1-19"; sha256="0hm8fk0wqfhkrjm3ycpxd4i8wwm9hi8ihy45a3wayp0p6lqv4rpp"; depends=[abind colorspace gridExtra Hmisc lattice latticeExtra leaps multcomp RColorBrewer reshape2 Rmpfr shiny vcd]; }; +HH = derive { name="HH"; version="3.1-21"; sha256="1lsqw8975cjfyyhjxhwcvrpnzd6fc1pf27qdqsv5hw6d4w55prm9"; depends=[abind colorspace gridExtra Hmisc lattice latticeExtra leaps multcomp RColorBrewer reshape2 Rmpfr shiny vcd]; }; HHG = derive { name="HHG"; version="1.5.1"; sha256="111b3lqkp8z7m3g4vgmd0dcplkm4szfwa620sxy70084qad1jv4d"; depends=[]; }; HI = derive { name="HI"; version="0.4"; sha256="0i7y4zcdr6wcjy43lz9h8glzpdv0pz7livr95xb1j4p8zafykday"; depends=[]; }; HIV_LifeTables = derive { name="HIV.LifeTables"; version="0.1"; sha256="0qa5n9w5d5l1kr4827a34581q380xmpyzmmhhl300z1jwr0j94df"; depends=[]; }; @@ -843,6 +873,7 @@ HIest = derive { name="HIest"; version="2.0"; sha256="0ik55kxhzjyg6z6072iz9nfaj7 HK80 = derive { name="HK80"; version="0.0.1"; sha256="1qhknrqpspxrdxzf5kakans94db58bbhgpblvpwcyw4jrjmm0ng7"; depends=[]; }; HLMdiag = derive { name="HLMdiag"; version="0.3.0"; sha256="01j50dwab59467xm2fz5yfp9rn6pxf0isphsczvwmxnyvqw45qxw"; depends=[ggplot2 MASS Matrix mgcv plyr Rcpp RcppArmadillo reshape2 RLRsim]; }; HLSM = derive { name="HLSM"; version="0.4"; sha256="115215fiaib6ndvzb3gn80l636ddxp0dxrnph8pnh16b3b6q2jnk"; depends=[coda MASS]; }; +HMDHFDplus = derive { name="HMDHFDplus"; version="1.1.8"; sha256="15z0war5isw9xnln7py3di8f45pwvdw6x6wljl18fcxpmanmlfcf"; depends=[RCurl XML]; }; HMM = derive { name="HMM"; version="1.0"; sha256="0z0hcqfixx1l2a6d3lpy5hmh0n4gjgs0jnck441akpp3vh37glzw"; depends=[]; }; HMMCont = derive { name="HMMCont"; version="1.0"; sha256="1drni4f72x83sprn65wnhw0pv1q8lfkgmxdr9h4rwv1accril85x"; depends=[]; }; HMMpa = derive { name="HMMpa"; version="1.0"; sha256="14r2axg42by49qm6avgv7g3xnc29bxlrni5fhc5vdz0wygkcrqhn"; depends=[]; }; @@ -850,6 +881,7 @@ HMP = derive { name="HMP"; version="1.3.1"; sha256="1r39mq8j071khza37ck7w4kvk1di HMPTrees = derive { name="HMPTrees"; version="1.2"; sha256="0agp8w7rzr1byj01di89r3qy1vb9inb2zgys78mg8jnk7axi925l"; depends=[ape]; }; HMR = derive { name="HMR"; version="0.4.1"; sha256="1acaph5q6vgi4c7liv7xsc3crhp23nib5q44aszxhramky0gvaqr"; depends=[]; }; HPbayes = derive { name="HPbayes"; version="0.1"; sha256="1kpqnv7ymf95sgb0ik7npc4qfkzc1zb483vwnjpba4f42jhf508y"; depends=[boot corpcor MASS mvtnorm numDeriv]; }; +HRM = derive { name="HRM"; version="0.1"; sha256="12pjsy9hx0sz42czfwvsla6pyp85as4pf2hhvbh0yp07wwfs2f3i"; depends=[MASS matrixcalc]; }; HSAUR = derive { name="HSAUR"; version="1.3-7"; sha256="16qmsyin8b7x9q3xdx74kw6db6zjinhxprp6pfnl6ddwxhz3jzzf"; depends=[]; }; HSAUR2 = derive { name="HSAUR2"; version="1.1-14"; sha256="0psykccxyqigkfzrszy7x3qhdw02kppzgz0bqr21q8zh51jb2y3v"; depends=[]; }; HSAUR3 = derive { name="HSAUR3"; version="1.0-5"; sha256="0hjlkmxp1yhwkfcbx16nda96ysqddjrcvl4z52w2ab84prqn6196"; depends=[]; }; @@ -861,7 +893,6 @@ HUM = derive { name="HUM"; version="1.0"; sha256="1bq74l88jvscmq9ihv5wn06w2wng07 HW_pval = derive { name="HW.pval"; version="1.0"; sha256="14nmyqw2d9cmn64789yc54fmiqanh6n1dizp7vj94h7b0jwq63yy"; depends=[]; }; HWEBayes = derive { name="HWEBayes"; version="1.4"; sha256="1rbffx6pn031a278ps9aqxcaq8yi73s5kf60za143ysbfxv9dphw"; depends=[MCMCpack mvtnorm]; }; HWEintrinsic = derive { name="HWEintrinsic"; version="1.2.2"; sha256="035r5bi7m66g351cmrfmf4cj5qqm4fn5pgy3lzsp3gyp2dv0rkg5"; depends=[]; }; -HWxtest = derive { name="HWxtest"; version="1.0.5"; sha256="01pvi87g5sfglbdv38ik9f47fah3gs7d75d6kgn5xkjb6b2af9d7"; depends=[]; }; HadoopStreaming = derive { name="HadoopStreaming"; version="0.2"; sha256="1l9msaizjvnsj1jrpghj4g057qifdgg6vbqhfxhn1fiqdqi2056q"; depends=[getopt]; }; HandTill2001 = derive { name="HandTill2001"; version="0.2-10"; sha256="02y18dwz06wba4a3d247ib2csgjpw6i67fh5np2fla00qw0f8qc9"; depends=[]; }; Hankel = derive { name="Hankel"; version="0.0-1"; sha256="0g3b0ji8hw29k0wxxvlnbcm0z91p4vbajbrhm6cqbccjq85lg4si"; depends=[]; }; @@ -872,7 +903,7 @@ HardyWeinberg = derive { name="HardyWeinberg"; version="1.5.5"; sha256="1kz12301 HarmonicRegression = derive { name="HarmonicRegression"; version="1.0"; sha256="0inz3l610wl0ibqjyrhfbmwmcfzcmcfhixai4lpkbfsyx93z2i4d"; depends=[]; }; Harvest_Tree = derive { name="Harvest.Tree"; version="1.1"; sha256="021zmppy7p2iakaxirfjdb5jzakg1ijma9d25ly2ni0nx0p1mh6z"; depends=[rpart]; }; HelpersMG = derive { name="HelpersMG"; version="1.2"; sha256="1a9b7j53a8xfxc5dmm6m5f0ac2mir8yzkhg0fgah4gvbivaaz6nb"; depends=[coda]; }; -HiClimR = derive { name="HiClimR"; version="1.2.2"; sha256="11qx0ych889vccgbh0ckx5hpmpmnbghi4h8lcawiqk8lzxhv03ld"; depends=[]; }; +HiClimR = derive { name="HiClimR"; version="1.2.3"; sha256="1yv01pyfmgq306f3yravwf6sm79m0m93gpya95k85rxqdjl3c2hx"; depends=[]; }; HiCseg = derive { name="HiCseg"; version="1.1"; sha256="19581k3g71wrznyqrp4hmspqyzcbcfbc48xgjlq13zmqii45hcn6"; depends=[]; }; HiDimDA = derive { name="HiDimDA"; version="0.2-3"; sha256="0pk7hf8cnwv22p5cbpsh5wd94i1an87ddv80qycgypx4wi0v57hh"; depends=[]; }; HiDimMaxStable = derive { name="HiDimMaxStable"; version="0.1.1"; sha256="0gscdjm48yyf8h3bn6xjbjlfc1hwbbh5j6v64c0z3d04h9q35c24"; depends=[copula maxLik mnormpow mnormt partitions VGAM]; }; @@ -885,7 +916,7 @@ HistDAWass = derive { name="HistDAWass"; version="0.1.3"; sha256="09zg7yrw0zdgy7 HistData = derive { name="HistData"; version="0.7-5"; sha256="17s64hfs7r77p0wjzpbgz9wp3gjzbly2d0v784f9m2bka8gj6xhr"; depends=[]; }; HistogramTools = derive { name="HistogramTools"; version="0.3.2"; sha256="1wkv6ypn006d8j6bpbhc1knw0bky4y8r7jp87482yd19q5ljsgv0"; depends=[ash Hmisc stringr]; }; HiveR = derive { name="HiveR"; version="0.2.44"; sha256="1ckbgn4vmv35bssbjrgvqhsx7ihm40ibpnxqwwsw6bv7g6ppx3ch"; depends=[jpeg plyr png RColorBrewer]; }; -Hmisc = derive { name="Hmisc"; version="3.16-0"; sha256="03d372bld4mikyrvmfw00ljiz6jf7szkmhrlgxs5vqk3v81kkp2f"; depends=[acepack cluster foreign Formula ggplot2 gridExtra gtable lattice latticeExtra nnet proto rpart scales survival]; }; +Hmisc = derive { name="Hmisc"; version="3.17-0"; sha256="0n3my81ppjy1wvqmy8pyafh0vglsgy2kwqs4iadj1y8xr5mibrlw"; depends=[acepack cluster foreign Formula ggplot2 gridExtra gtable lattice latticeExtra nnet proto rpart scales survival]; }; Holidays = derive { name="Holidays"; version="1.0-6"; sha256="031vddjf7s3pirv041y2mw694db63gjajlbczmmya8b1zp2f3vzk"; depends=[TimeWarp]; }; HomoPolymer = derive { name="HomoPolymer"; version="1.0"; sha256="1bxc33dx9y9rr9aii4vn9d1j9v5pd4c0xayfdldz8d9m2010xr4a"; depends=[deSolve MenuCollection RGtk2]; }; HotDeckImputation = derive { name="HotDeckImputation"; version="1.0.0"; sha256="0zb02wcpq09lr7lr4wcgrbw9x7jcvhi34g7f4s6h88zz7xg9daw5"; depends=[Rglpk]; }; @@ -895,7 +926,7 @@ HybridMC = derive { name="HybridMC"; version="0.2"; sha256="1wgzfyk0scwq9s2sdmc9 HydeNet = derive { name="HydeNet"; version="0.9.0"; sha256="1bb238yv1c93gdlnwjly9sncx9227n4a2qibxkdkqhprwsr241h3"; depends=[broom DiagrammeR dplyr graph gRbase magrittr nnet plyr rjags stringr]; }; HydroMe = derive { name="HydroMe"; version="2.0"; sha256="1a1d3lay94mzwk8n22l650h3p133npdf4aj63zgrdw4760p54rqf"; depends=[minpack_lm nlme]; }; HyperbolicDist = derive { name="HyperbolicDist"; version="0.6-2"; sha256="1wgqbx9ascyk6gw1dmvfz6hljvbh49gb9shr9qgf22qbq83waiva"; depends=[]; }; -IASD = derive { name="IASD"; version="1.0.7"; sha256="0a25sd82fxnmz3f4iaxhc69cdfb7xmh7wi79wv11sbw9cv2pl7kr"; depends=[]; }; +IASD = derive { name="IASD"; version="1.1"; sha256="1slhd42k639mbyxccl7n69p7ng2qx6pqag8wz3kdwn479spkavzn"; depends=[]; }; IAT = derive { name="IAT"; version="0.2"; sha256="0byivq2298sjvpsz5z1w7r31h6z2jqpip40z8r2alygbgwwa48pd"; depends=[data_table ggplot2]; }; IATscores = derive { name="IATscores"; version="0.1-2"; sha256="0grl5m4ccwaxvhg1bziy3vv5jffkvr24z268ws5m4ia20haif0dm"; depends=[dplyr nem qgraph reshape2 stringr]; }; IBDLabels = derive { name="IBDLabels"; version="1.1"; sha256="1m9fd058yjxva6hin7i72i2nl285wfm0jkdn5xcng27yqlijyrm9"; depends=[]; }; @@ -906,12 +937,13 @@ IBrokers = derive { name="IBrokers"; version="0.9-12"; sha256="0mhh4kgwrncrcysvn IC2 = derive { name="IC2"; version="1.0-1"; sha256="03jjb62msxjxdg9l3zd1ns0d2w37hkxy5pnjgaywxw3vfk4zwfj9"; depends=[]; }; ICAFF = derive { name="ICAFF"; version="1.0.1"; sha256="0zazx4nv81s75appg10aayks04mx6m5n9yf5hqrbxh3yj68vzxfy"; depends=[]; }; ICC = derive { name="ICC"; version="2.3.0"; sha256="0y8zh9715cp9bglxpygqwgigrarq37sj845lk1xl0ydwinl0a6kk"; depends=[]; }; +ICC_Sample_Size = derive { name="ICC.Sample.Size"; version="1.0"; sha256="1w6v1jp8bfvf6c49ikswkc5527gdx5cyqnw95x00pgmm6riwlsp9"; depends=[]; }; ICE = derive { name="ICE"; version="0.69"; sha256="04p8lakaha28mdh965w0ppyxfrz5ssi1n9xifvsbn3ihdra67rip"; depends=[KernSmooth]; }; ICEbox = derive { name="ICEbox"; version="1.0"; sha256="1m3p0b93ksrcsp45m4gszcz01cwbfpj4ldar6l0q3c9lmyqsznx8"; depends=[sfsmisc]; }; ICEinfer = derive { name="ICEinfer"; version="1.0-1"; sha256="0gjgr1r33w6d5ra0njh15lj46lw6v751yl8iqrdf4a5pazs7w3lm"; depends=[lattice]; }; ICGE = derive { name="ICGE"; version="0.3"; sha256="0xin7zml1nbygyi08hhg3wwr2jr1zcsvrlgia89zp4xanxlzgaqa"; depends=[cluster MASS]; }; -ICS = derive { name="ICS"; version="1.2-4"; sha256="1sfm9ymrrl72jzg8gsdw6v4q20i4s2w4syyr7brlvan136khpqyn"; depends=[mvtnorm survey]; }; -ICSNP = derive { name="ICSNP"; version="1.0-9"; sha256="0kisk7wk0zjsr47hgrmz5c8f2ljsl7x4549a1rwzsfkjz8901qka"; depends=[ICS mvtnorm]; }; +ICS = derive { name="ICS"; version="1.2-5"; sha256="0q69rhb8an200yi564jzqbfb8b83l6xddqxhk8kw4g3y96jp82qx"; depends=[mvtnorm survey]; }; +ICSNP = derive { name="ICSNP"; version="1.1-0"; sha256="1g7n8jlilg36hm989s5x18kf8jqn5wy98xi9jmnqkqpds4ff217y"; depends=[ICS mvtnorm]; }; ICsurv = derive { name="ICsurv"; version="1.0"; sha256="1mbndpy3x5731c9y955wscy76jrxlgv33bf6ldqp65cwyvdgxl86"; depends=[MASS matrixcalc]; }; IDPSurvival = derive { name="IDPSurvival"; version="1.0"; sha256="1v1w0i74b065b4qc302xbdl5df7qx9z8jmbc9cn46fqm1hh2b6d7"; depends=[gtools Rsolnp survival]; }; IDPmisc = derive { name="IDPmisc"; version="1.1.17"; sha256="0nbwdyg9javjjfvljwbp2jl0c6414c11zb2pirmm5pmimaq9vv0q"; depends=[lattice]; }; @@ -923,9 +955,9 @@ INLABMA = derive { name="INLABMA"; version="0.1-6"; sha256="0rij3y89yyj25xz8r9n8 IPMpack = derive { name="IPMpack"; version="2.1"; sha256="08b79g5a9maxnxladvc2x2dgcmm427i8p6hhgda3mw2h5qmch2q3"; depends=[MASS Matrix nlme]; }; IPSUR = derive { name="IPSUR"; version="1.5"; sha256="0brh3dx7m1rilvr1ig6vbi7p13bfbblgvs8fc114f08d90fczwnq"; depends=[]; }; IQCC = derive { name="IQCC"; version="0.6"; sha256="0gsnkdl4cfxzq6pm9g4i1g23mxg108j3is4x69id1xn2plf92m04"; depends=[MASS micEcon miscTools qcc]; }; -IRISMustangMetrics = derive { name="IRISMustangMetrics"; version="1.0.0"; sha256="00s3jg1fsicqbmh52ajhacd7r11pnjpgv7qj2n4mdpxfvbndr1v3"; depends=[IRISSeismic pracma RCurl seismicRoll signal stringr XML]; }; +IRISMustangMetrics = derive { name="IRISMustangMetrics"; version="1.0.1"; sha256="08jmkncz5nyjrcb07fgnv2siws6ihd1nzssq99bv5ab24v3krr0w"; depends=[IRISSeismic pracma RCurl seismicRoll signal stringr XML]; }; IRISSeismic = derive { name="IRISSeismic"; version="1.0.5"; sha256="1mgb774bmy20c4dzisb7ij4xqz9jhajn384nb7sfcnz5khxznxc4"; depends=[pracma RCurl seismicRoll signal stringr XML]; }; -IRTShiny = derive { name="IRTShiny"; version="1.0"; sha256="1gjfqjqk7izl23b96g758dn6pb784ayb8yjjlryyrwga6mgsqdik"; depends=[beeswarm CTT ltm shiny shinyAce]; }; +IRTShiny = derive { name="IRTShiny"; version="1.1"; sha256="0izw7mk78b9ab2p6jb5vph80cjbaq0m6xvyw8xlzypa3j3ns17sv"; depends=[beeswarm CTT ltm psych shiny shinyAce]; }; ISBF = derive { name="ISBF"; version="0.2.1"; sha256="12mk4d0m5rk4m5bskkkng5j6a9dzh8l1d74wh8lnamq7kf9ai9if"; depends=[]; }; ISDA_R = derive { name="ISDA.R"; version="1.0"; sha256="0w6p2iy6s7fy8pw2cf4b5zhqcgjjwd5bkax1aqflaaj4ppmfx64v"; depends=[scatterplot3d]; }; ISLR = derive { name="ISLR"; version="1.0"; sha256="0gmhvsivhpq3x8a240lgcbv1qzdgf6wxms4svak1501clc87xc6x"; depends=[]; }; @@ -934,23 +966,28 @@ ISOpureR = derive { name="ISOpureR"; version="1.0.18"; sha256="1hh23d4dzhkqli684 ISOweek = derive { name="ISOweek"; version="0.6-2"; sha256="1f1h8pgjaa14cvaj8ldl87b4vslxwvyfj46m0hkylwp73sv3g2mm"; depends=[stringr]; }; ISwR = derive { name="ISwR"; version="2.0-7"; sha256="1rd1wrvl8wlc8ya5lndk74gnfvj9wp29z8617v3kbf32gqhby7ng"; depends=[]; }; IUPS = derive { name="IUPS"; version="1.0"; sha256="01pv03ink668fi2vxqybli0kgva13gxhqfdxkwz6qk5rnpzwvf5w"; depends=[boot Matching R2jags]; }; +IalsaSynthesis = derive { name="IalsaSynthesis"; version="0.1.6"; sha256="15iwywvzhgiyigl8f488b7ra89rz0a7ymfsdgdlqfls3fmld7b4a"; depends=[testit]; }; Iboot = derive { name="Iboot"; version="0.1-1"; sha256="1fahh86kgv2axj2qg14n87v888sc0kb567s6zr3fh5zv361phwkq"; depends=[]; }; IgorR = derive { name="IgorR"; version="0.8"; sha256="1khm7mbs497ybaw428ziwlxxygg1vcn5kx77w2cwm4mg8w95f4na"; depends=[bitops]; }; Imap = derive { name="Imap"; version="1.32"; sha256="0b4w0mw9ljw6zxwvi0qzb08yq9n169lzgkdcwizrd07x9k9xjxs7"; depends=[]; }; ImpactIV = derive { name="ImpactIV"; version="1.0"; sha256="1bb6gw1h15hscr71hy779k2x5ywzx63ylim3hby02d7fnnj46p58"; depends=[nnet]; }; +ImportExport = derive { name="ImportExport"; version="1.1"; sha256="12i9mwspk59zicn1mn21xrs90c8dqxm1q7alqbzscgkpf3xbjrnn"; depends=[chron gdata haven Hmisc RODBC xlsx]; }; InPosition = derive { name="InPosition"; version="0.12.7"; sha256="1f7xb2kxikmja4cq7s1aiwhdq27zc6hghjbliqqpm8ci8860lb8p"; depends=[ExPosition prettyGraphs]; }; IndependenceTests = derive { name="IndependenceTests"; version="0.2"; sha256="04qfh2mg9xkfnvp6k7w1ip4rb663p3pzww9lyprcjvr3hcac7gqa"; depends=[xtable]; }; InfDim = derive { name="InfDim"; version="1.0"; sha256="0rh3ch0m015xjkxy08vf9pc6q7azjc6sgicd2j6cwh611pqq39wq"; depends=[]; }; InferenceSMR = derive { name="InferenceSMR"; version="1.0"; sha256="13d3v8kyk6br33659jgql6j1nqmnd8zszqrwfw2x3khkiqzgdmhk"; depends=[survival]; }; -InformationValue = derive { name="InformationValue"; version="1.1.0"; sha256="0lnwvxjr1q30aqrcmcrwnliwix8195ax2p814zi13x2rbw59lqx2"; depends=[ggplot2]; }; +Information = derive { name="Information"; version="0.0.3"; sha256="0rgprmmiimwbxb8j4mk3ib37sh1zdnvz90gb33228l7rfkcg3yxj"; depends=[data_table doParallel foreach ggplot2 iterators plyr]; }; +InformationValue = derive { name="InformationValue"; version="1.1.1"; sha256="08r2fnq1vzyhxnq06b2qmcmgyyfri0y2b5h2fngifx21l0cqcdd9"; depends=[ggplot2]; }; IntLik = derive { name="IntLik"; version="1.0"; sha256="13ww5bsbf1vnpaip0w53rw99a8hxzziibj7j66cm31jmi8l6fznf"; depends=[maxLik]; }; -InterVA4 = derive { name="InterVA4"; version="1.5"; sha256="0w2klq9dara941d4xz85qrq8dcp7vpc6rrz2k9ry01rsnpdzzybh"; depends=[]; }; +IntegratedJM = derive { name="IntegratedJM"; version="1.1"; sha256="0lnxzy4pl4lknxhyikfk7mcajjhqbh0x01crr8y3pikjyj211hpv"; depends=[Biobase ggplot2 nlme]; }; +InterSIM = derive { name="InterSIM"; version="1.0"; sha256="0i0dxa8bxv50sp1r0hb4ydsgyx7s7rdc7lykhaxryldw14pqrcjm"; depends=[MASS NMF]; }; +InterVA4 = derive { name="InterVA4"; version="1.6"; sha256="0gapabbqsh01iya27kjs1zxk7rxvciw1z478s9g6av35vv0b6z0z"; depends=[]; }; Interact = derive { name="Interact"; version="1.1"; sha256="1g9zhafdpr7j410bi8p03d8x9f8m3n329x8v01yk15f65fp7pl1d"; depends=[]; }; InteractiveIGraph = derive { name="InteractiveIGraph"; version="1.0.6.1"; sha256="0srxlp77xqq0vw2phfv7zcnqswi2i5nzkpqbpa5limqx00jd12zy"; depends=[igraph]; }; Interatrix = derive { name="Interatrix"; version="1.1.1"; sha256="1ljxgiia0y8wv1rlm5brd0yvs1r7r5wyrs6nykmwrwwya4k34mpz"; depends=[MASS tkrplot]; }; Interpol = derive { name="Interpol"; version="1.3.1"; sha256="1598lnnrcxihxysdljphqxig15fd8z7linw9byjmqypwcpk6r5jn"; depends=[]; }; Interpol_T = derive { name="Interpol.T"; version="2.1.1"; sha256="1fbsl1ypkc65y6c0p32gpi2a2aal8jg02mclz7ri57hf4c1k09gz"; depends=[chron date]; }; -InvariantCausalPrediction = derive { name="InvariantCausalPrediction"; version="0.3-3"; sha256="00sxfgnzqikp92haqnqi4asq904dcsqqnxmz23lx7508qbfx3vhn"; depends=[glmnet mboost]; }; +InvariantCausalPrediction = derive { name="InvariantCausalPrediction"; version="0.3-4"; sha256="1nj3q61l6yrr2j93gma3cvvbnsrgfma7qxyij8n8bim4jq578x0i"; depends=[glmnet mboost]; }; InventorymodelPackage = derive { name="InventorymodelPackage"; version="1.0.2"; sha256="1w35idsagl9v93ci3qmal3xbf11sy6h1k7xnv25c59ivfnpjpkva"; depends=[e1071]; }; IsingFit = derive { name="IsingFit"; version="0.3.0"; sha256="0imgj3g6sankzmycjkzzz3bgai3jjycgsinhs5zy9k4vgqjg27d6"; depends=[glmnet Matrix qgraph]; }; IsingSampler = derive { name="IsingSampler"; version="0.2"; sha256="16vwb5pcqjvvsk9wsgj10mzhgh72iz1q6n8nmkva6y1l7xv54c8w"; depends=[magrittr nnet plyr Rcpp]; }; @@ -958,26 +995,30 @@ Iso = derive { name="Iso"; version="0.0-17"; sha256="0lljc99sdzdqj6d56qbsggibr6p IsoCI = derive { name="IsoCI"; version="1.1"; sha256="0r7ksfic6p2v95c953s4gbzzclk4ldxysm8szb8xba1w0nx2izil"; depends=[KernSmooth]; }; IsoGene = derive { name="IsoGene"; version="1.0-24"; sha256="0flm0mszankvl3aizwsazyhvz2xkr4gfqiqywpc0r1swqj19610r"; depends=[affy Biobase ff Iso xtable]; }; IsotopeR = derive { name="IsotopeR"; version="0.4.7"; sha256="18gwmh4nprj4z0ar1w8npj2ymxihw5ydwa33g25mimjk8y2cs0x5"; depends=[coda fgui runjags]; }; -JADE = derive { name="JADE"; version="1.9-92"; sha256="0ki3jpz4npjikn3jjb7ppiyx0flhxx3p8aghjxlm3klhkm0k6ix4"; depends=[clue]; }; -JAGUAR = derive { name="JAGUAR"; version="2.0"; sha256="1c9pyg9jph95161g6zz0jlv5hlyvr9z960by7x3pv7plfkppjy7m"; depends=[doParallel lme4 plyr Rcpp]; }; +JADE = derive { name="JADE"; version="1.9-93"; sha256="0ryj7yiwgrz3cq8q5x6m2srlxxbm26gzs191gs4z9sbjk91vgcnp"; depends=[clue]; }; +JAGUAR = derive { name="JAGUAR"; version="3.0.0"; sha256="0y4h2d4aw546ldwxs7rhpyb7hsby75h53b9vbkqz49105b8zai3j"; depends=[lme4 plyr Rcpp RcppArmadillo RcppProgress reshape2]; }; JASPAR = derive { name="JASPAR"; version="0.0.1"; sha256="0wiyn7cz45hwy9zkvacx28zdrg78q6715cg4r9xgcb39q25s0dcy"; depends=[gtools]; }; JBTools = derive { name="JBTools"; version="0.7.2.9"; sha256="0bynqn3daqgmi3l9asy34mfwyfjkn35k465dfqqi3xwx6cbzlg5k"; depends=[colorspace foreach gplots plotrix]; }; +JGEE = derive { name="JGEE"; version="1.0"; sha256="121x3k1rc7swkmrj8cznzcg4w4zrl36ywcf5cdahlmxfc99kfhwv"; depends=[gee MASS]; }; JGL = derive { name="JGL"; version="2.3"; sha256="1351iq547ln06nklrgx192dqlfnn03hkwj3hrliqzfbmsls098qc"; depends=[igraph]; }; JGR = derive { name="JGR"; version="1.7-16"; sha256="0iv659mjsv7apzpzvmq23w514h6yq50hi70ym7jrv948qrzh64pg"; depends=[iplots JavaGD rJava]; }; JM = derive { name="JM"; version="1.4-0"; sha256="0s23cfr3hinsg5g786ya9yhff6ylgnki6y7sgjf9pgr8fjfcq53s"; depends=[MASS nlme survival]; }; JMbayes = derive { name="JMbayes"; version="0.7-2"; sha256="087brgljj158my1xc0vmbjkh4hqr0509zf8j4fq1b9lj52z7rdl5"; depends=[MASS nlme survival]; }; JMdesign = derive { name="JMdesign"; version="1.1"; sha256="0w5nzhp82g0k7j5704fif16sf95rpckd76jjz9fbd71pp2d80vlh"; depends=[]; }; JOP = derive { name="JOP"; version="3.6"; sha256="1kpb1dy2vm4jgzd3h0qgdw53nfp2qi74hgq5l5inxx4aayncclk7"; depends=[dglm Rsolnp]; }; +JPEN = derive { name="JPEN"; version="1.0"; sha256="12rvp5bmlkwyr1gg336k655hp09gym0d2wwry70c1rz30x1sf2zs"; depends=[mvtnorm]; }; JPSurv = derive { name="JPSurv"; version="1.0.1"; sha256="11hfji0nyfmw1d7y2cijpp7ivlv5s9k8g771kmgwy14wflkyf7g2"; depends=[]; }; +JacobiEigen = derive { name="JacobiEigen"; version="0.1"; sha256="0q1kjxkr393vswy5ppkpfkqzvba7xxp7r8s23q3wgcc6aknf6f8x"; depends=[Rcpp]; }; JavaGD = derive { name="JavaGD"; version="0.6-1"; sha256="13n6xzbbjgd0bpwv2xgm3dlscg87wh32q6fcq50kk6byp6yv05sc"; depends=[]; }; Jmisc = derive { name="Jmisc"; version="0.3.1"; sha256="1szn29dng54l2xmrm6pg3d5rmwdc1ks23vsnsmplnr5rx7yj002s"; depends=[]; }; -JoSAE = derive { name="JoSAE"; version="0.2.2"; sha256="1ag4qg9cfcg8i2xz79bza2qlw3azw33h7k2ip5nlfkfpd33l9w05"; depends=[nlme]; }; +JoSAE = derive { name="JoSAE"; version="0.2.3"; sha256="0b1jwplds5b7z15v6bvqj1rbn7zxpgvh2ykhqplxzv4mlaw6i0li"; depends=[nlme]; }; Johnson = derive { name="Johnson"; version="1.4"; sha256="12ajcfz5mwxvimv8nq683a2x3590gz0gnyviviyzf5x066a4q0lj"; depends=[]; }; JohnsonDistribution = derive { name="JohnsonDistribution"; version="0.24"; sha256="00211pa2wn4bsfj6wfl9q9g123cp8iz3kxc17pw9q65j9an4sr0m"; depends=[]; }; JointRegBC = derive { name="JointRegBC"; version="0.1.1"; sha256="0w7ygs3pvlqkkb2x20kv20kda3gz7cn6zgrkg30nhjxp318d76ab"; depends=[MASS nlme survival]; }; Julia = derive { name="Julia"; version="1.1"; sha256="0i1n150d89pkds7qyr0xycz6h07zikb2y07d5fcpaqs4446a8prg"; depends=[]; }; KANT = derive { name="KANT"; version="2.0"; sha256="169j72pmdkcj6hv8qgmc02aps0ppvvl1vnr1hzrb1gsf7zj7bs3y"; depends=[affy Biobase]; }; KATforDCEMRI = derive { name="KATforDCEMRI"; version="0.740"; sha256="1k8fihd9m26k14rvc5d5x0d9xc3mh8d49hs64p55np1acqfhg2sy"; depends=[locfit matlab R_matlab]; }; +KERE = derive { name="KERE"; version="1.0.0"; sha256="1b16cb3ihcsp9jffmd45sd7ia4pibikmj62ad344wmq22q4fpliy"; depends=[]; }; KFAS = derive { name="KFAS"; version="1.1.2"; sha256="18mv0azijcfl4gzalvrh0cavd6svjkr8mdnl9jl6bppvann4dri3"; depends=[]; }; KFKSDS = derive { name="KFKSDS"; version="1.6"; sha256="1g11f936p554bfxlm4slxhfxki5vqkks1mrbqw4w83v2rcb50f8d"; depends=[]; }; KMDA = derive { name="KMDA"; version="1.0"; sha256="0x4kjjdd59wvgg699vrj99wqg3s1qbkbskis1c34xv9b8bzcv94j"; depends=[]; }; @@ -993,6 +1034,7 @@ KernSmoothIRT = derive { name="KernSmoothIRT"; version="6.1"; sha256="1hq4sykddh Kernelheaping = derive { name="Kernelheaping"; version="1.0"; sha256="0i255s5gwlcydxpn69kz7qyvzqbr3syppkzq1sq3sfn680i3hdyq"; depends=[evmix ks MASS plyr sparr]; }; Kmisc = derive { name="Kmisc"; version="0.5.0"; sha256="0pbj3gf0bxkzczl6k4vgnxdss2wmsffqvcf73zjwvzvr8ibi5d95"; depends=[data_table knitr lattice markdown Rcpp]; }; KoNLP = derive { name="KoNLP"; version="0.76.9"; sha256="1q72irl4izb7f5bb99plpqnmpfdq4x4ymp4wm2bsyfjcxm649ya8"; depends=[hash rJava Sejong stringr tau]; }; +KoulMde = derive { name="KoulMde"; version="1.0"; sha256="0dz13j24kyvr8kxs5lyvbjxj8l4i8h4il16qjn7hdnmi39g4khr4"; depends=[]; }; Kpart = derive { name="Kpart"; version="1.1"; sha256="1cyml48i1jvwy4xzymijwraqpnssnkrd81q3m7nyjd5m2czjvihv"; depends=[leaps]; }; KrigInv = derive { name="KrigInv"; version="1.3.1"; sha256="0fcfv2vl572l8qp1ilhjai6zrw15bf1z41qm7xlfspfbj611ga7k"; depends=[DiceKriging pbivnorm randtoolbox rgenoud]; }; L1pack = derive { name="L1pack"; version="0.3"; sha256="0lhixnfb2ga830z91z51r970l5s5qpavbwcmk1pi80180n11kv4i"; depends=[]; }; @@ -1003,24 +1045,25 @@ LCFdata = derive { name="LCFdata"; version="2.0"; sha256="1x3vbr6hdviqvd6dxn1kb4 LDAvis = derive { name="LDAvis"; version="0.2"; sha256="18fbnk5qd7icn3mgwwb3ld3c9n3j1z4ydc2pg2zizkrahhqxdswi"; depends=[proxy RJSONIO]; }; LDOD = derive { name="LDOD"; version="1.0"; sha256="0mf2sy01yv57mqicrz08a17m6crigklx6fmw9zpxv7g85qw1iq4v"; depends=[Rmpfr Rsolnp]; }; LDPD = derive { name="LDPD"; version="1.1.2"; sha256="1khdx8vwlpliyjc4sxcdiywbxl8lc9f5s3457vcip1j8dv537lbm"; depends=[MASS nleqslv]; }; -LDRTools = derive { name="LDRTools"; version="0.1"; sha256="1cr0v6qsdldy89p44lhr6hisqaz99qzab32kd1srdnnwnwl1q2y4"; depends=[]; }; +LDRTools = derive { name="LDRTools"; version="0.2"; sha256="0k4j3l21n8b3nvhmfjhwhs3klw09a0dz6cl6gmi2yx7jr21ar6xc"; depends=[]; }; LDcorSV = derive { name="LDcorSV"; version="1.3.1"; sha256="0i4npl90mkj8vry6ckq8bc4ydbl44vxichgsxyn80r6k9i71yl67"; depends=[MASS]; }; LDheatmap = derive { name="LDheatmap"; version="0.99-1"; sha256="1bj42chw1xyf8yg6cfv9p4yzsggng7zy6wrw6q22559pwm6c6vr0"; depends=[genetics]; }; LDtests = derive { name="LDtests"; version="1.0"; sha256="1jwqr7zlp9hv7vw8xp80xvrwbdv796wjgr914v393wfa07j5wbd1"; depends=[]; }; LEAPFrOG = derive { name="LEAPFrOG"; version="1.0.7"; sha256="0z9ahkk4qzc45h1r806frv9cd84vvshvn5mr84gx7qdxljfkfq6h"; depends=[alabama MASS]; }; -LGS = derive { name="LGS"; version="0.91"; sha256="0rzj1shapyg7hyzsb9v81dirwihd7bz9s861l75g3yl3p4qm8sg7"; depends=[]; }; +LFDR_MLE = derive { name="LFDR.MLE"; version="1.0"; sha256="11vy6gg2x98s1y8a5ns9vcd61gw8ax1lhn4lvicdjbd1lg18nm83"; depends=[]; }; +LGRF = derive { name="LGRF"; version="1.0"; sha256="1kdx6y55aa9n6v43zfz6jk8amvvxbx79sqm1jx4ihgkpgcdglan7"; depends=[CompQuadForm geepack SKAT]; }; LICORS = derive { name="LICORS"; version="0.2.0"; sha256="0p9y21k1mj1v397jpb5g6jiw7rpzbyfwr4kv2rp3lyxyasy2ykf0"; depends=[fields FNN locfit Matrix mvtnorm RColorBrewer zoo]; }; LICurvature = derive { name="LICurvature"; version="0.1.1"; sha256="09hqar4kvksd816ya6jg349r0v6z2m2109hq6j4k1d2vchab4lni"; depends=[MASS]; }; LIHNPSD = derive { name="LIHNPSD"; version="0.2.1"; sha256="08ils29vvaq6abkgxbh028vwjw6l6h10cirbnwr65s458zvh4xqv"; depends=[BB Bolstad2 moments optimx Rmpfr sn]; }; LIM = derive { name="LIM"; version="1.4.6"; sha256="03x1gnm06bw1wrzc01110bjzd2mvjdzbc2mbrazh22jrmb32w5d8"; depends=[diagram limSolve]; }; -LINselect = derive { name="LINselect"; version="0.0-1"; sha256="1n6nsspdp1ig8v9bclyga072hxqj2hb9n1smrqia8jrma07yaydl"; depends=[]; }; +LINselect = derive { name="LINselect"; version="0.0-2"; sha256="0pkp7xc766nzg5p739zlnjd075k3zlf6zj364hmv95cqlaym9292"; depends=[elasticnet gtools MASS mvtnorm pls randomForest]; }; LIStest = derive { name="LIStest"; version="2.1"; sha256="1gk253v3f1jcr4z5ps8nrqf1n7isjhbynxsi9jq729w7h725806a"; depends=[]; }; -LLSR = derive { name="LLSR"; version="0.0.1.9425"; sha256="1s49m1sb4amap64yf7hh61nw95w00jqx2ghwryd1j1mbyp2j9br3"; depends=[digest rootSolve XLConnect]; }; +LLSR = derive { name="LLSR"; version="0.0.1.9525"; sha256="1jjy5s7rdjcj0hh7nhzhpxyy4yqx287p6r0rjck1sz29mk4h09jm"; depends=[digest rootSolve XLConnect]; }; LMERConvenienceFunctions = derive { name="LMERConvenienceFunctions"; version="2.10"; sha256="08jz0i7sv7gn3bqckphbmnx0kc6yjnfvi06iyf7pcdzjaybxhj06"; depends=[fields LCFdata lme4 Matrix mgcv rgl]; }; LMest = derive { name="LMest"; version="2.1"; sha256="1jbwbmamgxbbipzdpjmr7l9csydx55by4zd9h13lnaibdxr4xn5q"; depends=[MASS MultiLCIRT]; }; LOGICOIL = derive { name="LOGICOIL"; version="0.99.0"; sha256="1wgg7kigzzk5ghjn3hkjf1bb8d6mvjfmkwq64phri5jpxd742ps9"; depends=[nnet]; }; LOST = derive { name="LOST"; version="1.1"; sha256="19ar85dykbz0jlzbhlm3pcpffj4cizc6sj3gn93qdvpxkp64jfq9"; depends=[e1071 gdata MASS miscTools pcaMethods shapes]; }; -LPCM = derive { name="LPCM"; version="0.44-8"; sha256="14627wk5azxm3y3a0qfy4qz57nxbdcasnv7djpqhk2gxf5smq19k"; depends=[]; }; +LPCM = derive { name="LPCM"; version="0.45-0"; sha256="15gpb59556s28npdsw1r821rld7b11y1m2m97m320n9k0z4vbk3i"; depends=[]; }; LPM = derive { name="LPM"; version="2.5"; sha256="0n9h4zicqa13p40axhdyic7067ap9vw6hcg58n6af8qb1g3xdi8w"; depends=[fracdiff MASS]; }; LPS = derive { name="LPS"; version="1.0.10"; sha256="0gf3jmhfki01z8fm5xdx59gxvhgzqd10x2iwa8369iz9dvwbjk8j"; depends=[]; }; LPStimeSeries = derive { name="LPStimeSeries"; version="1.0-5"; sha256="0jmcy8076w4bzfnxaq2m3s60c1wdmywkwzfyrc19wdm8idf666wh"; depends=[RColorBrewer]; }; @@ -1037,10 +1080,11 @@ LTPDvar = derive { name="LTPDvar"; version="1.2"; sha256="0r9v5g5y9n85jdcvm7zpap LTR = derive { name="LTR"; version="1.0.0"; sha256="15g5hbrwhab80sarbjgwzvsn6c4fl18h014kz5fpzf0n1rijybik"; depends=[]; }; LVMMCOR = derive { name="LVMMCOR"; version="0.01.1"; sha256="1lq4hqcg0qkywdr4a22m1fr3m97749mm6n2jzdj9i7jrf0agc1fs"; depends=[MASS nlme]; }; LaF = derive { name="LaF"; version="0.6.2"; sha256="180xsqilpkql8my0dimsxj1kpmb3jl19l6bz8li8m63zii4xmwmp"; depends=[Rcpp]; }; -Lahman = derive { name="Lahman"; version="3.0-1"; sha256="0w7vp3vjxhigyyqmmka4bw5v4pp5z3jzmf0krq8biwzrpx5qp86x"; depends=[]; }; +Lahman = derive { name="Lahman"; version="4.0-1"; sha256="058rn595rnh2wl7qqrqd5smzzb486cn46lx2ifjc8nijm83lzhfx"; depends=[]; }; LakeMetabolizer = derive { name="LakeMetabolizer"; version="1.3.3"; sha256="06mgn5dgdw0gaw1za20cabs4bx6q5bgv0x09imxhskik76kini01"; depends=[plyr rLakeAnalyzer]; }; Lambda4 = derive { name="Lambda4"; version="3.0"; sha256="04ikkflfr0nmy1gr3gfldlh2v8mpl82k1wwnzp57d2kn75m9vbxz"; depends=[]; }; -LambertW = derive { name="LambertW"; version="0.5.1"; sha256="0mhw748nkikaq96azps7yyzkz5glibhb8rh6f748vj9lrq3wa5mn"; depends=[gsl MASS moments]; }; +LambertW = derive { name="LambertW"; version="0.6.0"; sha256="0hivwdmzalhcm4786qlrw9fq96m55j0zswx5xymgxzqpkfn9hk5q"; depends=[lamW MASS moments]; }; +Langevin = derive { name="Langevin"; version="1.0.3"; sha256="0hcfny3gfkg5jjj0mh57b2qi5hd038kl9y5mak0hb862ma7nrw0m"; depends=[Rcpp RcppArmadillo]; }; Laterality = derive { name="Laterality"; version="0.9.3"; sha256="0pl5bfbkzhgxjjzzh99s6rh4jsq0pbcgc902i0z2lmmivgs5qmd6"; depends=[ade4]; }; LatticeKrig = derive { name="LatticeKrig"; version="3.4"; sha256="0qa16sxzj40nk4kmzcb7n4xxn7bqlkx7ar66qpqvh2dvcvi1d70d"; depends=[fields spam]; }; LeLogicielR = derive { name="LeLogicielR"; version="1.2"; sha256="0h52pzrksi1mn55mnxbfi61hl7x61cnkhp450slfrk68f6kp30x6"; depends=[gdata IndependenceTests RColorBrewer xtable]; }; @@ -1048,10 +1092,13 @@ LeafAngle = derive { name="LeafAngle"; version="1.2-1"; sha256="0g3i5300f3rvjz7g LeafArea = derive { name="LeafArea"; version="0.1.1"; sha256="0k085idzs2ka8pqlmii5xcmbv7wm3syicy36gc183wycibv3ii9f"; depends=[]; }; LearnBayes = derive { name="LearnBayes"; version="2.15"; sha256="0cz2rgqy1cmdz2h1qbdvfqxmmdzmg2z1scdlxr7k385anha13ja5"; depends=[]; }; LiblineaR = derive { name="LiblineaR"; version="1.94-2"; sha256="11q3xydd4navpfcy9yx0fld8ixb6nvnkc7qxwrhvackiy810q86i"; depends=[]; }; -LifeTables = derive { name="LifeTables"; version="0.2"; sha256="1n4mqypxm0rbi77ykpr6bpzxfxvq8mm9bmfvcqz7k3ajb78cdr0d"; depends=[mclust]; }; +LifeHist = derive { name="LifeHist"; version="1.0-1"; sha256="0q6l6rva5kxl8yzqa7ni4sdj6p4c61sdsjx8zhckzxb7xlwg2hh0"; depends=[BB Hmisc optimx]; }; +LifeTables = derive { name="LifeTables"; version="1.0"; sha256="1dyivvi5cjsnbhncj3arkrndadg7v81nzdf6p6mpgqwqvwn5li8x"; depends=[mclust]; }; +LightningR = derive { name="LightningR"; version="1.0.1"; sha256="19rfgw1plhd7r4g18axffd3sj7mbszp7cpncindbgfbm6xn96w84"; depends=[httr R6 RCurl RJSONIO]; }; LinCal = derive { name="LinCal"; version="1.0"; sha256="1xr9jnna20hh78dh9wjg70jm8fhaxvdwql894kdp0y5h4pchkdph"; depends=[]; }; LinRegInteractive = derive { name="LinRegInteractive"; version="0.3-1"; sha256="0w7s3i6i2wnydh88l8lnzrh6w5zqkcwvms91iizis0mwd9af2jdl"; depends=[rpanel xtable]; }; LindenmayeR = derive { name="LindenmayeR"; version="0.1.6"; sha256="10a1m4yqr02gg5akxknwmhrlbqxnza78z8rm0ym36c4vlz8b0hyi"; depends=[stringr]; }; +LinearRegressionMDE = derive { name="LinearRegressionMDE"; version="1.0"; sha256="0nl29l10y5kpds1i4sv7jwizq61fmh5c0zpj8x64qfif4l6y4v0d"; depends=[]; }; LinearizedSVR = derive { name="LinearizedSVR"; version="1.3"; sha256="0h3xmlnd5x37r5hdhcz90z5n1hsbr2ci3m939i89p1x9644i2l5g"; depends=[expectreg kernlab LiblineaR]; }; Lmoments = derive { name="Lmoments"; version="1.1-6"; sha256="0jffnlamll5mwxrfqrb1qr8kjcn40y57kzd10kkm98vzfjcwg4y4"; depends=[]; }; LncMod = derive { name="LncMod"; version="1.1"; sha256="08001y7s93i3k3478jqfh9zsgpq6ym1xmdmldi7s76zbfr1nknvy"; depends=[pheatmap survival]; }; @@ -1064,20 +1111,22 @@ LogisticDx = derive { name="LogisticDx"; version="0.2"; sha256="0ciygvynnyajpn1g LogitNet = derive { name="LogitNet"; version="0.1-1"; sha256="08xi5rpbqkc1b3qj24blv3l0r68wcqbsbjcqxiypm75f3c2irc4i"; depends=[]; }; LogrankA = derive { name="LogrankA"; version="1.0"; sha256="005zkpzi8h03qvqlpkygrf9xv4q77klafkfxw47x04jvkhklwigb"; depends=[]; }; LoopAnalyst = derive { name="LoopAnalyst"; version="1.2-4"; sha256="02p46agsdbvw6dpgzahq9hfmy184jrkwa1hhnrcbrsmm54n3m2bx"; depends=[nlme]; }; +LotkasLaw = derive { name="LotkasLaw"; version="0.0.1.0"; sha256="11kq52yavicimp7ll7ljrs69a5fxf68ydb9md7v6b02iw5mwbmz7"; depends=[]; }; LowRankQP = derive { name="LowRankQP"; version="1.0.2"; sha256="0is7v4cy4w1g3wn4wa32iqv4awd1nwvfcb71b3yk5wj59lpm8gs3"; depends=[]; }; -Luminescence = derive { name="Luminescence"; version="0.4.4"; sha256="0b7a55aqishi6jwxlpkbakfr38brjd4c61n4mcbsg6nwg7qiz1v7"; depends=[bbmle data_table matrixStats minpack_lm raster Rcpp rgl shape XML zoo]; }; +Luminescence = derive { name="Luminescence"; version="0.4.6"; sha256="1ilgvzgk2r1jkjgqz5dnwxzv103j86asbajqy3ibqwh31aif9x8q"; depends=[assertive bbmle data_table digest matrixStats minpack_lm raster Rcpp rgl shape XML]; }; M3 = derive { name="M3"; version="0.3"; sha256="1l40alk166lshckqp72k5zmsgm7s5mgyzxlp11l64mgncjwkw2r3"; depends=[mapdata maps ncdf4 rgdal]; }; MAINT_Data = derive { name="MAINT.Data"; version="0.4"; sha256="0338q1yh7b0mbnmh3rbli8vq0fzxyx4qxx0143p615ahsf68jw1c"; depends=[]; }; -MALDIquant = derive { name="MALDIquant"; version="1.12"; sha256="1grlqplcz41xdr3wlmn246xs3vk8y6qqq0n92srv2crlr8fw2yg2"; depends=[]; }; +MALDIquant = derive { name="MALDIquant"; version="1.13"; sha256="0r4s6cyzx7jmhgflq8ddq3ys30b2f1cfwxq24rcc2pjmkvrg3hki"; depends=[]; }; MALDIquantForeign = derive { name="MALDIquantForeign"; version="0.9"; sha256="0bs6frqz462hrad16kjvbmq2s66bv3kpriav4hdz5a4klra389gl"; depends=[base64enc digest downloader MALDIquant readBrukerFlexData readMzXmlData XML]; }; MAMA = derive { name="MAMA"; version="2.2.1"; sha256="1dcyfir6jv28jzvphiqrjns3jh2zg2201iwcvjzbmddl2isk9h0i"; depends=[genefilter GeneMeta gtools MergeMaid metaArray metaMA multtest xtable]; }; -MAMS = derive { name="MAMS"; version="0.5"; sha256="0wi21d6cskf6hmlf6sygixhwr70n6qx232dc1wm36ljpk18v6rmh"; depends=[mvtnorm]; }; +MAMS = derive { name="MAMS"; version="0.6"; sha256="1qqsd4ki8ps9l0xzx3z3y3fn6r426xs463gbixhz0565g6jlzqn5"; depends=[mvtnorm]; }; MAMSE = derive { name="MAMSE"; version="0.1-3"; sha256="06q6raqbyi9zwg3wzaygqmfs3di55fh4bln3vscdw95kma4hz9km"; depends=[]; }; +MANCIE = derive { name="MANCIE"; version="1.2"; sha256="0qxjy4f3qxvaa64qf4v7jp3ih5b6jxy2j105hdxm0p3642fgx9f4"; depends=[]; }; MAPA = derive { name="MAPA"; version="1.9"; sha256="1i143x2l6fq4vl8l8cagai580yqv446pdw4gw5qzxp85hgvm8bvg"; depends=[forecast]; }; MAPLES = derive { name="MAPLES"; version="1.0"; sha256="0hzsh7z1k7qazpxjqbm9842zgdpl51irg7yfd119a7b2sd3a8li9"; depends=[mgcv]; }; MAR1 = derive { name="MAR1"; version="1.0"; sha256="1r6j890icl5h3m2876sakmwr3c65513xnsj68sy0y0q7xj3a039l"; depends=[bestglm leaps]; }; MARSS = derive { name="MARSS"; version="3.9"; sha256="0vn8axzz0nqdcl3w00waghz68z8pvfm764w11kxxigvjpw2plj31"; depends=[KFAS mvtnorm nlme]; }; -MASS = derive { name="MASS"; version="7.3-43"; sha256="12cj337xrxrdbvk1dc2vnwviscdxj9ll6aykwisqq2qjcix090d6"; depends=[]; }; +MASS = derive { name="MASS"; version="7.3-44"; sha256="16z7z1afavfhis5jp4v7ybgy7arj8ivpggxqhkx449r28wjy4pw3"; depends=[]; }; MASSTIMATE = derive { name="MASSTIMATE"; version="1.2"; sha256="1j9l8b5d518ag9ivzr1z4dd2m23y2ia1wdshx1krmshn8xsd6lwp"; depends=[]; }; MAT = derive { name="MAT"; version="2.2"; sha256="093axw2zp4i3f6s9621zwibcxrracp77xrc0q5q0m4yv3m35x908"; depends=[Rcpp RcppArmadillo]; }; MATA = derive { name="MATA"; version="0.3"; sha256="006mnc4wqh9vdigfzrzx4csgczi0idvlwb6r23w5mmsfbn0ysdm5"; depends=[]; }; @@ -1091,17 +1140,17 @@ MBA = derive { name="MBA"; version="0.0-8"; sha256="09rs1861fz41dgicgh4f95v4zafh MBCluster_Seq = derive { name="MBCluster.Seq"; version="1.0"; sha256="0xbi2r0g0gzsy05qrq1ljr5f5s3glwxj204vk2f1lgwdx3fd116m"; depends=[]; }; MBESS = derive { name="MBESS"; version="3.3.3"; sha256="12jsrxwdprrahqbk0i0js7lja81ydy385xmijlqk0slppd72dd9c"; depends=[]; }; MBI = derive { name="MBI"; version="1.0"; sha256="1lb0sjwa6x360n9a9pagz6yhxh37gxq1fk0f5c3i2sd56ny9jpns"; depends=[]; }; -MBTAr = derive { name="MBTAr"; version="1.0.0"; sha256="0324bn4r5434zj47krg6mka9ajwx7mdxhibkbf06x3a7kmh8zgjf"; depends=[jsonlite]; }; +MBTAr = derive { name="MBTAr"; version="1.0.1"; sha256="0zak19pdk0wwkhl4kj1jbwx0qmqcgpmmqv3vk0wg8nwgf1l65idy"; depends=[jsonlite]; }; MBmca = derive { name="MBmca"; version="0.0.3-5"; sha256="0p7ddpsy4hwkfwyyszidi33qpdg4xllny7g9x24gk782p7kjfgq9"; depends=[chipPCR robustbase]; }; MC2toPath = derive { name="MC2toPath"; version="0.0.16"; sha256="0jdn9wpxavn2wrml907v23mfxr62wwjdh7487ihjj59g434ry7wh"; depends=[RNetCDF]; }; MCAPS = derive { name="MCAPS"; version="0.3-2"; sha256="1jvxl9xi102pcs3swxlx4jk76i7i4fll88c92k7m379ik3r36alb"; depends=[stashR]; }; MCAvariants = derive { name="MCAvariants"; version="1.0"; sha256="08c5qpklilj41agi5nzm4f5w41pdxk98i1wc1ahhnawc3n2cdbjz"; depends=[]; }; -MCDA = derive { name="MCDA"; version="0.0.10"; sha256="1ba6bzgy5dp6ga6jsbjdy4rm28mp4hj23wdqsp8hcchv0vfx9n2l"; depends=[glpkAPI Kendall Rglpk]; }; +MCDA = derive { name="MCDA"; version="0.0.11"; sha256="11lcd4rrmlkgxnv8v9hg5y25323vng95rfcv4cjh5q4kp2z03k8v"; depends=[glpkAPI Kendall Rglpk]; }; MCL = derive { name="MCL"; version="1.0"; sha256="1w36h4vhd525h57pz6ik3abbsrvxnkcqypl2aj1ijb6wm7nfp4ri"; depends=[expm]; }; MCMC_OTU = derive { name="MCMC.OTU"; version="1.0.8"; sha256="1bdmvwxkm162m3237bgf42dm5kp3q0giwf0avrkla8qd834gqch0"; depends=[ggplot2 MCMCglmm]; }; MCMC_qpcr = derive { name="MCMC.qpcr"; version="1.2"; sha256="1v8jkxxy7z1r3l9jlshhsq6634chf30d9bb1w80iqrjfn6aamn69"; depends=[coda ggplot2 MCMCglmm]; }; MCMC4Extremes = derive { name="MCMC4Extremes"; version="1.0"; sha256="1ib3rllvqjni9xg3634ankrr66f1lj376kl3xhfwnwbfsbi4a8pw"; depends=[evir]; }; -MCMCglmm = derive { name="MCMCglmm"; version="2.21"; sha256="1mjjp65w7pg2kxrx2qf0lh1kdi9d21xxj7s39zhi3q8ixw35h95r"; depends=[ape coda corpcor Matrix tensorA]; }; +MCMCglmm = derive { name="MCMCglmm"; version="2.22"; sha256="1ami8x4gip15981hfvfban5pv2xg2mpdq6xn3b5wxzb0qrz3x5zs"; depends=[ape coda corpcor cubature Matrix tensorA]; }; MCMCpack = derive { name="MCMCpack"; version="1.3-3"; sha256="0s1j3047qp2fkwdix9galm05lp7jk7qxyic6lwpbd70hmj8ggs76"; depends=[coda MASS]; }; MCPAN = derive { name="MCPAN"; version="1.1-15"; sha256="0811wrbp0nf4nj8kvq62ks8yksabib8r1a0gx3nr3v6avfnv08w1"; depends=[multcomp mvtnorm]; }; MCPMod = derive { name="MCPMod"; version="1.0-8"; sha256="1kkak9x66dmannhxfdp6cybbjh2g43p03kyp7a4x1az7h4bnc92f"; depends=[lattice mvtnorm]; }; @@ -1113,31 +1162,34 @@ MConjoint = derive { name="MConjoint"; version="0.1"; sha256="02yik28mhvd4rfqwrp MDM = derive { name="MDM"; version="1.3"; sha256="1bvjhl243rf19829ly1qc20ik937hb82lq23aiysj7ya55z8hdpf"; depends=[nnet]; }; MDPtoolbox = derive { name="MDPtoolbox"; version="4.0.2"; sha256="04w0y5ib23l7nhj1947hwvfk6lpwwc11amqpyw1w53yj794g97wz"; depends=[linprog Matrix]; }; MDR = derive { name="MDR"; version="1.2"; sha256="0g2fvvcwagml6635va87nc0ijzy0pypx5aqzz7mf5w13j0wpm24y"; depends=[lattice]; }; +MDimNormn = derive { name="MDimNormn"; version="0.8.0"; sha256="080m0irx5v8l45fg9ig5yzcj92s3ah8a9aha288byszli1cchgpn"; depends=[]; }; MEET = derive { name="MEET"; version="5.1.1"; sha256="02xz2zkwqaf1wck9a3h1j6z8dasw4j0zqa88jg6h10wqzcrlp9ba"; depends=[Hmisc KernSmooth Matrix pcaMethods ROCR seqinr seqLogo]; }; MEMSS = derive { name="MEMSS"; version="0.9-2"; sha256="0wyw8yjs4miwgwdfcnfbzvkxrgv5r3jlg3cg8q2vy7s69wvhksmy"; depends=[lme4]; }; MESS = derive { name="MESS"; version="0.3-2"; sha256="0x518awi2mxjh3vq69n1jv4d4dxjxhqfx1py48dijgd6w674d3q8"; depends=[geepack glmnet kinship2 Matrix mvtnorm]; }; MExPosition = derive { name="MExPosition"; version="2.0.3"; sha256="1l27wp0psfvlkk79fhb8ypf8awardjljg1f37yj42friy9pdfksz"; depends=[ExPosition prettyGraphs]; }; MF = derive { name="MF"; version="4.3.2"; sha256="1arnhyqf1cjvngygcpqk2g4d52949rhkjmclbaskyxcrvp62qln0"; depends=[]; }; +MFAg = derive { name="MFAg"; version="1.2"; sha256="16r4pglms50xam9iaq825rxk8gixsqz6mfdzjl2dijh2vkfpgx3m"; depends=[]; }; MFHD = derive { name="MFHD"; version="0.0.1"; sha256="0gb8y297y1x03wy46530psmlawyv4z5dydilk36qcmadlk1wx02k"; depends=[deldir depth depthTools fda_usc matrixStats]; }; MGRASTer = derive { name="MGRASTer"; version="0.9"; sha256="0jmf2900r56v60981sabflkhid3yrqd9xd7crb56vgfl1qkva9zp"; depends=[]; }; -MGSDA = derive { name="MGSDA"; version="1.1"; sha256="09z066sfjvx7awxc86gfw066wlz6svj7nxkhlas63a7zfbkiz7hl"; depends=[glmnet MASS]; }; +MGSDA = derive { name="MGSDA"; version="1.2"; sha256="0a465kali82x9c0hld8f1m285d7zw0cf93lps87amlj3ck0nhh8z"; depends=[MASS]; }; MHadaptive = derive { name="MHadaptive"; version="1.1-8"; sha256="1w3bm82v8ahxrf0vqn0pznv7dqn212drinkz8y5kr1flx423l9ws"; depends=[MASS]; }; MIICD = derive { name="MIICD"; version="2.1"; sha256="1lh3pbpxn7lbs68741ydw264qn9rap7kmcw49vnjvvzdp7hf24in"; depends=[MASS mstate survival]; }; -MIIVsem = derive { name="MIIVsem"; version="0.3"; sha256="13f5h8mw8bwdw2v47nng3w3qn697bn2jgl1p51qg50g4qn3wrbwk"; depends=[lavaan Matrix]; }; +MIIVsem = derive { name="MIIVsem"; version="0.4.1"; sha256="1blkayv380pzr3y1w5xv15li0h9b5b0mj89q8qny5jcf0g89xlvn"; depends=[lavaan Matrix]; }; MILC = derive { name="MILC"; version="1.0"; sha256="14xsiw5al6kixwvf3ph0dlm8s13gsbqvzb92da6ng3x4iiyb1g0w"; depends=[]; }; MIPHENO = derive { name="MIPHENO"; version="1.2"; sha256="0hcaq66biv4izszdhqkgxgz91mgkjk1yrwq27fx07a2zmzj44sfv"; depends=[doBy gdata]; }; +MIXFIM = derive { name="MIXFIM"; version="1.0"; sha256="0m4fnmdd8lsdxq629f87lzz1cdc1q0j3q9hqna85ncpflyfwlvg9"; depends=[ggplot2 mvtnorm rstan]; }; MImix = derive { name="MImix"; version="1.0"; sha256="033gxr0z2xba0pgckiigblb1xa94wrfmpgv3j122cdynjch44j4r"; depends=[]; }; MInt = derive { name="MInt"; version="1.0.1"; sha256="1nk02baainxk7z083yyajxrnadg2y1dnhr51fianibvph1pjjkl6"; depends=[glasso MASS testthat trust]; }; MKLE = derive { name="MKLE"; version="0.05"; sha256="00hcihjn3xfkzy0lvb70hl2acjkwk6s3y7l4gprix24shnblvxzi"; depends=[]; }; MKmisc = derive { name="MKmisc"; version="0.99"; sha256="071vq4r3206v5bnb3cfar9g3hjgk8crqgs1ky7pzqcxyc439bdc0"; depends=[RColorBrewer robustbase]; }; MLCIRTwithin = derive { name="MLCIRTwithin"; version="1.0"; sha256="01fp2pyiwpzsby3iwn9w9ry4nksy2llwzawrmba80s5m7mrcljbn"; depends=[limSolve MASS MultiLCIRT]; }; MLCM = derive { name="MLCM"; version="0.4.1"; sha256="1g6lmw75qdiq0fshxr3sqwm1a3y4928chxkggnfwwxp8hqw4r6px"; depends=[]; }; -MLDS = derive { name="MLDS"; version="0.4.3"; sha256="1vql92y2dy1ba5l5xdysqzkzvkrr4bhclmjabn49c8qb2xc2rl40"; depends=[MASS]; }; +MLDS = derive { name="MLDS"; version="0.4.5"; sha256="1a5y031kd6zx0zqlk6dvxzsv3isbvg9jap4gqad2jwryh0a9x3c1"; depends=[MASS]; }; MLEcens = derive { name="MLEcens"; version="0.1-4"; sha256="0zlmrcjraypscgs2v0w4s4hm7qccsmaz4hjsgqpn0058vx622945"; depends=[]; }; MLRMPA = derive { name="MLRMPA"; version="1.0"; sha256="0gfbi70b15ivv76l3i0zlm14cq398nlny40aci3vqxxd0m2lyyx5"; depends=[ClustOfVar]; }; MLmetrics = derive { name="MLmetrics"; version="1.0.0"; sha256="05j8hwcvfrsslib5k4w3xwkllb3rxdxazsld26zpjf3dc643ag9a"; depends=[]; }; MM = derive { name="MM"; version="1.6-2"; sha256="1z7i8ggd54qjmlxw9ks686hqgm272lwwhgw2s00d9946rxhb3ffi"; depends=[emulator magic Oarray partitions]; }; -MM2S = derive { name="MM2S"; version="1.0.2"; sha256="03yhxr5sh3idsafa1s8y67717yyk4yspc19r0b2cjr22ca2yhv4c"; depends=[GSVA kknn lattice pheatmap]; }; +MM2S = derive { name="MM2S"; version="1.0.3"; sha256="1rp0znmnan00ng8whmind08j1ig3glgrm01239dl29qin0prx9sr"; depends=[GSVA kknn lattice pheatmap]; }; MM2Sdata = derive { name="MM2Sdata"; version="1.0.1"; sha256="1prx0gm9shizj45382qhja417y18jp6spk2hmgrzb7sbniyqs5pd"; depends=[Biobase]; }; MMMS = derive { name="MMMS"; version="0.1"; sha256="1a71vs3k16j14zgqfd4v92dq9swrb44n9zww8na6di82nla8afck"; depends=[glmnet survival]; }; MMS = derive { name="MMS"; version="3.00"; sha256="06909912v2hr52s8k0a0830lbmdh05dcd7k47vydhbwq3rzf3ahg"; depends=[glmnet Matrix mht]; }; @@ -1155,7 +1207,7 @@ MPTinR = derive { name="MPTinR"; version="1.10.3"; sha256="0281w5dhg8wmi1rz80xri MPV = derive { name="MPV"; version="1.38"; sha256="1w3b0lszqmsz0yqvaz56x08xmy1m5ngl9m6p2pg9pjv13k8dv190"; depends=[]; }; MRCE = derive { name="MRCE"; version="2.0"; sha256="0fnd7ykcxi04pv1af5zbmavsp577vkw6pcrh011na5pzy2xrc49z"; depends=[QUIC]; }; MRCV = derive { name="MRCV"; version="0.3-3"; sha256="0m29mpsd3kackwrawvahi22j0aghfb12x9j18xk4x1w4bkpiscmf"; depends=[tables]; }; -MRH = derive { name="MRH"; version="2.0"; sha256="0d6zfhyy8a0pjrr74lj0mcagh49pjh15yp4wa7g7j4qv8wfw5pkv"; depends=[coda KMsurv survival]; }; +MRH = derive { name="MRH"; version="2.1"; sha256="06pabl8262fbq13y7vb3hsqy98zh4zm301qjxry148ljx6sgp6xx"; depends=[coda KMsurv survival]; }; MRIaggr = derive { name="MRIaggr"; version="1.1.2"; sha256="0z410xkfyaqfrdiwkw29z7l6n15hdwd4dwbjn211sj6s90fa4q2w"; depends=[Rcpp RcppArmadillo]; }; MRMR = derive { name="MRMR"; version="0.1.3"; sha256="1b3a4bkpcncl4sh7d81nk6b2dzhzqn9zhqdxv31jgippsqm2s3k2"; depends=[ggplot2 lmtest lubridate plyr reshape2]; }; MRQoL = derive { name="MRQoL"; version="1.0"; sha256="0isn4g3jpz7wm99ymrshl6zgkb7iancdzdxl2w98n8fbxsh5z6sw"; depends=[]; }; @@ -1166,7 +1218,7 @@ MSBVAR = derive { name="MSBVAR"; version="0.9-2"; sha256="1p6n8vbrlqqq1vbqvxnn0f MSG = derive { name="MSG"; version="0.2.2"; sha256="18siw81pa02yg0zs40pavwm88yz7kfi60fislmjpwnl2207a6fhf"; depends=[RColorBrewer]; }; MSIseq = derive { name="MSIseq"; version="1.0.0"; sha256="1v2why1k6pjsc04044nr74571p7541nciq7xkzmya3jq6dw878j3"; depends=[IRanges R_utils rJava RWeka]; }; MSQC = derive { name="MSQC"; version="1.0.1"; sha256="1vs9kygjg9f4sr1m80hdn03gdhbdqfjamqxhbs9zha8smjrsgisw"; depends=[rgl]; }; -MST = derive { name="MST"; version="1.0"; sha256="142xhg7fpf27ba9gi3dxbmpcpmz56dks0rp4ybqpcxiq3z7wacxp"; depends=[MASS survival]; }; +MST = derive { name="MST"; version="1.1"; sha256="1wfl5naz3wlm5lj2nrb74cw7na9rpf9v9mgyi1clp7b67d0hhhx0"; depends=[MASS survival]; }; MSeasy = derive { name="MSeasy"; version="5.3.3"; sha256="191mvg1imxfjlnd808ypn4lsjx7n6ydf16flax79hv01z7rcjylh"; depends=[amap cluster clValid fpc mzR xcms]; }; MSeasyTkGUI = derive { name="MSeasyTkGUI"; version="5.3.3"; sha256="0ihz8vr2wbgy88bzssilgvlhkbr13jznfjvnqy73wpchqgwy0wy6"; depends=[MSeasy]; }; MSwM = derive { name="MSwM"; version="1.2"; sha256="01l23ia20y3nchykha4vz6sa757zmbvgx2315cacxfcqk9rgs08c"; depends=[nlme]; }; @@ -1177,14 +1229,14 @@ MVA = derive { name="MVA"; version="1.0-6"; sha256="09j9frr6jshs6mapqk28bd5jkxnr MVB = derive { name="MVB"; version="1.1"; sha256="0an8b594rknlcz6zxjva6br8f34sgwdi2jil3xh1xzb5fa55dw0f"; depends=[Rcpp RcppArmadillo]; }; MVN = derive { name="MVN"; version="4.0"; sha256="1ql50ch6qig7r0xnfv5f74k3vc32k04jgmvjbndgyzbacn2ibrm7"; depends=[MASS moments mvoutlier nortest plyr psych robustbase]; }; MVR = derive { name="MVR"; version="1.30.2"; sha256="1mq1czz5ipfy19iismdxzrcirji3qvg4av3fabaach20pfdpbrzx"; depends=[statmod]; }; -MVar_pt = derive { name="MVar.pt"; version="1.2"; sha256="1p3xjlykg40zz5354drz962wm9bcp9kmz8fd56pza7dlybblv9i8"; depends=[]; }; -MXM = derive { name="MXM"; version="0.4.3"; sha256="028ap2fzw6sqs4wm26g1124fmmmmhzjvgi42ryjcqa7ina8sly6z"; depends=[Hmisc MASS ROCR survival TunePareto VGAM]; }; +MVar_pt = derive { name="MVar.pt"; version="1.5"; sha256="1fcrzg5v9gj0lfpr828bwhdk8k2bpqya18kmrmr6f6vfbbfc81x4"; depends=[]; }; +MXM = derive { name="MXM"; version="0.5"; sha256="1hm4cvaicx4nx303khm178y817cida8hqmhr0hx208fq8mlq1dzq"; depends=[betareg Hmisc lmtest MASS nnet ordinal pcalg quantreg ROCR survival TunePareto]; }; MaXact = derive { name="MaXact"; version="0.2.1"; sha256="1n7af7kg54jbr09qk2a8gb9cjh25cnxzj2snscpn8sr8cmcrij0i"; depends=[mnormt]; }; Maeswrap = derive { name="Maeswrap"; version="1.7"; sha256="0cnnr5zq7ax1j7dx7ira7iccqppc6qpdjghjarvdb2zj0lf69yyb"; depends=[geometry lattice rgl stringr]; }; ManyTests = derive { name="ManyTests"; version="1.1"; sha256="11xk3j2q7w6b6ljmp7b8gni0khpmpvcvzwxypy0w8ihi2gaczsxj"; depends=[]; }; Map2NCBI = derive { name="Map2NCBI"; version="1.0"; sha256="02cgmayrhkyji0cwr6n0f439njq29mzna7sgzkq6ml45njm9m5nh"; depends=[]; }; MapGAM = derive { name="MapGAM"; version="0.7-5"; sha256="0bpswdi7iic7hsqrwcxwv27n4095m292nv5db6d4mj9gvp13h7i7"; depends=[gam maptools sp]; }; -MareyMap = derive { name="MareyMap"; version="1.3.0"; sha256="1blbz1rr0p4fljk7fz2s4x22xj6fxpvhrx0rl0bjg4mgwi2p61aq"; depends=[tkrplot]; }; +MareyMap = derive { name="MareyMap"; version="1.3.1"; sha256="1ql9mvmlw2m8b35dmv6c7338jzmnizdjwxf7m12m55cf6vf8lph8"; depends=[tkrplot]; }; MarkowitzR = derive { name="MarkowitzR"; version="0.1502"; sha256="0srrmzr4msn04w5f6s6qs51db8jccpfj10sighsv1l7d056n2xjn"; depends=[gtools matrixcalc sandwich]; }; MasterBayes = derive { name="MasterBayes"; version="2.52"; sha256="12ka2l4x6psij7wzbb98lwx5shgwzn5v44qfpiw1i6g236yp0mhm"; depends=[coda genetics gtools kinship2]; }; MatchIt = derive { name="MatchIt"; version="2.4-21"; sha256="02kii2143i8zywxlf049l841b1y4hqjwkr1cnyv6b8b7y7lz2m5v"; depends=[MASS]; }; @@ -1193,8 +1245,9 @@ Matching = derive { name="Matching"; version="4.8-3.4"; sha256="04m647342j4yi74d MatchingFrontier = derive { name="MatchingFrontier"; version="1.0.0"; sha256="1djlkx7ph8p60n2m191xq9i01c2by4vpmjj25mbxy5izxm5123aa"; depends=[igraph MASS segmented]; }; Matrix = derive { name="Matrix"; version="1.2-2"; sha256="0f0a8rl8lx1f0f50fxfq4q37d52hd70a611vvgq3rsb39911j935"; depends=[lattice]; }; MatrixEQTL = derive { name="MatrixEQTL"; version="2.1.1"; sha256="1bvfhzhvm1psgq51kpjcpp7bidaxcrxdigmv6abfi3jk5kyzn5ik"; depends=[]; }; -MatrixModels = derive { name="MatrixModels"; version="0.4-0"; sha256="1jcjsyha0xmz264g1haj7x8zpzjmp1m0jl39h5bf8r45hhlaxcsa"; depends=[Matrix]; }; +MatrixModels = derive { name="MatrixModels"; version="0.4-1"; sha256="0cyfvhci2p1vr2x52ymkyqqs63x1qchn856dh2j94yb93r08x1zy"; depends=[Matrix]; }; MaxPro = derive { name="MaxPro"; version="3.1-2"; sha256="1y2g8a8yvzb24dj0z82nzfr6ylplb9sbi2dmj7f3pb4s3yr5zm8y"; depends=[nloptr]; }; +MaxentVariableSelection = derive { name="MaxentVariableSelection"; version="1.0-0"; sha256="0001kj0wnma4gmndxwz11dq6jq7kgcrvlw9iikf2w15lnmmihwzl"; depends=[ggplot2 raster]; }; MazamaSpatialUtils = derive { name="MazamaSpatialUtils"; version="0.3.2"; sha256="0mxdz3268mfw8h0hpg4bpfsp9rmbpc68bf2ah70i7gkmfq3x4zyz"; depends=[dplyr rgdal rgeos rvest sp stringr]; }; McSpatial = derive { name="McSpatial"; version="2.0"; sha256="18nmdzhszqcb5z9g8r9whxgsa0w3g7fk7852sgbahzyw750k95n4"; depends=[lattice locfit maptools quantreg RANN SparseM]; }; Mcomp = derive { name="Mcomp"; version="2.05"; sha256="0wggj0h0qxjwym1vz1gk9iwnwia4lpjlk6n46l6hinsdax3g221y"; depends=[forecast tseries]; }; @@ -1211,14 +1264,15 @@ MetaDE = derive { name="MetaDE"; version="1.0.5"; sha256="1ijg64bri5jn2d3d13q1gv MetaLandSim = derive { name="MetaLandSim"; version="0.4"; sha256="1r2yr3zmd1ldcaxnxqdd6z0vv1jnwv2ghchrsn463r0ibbpciw2a"; depends=[Biobase e1071 fgui googleVis maptools raster rgeos rgrass7 sp spatstat]; }; MetaPCA = derive { name="MetaPCA"; version="0.1.4"; sha256="14g4v3hyxnds4l2q36mpz282yqg8ahgdw3b0qmj0xg17krrf5l2s"; depends=[foreach]; }; MetaQC = derive { name="MetaQC"; version="0.1.13"; sha256="11595ggjr46z6xiwmhiyx1sydaq68l18y7mgdwxsg81g03ck9x1r"; depends=[foreach iterators proto]; }; -MetaSKAT = derive { name="MetaSKAT"; version="0.40"; sha256="1jxs32hvsw6wzci9f1rc7sw1dfyazdm2d57wcmhkggfg3hkdn1vv"; depends=[SKAT]; }; +MetaSKAT = derive { name="MetaSKAT"; version="0.60"; sha256="13qffirv0lnj0bflzjpr2hd0d8j4bkakyfjvicp40f0v4v3cack2"; depends=[SKAT]; }; MetabolAnalyze = derive { name="MetabolAnalyze"; version="1.3"; sha256="0cl76x6imx4a95wd74xx5s8i2vg8wq3inqgakvgzmkwxad6qhrqp"; depends=[ellipse gplots gtools mclust mvtnorm]; }; Metatron = derive { name="Metatron"; version="0.1-1"; sha256="0apz2k3za19px1bcg4ls0axaljrpxnqhs86b6s862c370sspc1x8"; depends=[lme4 Matrix mpt]; }; Meth27QC = derive { name="Meth27QC"; version="1.1"; sha256="0ad30svs2kjzmmyvcm0jmv64iyq7slp1x1xl35h2rv1b6zbd4658"; depends=[gplots]; }; MethComp = derive { name="MethComp"; version="1.22.2"; sha256="0f9l36d00x054yqgbw0dckc7ldlgap6vnbb03n6n5yz47xxg0ic3"; depends=[nlme]; }; Methplot = derive { name="Methplot"; version="1.0"; sha256="0aaqss9zfn55qi45jffxkksnkw510npjnkygafx49vl77bkagqh5"; depends=[ggplot2 reshape]; }; +MethylCapSig = derive { name="MethylCapSig"; version="1.0.1"; sha256="16ch9aldr6a9jn42h387n7qvnzs0yx28f2yj6xq0kp476q7rf4ql"; depends=[geepack]; }; Metrics = derive { name="Metrics"; version="0.1.1"; sha256="1yqhlsmhh9sl7qngl85b7qb980s54h13wwznpakyvvwlar64yqrw"; depends=[]; }; -MfUSampler = derive { name="MfUSampler"; version="0.9.1"; sha256="0fw1jw2ljsxmvnaayn7zdrrsnbbkkb5n9nm396321p36bqkf1pk3"; depends=[ars]; }; +MfUSampler = derive { name="MfUSampler"; version="1.0.0"; sha256="0jl0vnjj0kyy49l51nh6xzp53h8wcb603v2p9wznplimskays2rh"; depends=[ars coda HI]; }; MiRSEA = derive { name="MiRSEA"; version="1.1"; sha256="0jpl6ws5yx1qjzdnip9a37nmvx81az4cbsjm57x613qjpwmg6by3"; depends=[]; }; MiST = derive { name="MiST"; version="1.0"; sha256="0gqln792gixqfh201xciaygmxbafa0wyv5gpbg9w5zkbbv44wrfk"; depends=[CompQuadForm]; }; MicSim = derive { name="MicSim"; version="1.0.9"; sha256="1c7gkyb3vpqm14qfwkl06kp3b7rng8sdac74n5j57dspygbb6rw4"; depends=[chron rlecuyer snowfall]; }; @@ -1230,19 +1284,21 @@ Miney = derive { name="Miney"; version="0.1"; sha256="0sgln0653rgglinr8rns5s2az0 MissMech = derive { name="MissMech"; version="1.0.2"; sha256="1b7i1balfl1cqr3l4l4wxlahk2gmawzv9rhyibwzf0yp60cb1sv9"; depends=[]; }; MissingDataGUI = derive { name="MissingDataGUI"; version="0.2-2"; sha256="07a3y8l0r7a0f7zmp5pg2aqkf7hyk8cf562x3m8b38w96vir4vr0"; depends=[cairoDevice GGally ggplot2 gWidgetsRGtk2 reshape]; }; MitISEM = derive { name="MitISEM"; version="1.0"; sha256="03305ds3rgr29z4idaxzsm83igiygna2sqd5vpixklngsrp8w341"; depends=[mvtnorm]; }; -MixAll = derive { name="MixAll"; version="1.0.2"; sha256="10jwiri659i2h0gkaxc41gjvff4v465syxr0nppn1qqz5910jql0"; depends=[Rcpp rtkpp]; }; -MixGHD = derive { name="MixGHD"; version="1.7"; sha256="0cbrm5n6gsa61fpk02l3fky482vc2z9wd48hpv87pck6pd7ihqk9"; depends=[Bessel e1071 ghyp MASS mixture mvtnorm numDeriv]; }; -MixMAP = derive { name="MixMAP"; version="1.3.1"; sha256="0m6m9wi0ain7z96s6z6kmwjisfqm3al6m459y5zr2l1cdbdpxfpv"; depends=[lme4]; }; +MixAll = derive { name="MixAll"; version="1.1.1"; sha256="02vbxpgyh2lw2xw04k0pfjs682xzha2wpr6w7qdg42mg335l12h3"; depends=[Rcpp rtkpp]; }; +MixGHD = derive { name="MixGHD"; version="1.8"; sha256="0m115ws1gh5mbjaql38piwjg7463mx32ridpbics3406g7p3ba6w"; depends=[Bessel cluster e1071 ghyp MASS mixture mvtnorm numDeriv]; }; +MixMAP = derive { name="MixMAP"; version="1.3.4"; sha256="0gxghym5ghbyxf589hda2fhv5l3x5jvm6i40x5xdwx4hadcn8k9a"; depends=[lme4]; }; MixSim = derive { name="MixSim"; version="1.1-1"; sha256="1a1hrsnm6zv9vag7hq8plrkjr4ak26w7k58wdkgxsjb9r6qzm1yf"; depends=[MASS]; }; +MixedPoisson = derive { name="MixedPoisson"; version="1.0"; sha256="1w826s2icdflfgyb31dvf077b6fx35idajyqv7bln1fr8wfb7zyf"; depends=[gaussquad MASS]; }; MixedTS = derive { name="MixedTS"; version="1.0.3"; sha256="19cf7iir6ann3ahpslysn48pyirr7qbx6vykshf9kkk0rsh6h5ax"; depends=[MASS]; }; MixtureInf = derive { name="MixtureInf"; version="1.0-1"; sha256="1cq8zzhhb6vg545n9aw1b9fhx025zy75dd6pw161svsb5776py5d"; depends=[]; }; +MoTBFs = derive { name="MoTBFs"; version="1.0"; sha256="09ymfgw6psc1y0dczvsrsw5cki58wn0d8vj56ydfylrxn24g3jfq"; depends=[bnlearn lpSolve quadprog]; }; Mobilize = derive { name="Mobilize"; version="2.16-4"; sha256="16vdvpwspa0igb52zvzyk0if9l4wq1hm8y42572i8sh1m82wyyfs"; depends=[ggplot2 Ohmage reshape2 wordcloud]; }; Modalclust = derive { name="Modalclust"; version="0.6"; sha256="16h90d30jwdrla5627rva0yf69n0zib9z5fl3k5awlqfscz4fw26"; depends=[class mvtnorm zoo]; }; ModelGood = derive { name="ModelGood"; version="1.0.9"; sha256="1y99a7bgwx167pncxj00lbw3cdjj23fhhzl8r24hwnhxr984kvzl"; depends=[prodlim]; }; ModelMap = derive { name="ModelMap"; version="3.0.15"; sha256="1d7qn1p4fv94bdlr6if64vxl9yknavix4gzmpg3kxwlrxaz2g8a2"; depends=[fields gbm HandTill2001 PresenceAbsence randomForest raster rgdal]; }; Momocs = derive { name="Momocs"; version="0.2-6"; sha256="187w6xyswlg5nac6lbprcwvj63gka832n33vlj2ix810vqyxd0fk"; depends=[ade4 ape jpeg shapes sp spdep]; }; MonetDB_R = derive { name="MonetDB.R"; version="0.9.7"; sha256="0b5agr3dl0ps7fnqw2fsgzb2ysqzvg2ymhxz3xyn08djgz6w7vkm"; depends=[DBI digest]; }; -MonoPoly = derive { name="MonoPoly"; version="0.2-8"; sha256="0lpqqpahpss4q9iddh2p4h6klsrjhg3v6h1wfb70vy0miyhqb93h"; depends=[quadprog]; }; +MonoPoly = derive { name="MonoPoly"; version="0.2-10"; sha256="03gzn7gq1dryjhkzs9z5i7bc8k8i7ilri26ifw772w8688pya05k"; depends=[quadprog]; }; Morpho = derive { name="Morpho"; version="2.3.0"; sha256="0k3qclk1sxlrq7y618wwfwq7v4g1hnikggm4vwacx1v7017kp05y"; depends=[colorRamps doParallel foreach Matrix Rcpp RcppArmadillo rgl Rvcg yaImpute]; }; MorseGen = derive { name="MorseGen"; version="1.2"; sha256="1kq35n00ky70zmxb20g4mwx0hn8c5g1hw3csmd5n6892mbrri8s9"; depends=[]; }; MortalitySmooth = derive { name="MortalitySmooth"; version="2.3.4"; sha256="1clx8gb8jqvxcmfgv0b8jyvh39yrmcmwr472j9g3ymm95m4hr8fq"; depends=[lattice svcm]; }; @@ -1251,8 +1307,9 @@ Mposterior = derive { name="Mposterior"; version="0.1.2"; sha256="16a7wvg41ld2bh MuFiCokriging = derive { name="MuFiCokriging"; version="1.2"; sha256="09p8wdmlsf21ibqyjigwdipcin3ij0naxcd035hqgfj76v20wiyv"; depends=[DiceKriging]; }; MuMIn = derive { name="MuMIn"; version="1.15.1"; sha256="04fl6m60z7h1a4mik58f8r8s3crx53n4jhg0lg9alnzipaij1qi5"; depends=[Matrix]; }; MultEq = derive { name="MultEq"; version="2.3"; sha256="0fshv7i97q8j7vzkxrv6f20kpqr1kp9v6pbw50g86h37l0jghj7r"; depends=[]; }; -MultNonParam = derive { name="MultNonParam"; version="1.0"; sha256="0xff81wjmyw2d38r0v3n7vv0dasg9rlrc0zrdwsmfd83zpvxqj5m"; depends=[]; }; +MultNonParam = derive { name="MultNonParam"; version="1.1"; sha256="1fdgsczgns9cj7bzsan77h6zfz7liaxxfrc5mfbhg8zxhfzr1qhy"; depends=[]; }; MultiCNVDetect = derive { name="MultiCNVDetect"; version="0.1-1"; sha256="0mfisblw3skm4y8phfg4wa0rdchl01wccarsq79hv63y78pfhh13"; depends=[]; }; +MultiGHQuad = derive { name="MultiGHQuad"; version="1.0"; sha256="1kkbwh9sinwnsc1qb2rsqdvhz1v0kg0av4m8av4dcmry2iq8kd3v"; depends=[fastGHQuad]; }; MultiLCIRT = derive { name="MultiLCIRT"; version="2.9"; sha256="0anb041nd56rrryhv5w1pb0axxsfkqas177r6yf5h5gbc4vn3758"; depends=[limSolve MASS]; }; MultiMeta = derive { name="MultiMeta"; version="0.1"; sha256="0gj0wk39fqd21xjcah20jk16jlfrcjarspbjk5xv74c9k4p5gmak"; depends=[expm ggplot2 gtable mvtnorm reshape2]; }; MultiOrd = derive { name="MultiOrd"; version="2.1"; sha256="12y5cg06qyaz72gk3bi5pqkd55n72rz056y9va49znlsqph09x2x"; depends=[corpcor Matrix mvtnorm psych]; }; @@ -1263,7 +1320,7 @@ MultinomialCI = derive { name="MultinomialCI"; version="1.0"; sha256="0ryi14d102 Myrrix = derive { name="Myrrix"; version="1.1"; sha256="15w1dic6p983g2gajbm4pws743z68y0k2hxrdwx6ppnzn9rk07rs"; depends=[Myrrixjars rJava]; }; Myrrixjars = derive { name="Myrrixjars"; version="1.0-1"; sha256="0dy82l0903pl4c31hbllscfmxrv3bd5my5b2kv5d3x5zq0x99df0"; depends=[rJava]; }; NADA = derive { name="NADA"; version="1.5-6"; sha256="0y7njsvaypcarzygsqpqla20h5xmidzjmya4rbq39gg6gkc0ky27"; depends=[survival]; }; -NAM = derive { name="NAM"; version="1.3.3"; sha256="17b4xbhdncql5wl2a016xh45jm0mip0g10nrhd41v5m1s5k81k4h"; depends=[randomForest Rcpp]; }; +NAM = derive { name="NAM"; version="1.4"; sha256="18q617z7ar94mr04vd9idhjqy74rcjwpbixhwyq9fvzax1nq9727"; depends=[randomForest Rcpp]; }; NAPPA = derive { name="NAPPA"; version="2.0.1"; sha256="0nn4wgl8bs7sy7v56xfif7i9az6kdz9xw7m98z1gnvl2g7damvn3"; depends=[NanoStringNorm plyr]; }; NB = derive { name="NB"; version="0.9"; sha256="1gh42z7lp6g09fsfmikxqzyvqp2874cx3a6vr96w43jfwmgi2diq"; depends=[]; }; NBDdirichlet = derive { name="NBDdirichlet"; version="1.01"; sha256="07j9pcha6clrji8p4iw466hscgs6w43q0f7278xykqcdnk39gkyv"; depends=[]; }; @@ -1284,7 +1341,7 @@ NLRoot = derive { name="NLRoot"; version="1.0"; sha256="1x8mcdgqqrhyykr12bv4hl4w NMF = derive { name="NMF"; version="0.20.6"; sha256="0mmh9bz0zjwd8h9jplz4rq3g94npaqj8s4px51vcv47csssd9k6z"; depends=[cluster colorspace digest doParallel foreach ggplot2 gridBase pkgmaker RColorBrewer registry reshape2 rngtools stringr]; }; NMFN = derive { name="NMFN"; version="2.0"; sha256="0n5fxqwyvy4c1lr0glilcz1nmwqdc9krkqgqh3nlyv23djby9np5"; depends=[]; }; NMOF = derive { name="NMOF"; version="0.34-2"; sha256="1hqq0gypry614jfc8hcagwkf6xz6z98pb9hzkl9ygykv4rfs5bms"; depends=[]; }; -NNTbiomarker = derive { name="NNTbiomarker"; version="0.28"; sha256="1y9lkn12a7p1qwi10pzzidhjgkzazn6lfflihnc46phf6yzgdrs6"; depends=[shiny stringr xtable]; }; +NNTbiomarker = derive { name="NNTbiomarker"; version="0.29.11"; sha256="0sqlf7vzhpmq2g98c2qlrcqn3ba4ycfxbczgcjiqqhqsvgkpacc1"; depends=[magrittr mvbutils shiny stringr xtable]; }; NORMT3 = derive { name="NORMT3"; version="1.0-3"; sha256="041s0qwmksy3c7j45n4hhqhq3rv2hncm2fi5srjpwf9fcj5wxypg"; depends=[]; }; NORRRM = derive { name="NORRRM"; version="1.0.0"; sha256="06bdd5m46c8bbgmr1xkqfw72mm38pafxsvwi9p8y7znzyd0i6ag3"; depends=[ggplot2 SDMTools]; }; NORTARA = derive { name="NORTARA"; version="1.0.0"; sha256="1q4dmn5q939d920spmxxw08afacs3pzhr2gzwyqa5kn8xiz4ffg8"; depends=[corpcor Matrix]; }; @@ -1315,20 +1372,23 @@ NeuralNetTools = derive { name="NeuralNetTools"; version="1.3.1"; sha256="0nk2rs Newdistns = derive { name="Newdistns"; version="2.0"; sha256="1jgv9jl6pvsjgjsbjvmjg8qwjx4gsmp4kd27pbqxldp0qp0q9mjf"; depends=[AdequacyModel]; }; NightDay = derive { name="NightDay"; version="1.0.1"; sha256="0vkpr2jwhgghiiiaiglaj1b9pz25fcsl628c9nsp9zyl67982wz1"; depends=[maps]; }; Nippon = derive { name="Nippon"; version="0.6.1"; sha256="0fby543cxlzyd0vpv4xjiqi1hxrrcdxm2rafq3w3crkfid4qm95g"; depends=[maptools sp]; }; -NlsyLinks = derive { name="NlsyLinks"; version="1.302"; sha256="0m1qvrpdfwql4jdk3nbn80llq83wavimifw630gnazwmkgkcncai"; depends=[lavaan]; }; +NlsyLinks = derive { name="NlsyLinks"; version="2.0.1"; sha256="08w0wkmj9s3sgrwq0icfmp7a1i29hq4594hjmlxqagc843p592r4"; depends=[lavaan]; }; NominalLogisticBiplot = derive { name="NominalLogisticBiplot"; version="0.2"; sha256="0m9442d9i78x57gdwyl3ckwp1m6j27cam774zkb358dw5nmwxbmz"; depends=[gmodels MASS mirt]; }; NonpModelCheck = derive { name="NonpModelCheck"; version="1.0"; sha256="0mgbyp651jfqyfavpv12i9kwqf0cpk2mzh9m0b5k4n759710qv8f"; depends=[dr MASS]; }; NormPsy = derive { name="NormPsy"; version="1.0.3"; sha256="0lp6b7hh36ipmsv395xk671f7sczlfz5f9x0h88b2q6zvgbk081v"; depends=[lcmm]; }; NormalGamma = derive { name="NormalGamma"; version="1.1"; sha256="0r3hhfscif0sx9v8f450yf119gpvf3ilpb8n3ziy4v4qf2jlcfnk"; depends=[histogram optimx]; }; NormalLaplace = derive { name="NormalLaplace"; version="0.2-0"; sha256="11z568zhb7jw9ghp6wlyf26ijm25crc5pqhzw71qgvva42nsmmwn"; depends=[DistributionUtils GeneralizedHyperbolic]; }; +NostalgiR = derive { name="NostalgiR"; version="1.0.2"; sha256="0rpvwi815sdhaxqpji1y6g0vy8mkn5k6wci0a4jf54pkywwkwrwp"; depends=[txtplot]; }; Nozzle_R1 = derive { name="Nozzle.R1"; version="1.1-1"; sha256="05sjip4sz12mwd3jcbvk342p83kdmrd4l2jrh17p18w4l7w4nn0z"; depends=[]; }; OAIHarvester = derive { name="OAIHarvester"; version="0.1-7"; sha256="0wcl71y8i4s4fxpb90xg71sj6819kgl3d4gff66dan8i6y8sxmyk"; depends=[RCurl XML]; }; +OBsMD = derive { name="OBsMD"; version="0.1-0.4"; sha256="00hakq94lkkx9iscxm3sv4hslyqsnjcxs74l6v89bm8p5ds8dlzl"; depends=[]; }; ODB = derive { name="ODB"; version="1.1.1"; sha256="1hha4rkbc2zh3karkqa0vn4v0nmcd7sljcymy1nh28bx1gx2ffgs"; depends=[DBI RJDBC]; }; ODMconverter = derive { name="ODMconverter"; version="2.1"; sha256="03m15vck01s6jqcpm5fl7mipki4grgywlb9mksr0l8wygmn8zkxs"; depends=[xlsx XML]; }; +OECD = derive { name="OECD"; version="0.1"; sha256="1g7wlrhq01szv5ch573lq1scv93q0dk3rv7snll3pqkkllvrw8bc"; depends=[dplyr httr rsdmx XML]; }; OIdata = derive { name="OIdata"; version="1.0"; sha256="078khxrszwnrww2h0ag153bf59fnyhirxy4m56ssgr2gmfahaymf"; depends=[maps RCurl]; }; OIsurv = derive { name="OIsurv"; version="0.2"; sha256="148mpjj5navc1vrl72y87krn4lf3awnd32z3g4qqaia404w5w7p7"; depends=[KMsurv survival]; }; OLScurve = derive { name="OLScurve"; version="0.2.0"; sha256="1zqapfwgwy9rxnbhmlgplkphw1bdia4cyi9q6iwcppw3rjw75f1n"; depends=[lattice]; }; -ONETr = derive { name="ONETr"; version="1.0.2"; sha256="1b0djffn4bx6drq5j87s15dwvnjmvraxs52y4dr6micvd9hifa9a"; depends=[RCurl XML]; }; +ONETr = derive { name="ONETr"; version="1.0.3"; sha256="14l56qcmyyk2ivcfkfv7j2k4i1mfrngpi9zcc88w6xfhz5qlb548"; depends=[plyr RCurl XML]; }; OOmisc = derive { name="OOmisc"; version="1.2"; sha256="09vaxn5czsgn6wpr27lka40kzd76jzqgqxavf26ms3m9kkdf83g4"; depends=[]; }; OPDOE = derive { name="OPDOE"; version="1.0-9"; sha256="0pf8rv5wydc8pl4x57g7bk2swjabaxdgijgsigjy5wihfcb48654"; depends=[crossdes gmp mvtnorm nlme orthopolynom polynom]; }; OPI = derive { name="OPI"; version="2.1"; sha256="1pzw5b4gwf1q98547cgq7b363fn72ll0zlvcahy56wc1ci5ny3dd"; depends=[]; }; @@ -1338,7 +1398,7 @@ ORDER2PARENT = derive { name="ORDER2PARENT"; version="1.0"; sha256="04c80vk6z227 ORIClust = derive { name="ORIClust"; version="1.0-1"; sha256="1biddddyls2zsg71w4innxl0ckfb80q2j9pmd56wvbc0qnbm0w3q"; depends=[]; }; ORMDR = derive { name="ORMDR"; version="1.3-2"; sha256="0y7b2aja3zvsd6lm7jal9pabcfxv16r2wh0kyzjkdfanvvgk3wmm"; depends=[]; }; OTE = derive { name="OTE"; version="1.0"; sha256="18w483syhs523yfib9sibzmj16bypqxk4sc4771kfr1958h3igai"; depends=[randomForest]; }; -OUwie = derive { name="OUwie"; version="1.45"; sha256="1g1315g015pcnd7g8k0vngjg7f842nq8ixhmqnj64by4vsafliva"; depends=[ape corpcor lattice nloptr numDeriv phangorn phytools]; }; +OUwie = derive { name="OUwie"; version="1.46"; sha256="162ks8n50xcg0jk0ni39fxldrnl6vzdi20yan8mgnmf4mkqm813w"; depends=[ape corpcor lattice nloptr numDeriv phangorn phytools]; }; Oarray = derive { name="Oarray"; version="1.4-5"; sha256="1w66vqxvqyrp2h6acnbg3xy7cp6j2dgvzmqqk564kvivbn40vyy4"; depends=[]; }; OasisR = derive { name="OasisR"; version="1.0.0"; sha256="0anw1ncbjjmlnhigcfwm9zqmp4ah5cfbmmm3588k95xxp6xq9vmv"; depends=[rgdal rgeos spdep]; }; OceanView = derive { name="OceanView"; version="1.0.3"; sha256="0k281r358xg599n3h4avwbhnhgcfdawf36p8k3sxwv29292npkzv"; depends=[plot3D plot3Drgl rgl shape]; }; @@ -1355,9 +1415,10 @@ OpenMPController = derive { name="OpenMPController"; version="0.1-2"; sha256="1c OpenMx = derive { name="OpenMx"; version="2.2.6"; sha256="07g1558487rasr78fy1zphpz2lac7j0xjy9zsmpg3b17y1cy49wr"; depends=[BH digest MASS RcppEigen StanHeaders]; }; OpenRepGrid = derive { name="OpenRepGrid"; version="0.1.9"; sha256="1s40c2yfd4a4khs0ghlbzii94x8cidg851bivanplg2s51j5jrhk"; depends=[abind colorspace GPArotation plyr psych pvclust rgl stringr XML]; }; OpenStreetMap = derive { name="OpenStreetMap"; version="0.3.1"; sha256="009xiqsbgqb3lba6msyzq7ncripmvpymxynkga8pqc8npv8g7fzb"; depends=[raster rgdal rJava]; }; -OptGS = derive { name="OptGS"; version="1.1"; sha256="1fy1im2ns5mxl15jv0w1d7kzfapff93kbjwjy0ji1pxcxafs0m42"; depends=[]; }; +OptGS = derive { name="OptGS"; version="1.1.1"; sha256="1acwwjng5ri5vganv7b5pagp7524ifr0q8h1pbfb5g6z3x6w08kh"; depends=[]; }; OptHedging = derive { name="OptHedging"; version="1.0"; sha256="0g7qaf5abvbcqv2h1dciwn3gwpz084ryqjjk0yabdm4ym0y38ddm"; depends=[]; }; OptInterim = derive { name="OptInterim"; version="3.0.1"; sha256="1ks24yv5jjhlvscwjppad27iass59da1mls99hlif0li9mvkbvyk"; depends=[clinfun mvtnorm]; }; +OptiQuantR = derive { name="OptiQuantR"; version="0.0.1"; sha256="1wgvz4n0qla4i5c24j0yanl7xz4f56951q8zb1593rf5kba1gg1k"; depends=[data_table lubridate]; }; OptimalCutpoints = derive { name="OptimalCutpoints"; version="1.1-3"; sha256="1vrbx62080r9sgk9ipjvdrqvikp4gwidp5gi5j92hspk7cp10amg"; depends=[]; }; OptionPricing = derive { name="OptionPricing"; version="0.1"; sha256="0j98h3fn29xfv7xyp7av459v56chw99pnvmsbqvrv4g77p60f5q2"; depends=[]; }; OrdFacReg = derive { name="OrdFacReg"; version="1.0.6"; sha256="16mavsmp6d8rfmimmp5ynwyzir0gycpg8rhd8cwanlrndyclqlpv"; depends=[eha MASS survival]; }; @@ -1366,12 +1427,13 @@ OrdMonReg = derive { name="OrdMonReg"; version="1.0.3"; sha256="1xca8pvvq79j484l OrdNor = derive { name="OrdNor"; version="1.0"; sha256="1n6c0d4r1w3n016lzk2i5yyvawk9pgmsbzymbbyq7gx8a80iv32h"; depends=[corpcor GenOrd Matrix mvtnorm]; }; OrdinalLogisticBiplot = derive { name="OrdinalLogisticBiplot"; version="0.4"; sha256="1axn03yrw30r2j9ss5ig9sq857y37vhrr4a7px68jc2az8mng41j"; depends=[MASS mirt NominalLogisticBiplot]; }; OrgMassSpecR = derive { name="OrgMassSpecR"; version="0.4-4"; sha256="046lr0piiy5w5lxjvyw7iqqclkghmc6zqymfypkw374gk73yrm76"; depends=[]; }; +OriGen = derive { name="OriGen"; version="1.3.1"; sha256="1xgh2085qy1vsjpwpf59qlpyxlb68lvhy9d1b37q6m48lp8cl299"; depends=[ggplot2 maps]; }; OutbreakTools = derive { name="OutbreakTools"; version="0.1-13"; sha256="0wwb43n0vv3ihpyr1g48nf81ml7vigvlsq316nzav528i1f7jh22"; depends=[ape ggmap ggplot2 knitr network networkDynamic plyr RColorBrewer RCurl reshape2 rjson scales sna]; }; OutlierDC = derive { name="OutlierDC"; version="0.3-0"; sha256="1vm3zx4qmj9l0ddfqbksm1qyqzzqrxf93gh4kj52h68zlsfxwv41"; depends=[Formula quantreg survival]; }; OutlierDM = derive { name="OutlierDM"; version="1.1.1"; sha256="0n8iq464ryc3v4wms7cdka39870w5pg29z9v8gmdsp4d9cfsx9v4"; depends=[MatrixModels outliers pcaPP quantreg]; }; OutrankingTools = derive { name="OutrankingTools"; version="1.0"; sha256="0z7pslkkinn7flc4xwjg0bsfswf8ad4jv9rmglaj3fmjcx9b6wgj"; depends=[igraph]; }; P2C2M = derive { name="P2C2M"; version="0.7.6"; sha256="07ycl22v03b2xdaw4v0l6layqhab431ma38qywzm96hkl3ywvl49"; depends=[ape ggplot2 rPython stringr]; }; -PAFit = derive { name="PAFit"; version="0.7.2"; sha256="047ajzb9xnhxqa9v5dggznix9rd9z66g0mzanzwqb8ds5f8gm8ls"; depends=[Rcpp]; }; +PAFit = derive { name="PAFit"; version="0.7.5"; sha256="1rczpgy1qrzc1p02nssx5gyi8m71w5jl97scqaddqyzg1c0zfvrp"; depends=[Rcpp]; }; PAGI = derive { name="PAGI"; version="1.0"; sha256="01j1dz5ihqslpwp9yidmhw86l112l7rfkswmf03vss872mpvyp3f"; depends=[igraph]; }; PAGWAS = derive { name="PAGWAS"; version="1.0"; sha256="1zwq4b0bgsskzvlapffh30ys9y4wlcfwpjqw8m2i9zabib5knx9i"; depends=[doMC lars mnormt]; }; PANDA = derive { name="PANDA"; version="0.9.9"; sha256="1sf3c49v4mb3mz2imqlqdbh1iab7bc2pxpi8bmgj2jld133555ip"; depends=[cluster]; }; @@ -1380,8 +1442,7 @@ PAS = derive { name="PAS"; version="1.2"; sha256="0q5g9j8xb9fl7r8f1w5gk5h83ll5w1 PASWR = derive { name="PASWR"; version="1.1"; sha256="1rxymnqvflypc6m62f5vw65l8x1m2yah7r11hhpmzdq2l2sg8fci"; depends=[e1071 lattice MASS]; }; PASWR2 = derive { name="PASWR2"; version="1.0"; sha256="1bxczrfxj7nlx4r0b23a7sisinb4d5nd3pj68vigbgrhqyggk87x"; depends=[e1071 ggplot2 lattice]; }; PAWL = derive { name="PAWL"; version="0.5"; sha256="1sx4g4qycba2j1fm0bvhz3hk6ghhdc37rz5zi1njqxrpmbnkqg04"; depends=[foreach ggplot2 mvtnorm reshape]; }; -PBC = derive { name="PBC"; version="1.2"; sha256="1z08y5sn6i439811c9mq3bs78zqlzzkz0srmv4wld68bywhmwqj4"; depends=[copula igraph Rcpp]; }; -PBD = derive { name="PBD"; version="1.0"; sha256="1q8ijjmcwxi8f3wgggpj4y522wmxady7f60frhlvvixhzfn2iml1"; depends=[ade4 ape DDD deSolve]; }; +PBD = derive { name="PBD"; version="1.1"; sha256="15kwzprc71h14fimz5czh5qy8lf64b0fkzcyf00xz0q83clz5fnq"; depends=[ade4 ape DDD deSolve phytools]; }; PBImisc = derive { name="PBImisc"; version="0.999"; sha256="0igwl78wj8w6jzmk5m8y9rf4j72qrcjyhb83kz44is72ddzsyss6"; depends=[lme4 MASS Matrix]; }; PBSadmb = derive { name="PBSadmb"; version="0.68.104"; sha256="01akimdsp0bkvz3a5d75yyy3ph0mff85n8qsnr59fla5b5cm4qlj"; depends=[PBSmodelling]; }; PBSddesolve = derive { name="PBSddesolve"; version="1.11.29"; sha256="13vprr66hh5d19xambpyw7k7fvqxb8mj5s9ba19ls7xgypw22cmm"; depends=[]; }; @@ -1401,7 +1462,6 @@ PDSCE = derive { name="PDSCE"; version="1.2"; sha256="17lc6d8ly6jbvjijpzg45dvqrz PEIP = derive { name="PEIP"; version="2.0-1"; sha256="0zfvp3ngc4320sh6r6y746zxigr2wqgaqasnlkv3hxhzpzxq08lj"; depends=[bvls Matrix pracma RSEIS]; }; PEMM = derive { name="PEMM"; version="1.0"; sha256="18dd9hsbdrnhrrff7gpdqrw2jv44j8lg0v3lkcdpbd4pppcaq84h"; depends=[]; }; PET = derive { name="PET"; version="0.4.9"; sha256="1ijg6mfh3xrc1gjh6a4nq64psk9yh16yc8nfp7c9837xbjigqq7f"; depends=[adimpro]; }; -PF = derive { name="PF"; version="9.5"; sha256="1y99brdabj78s5kxyv0136s40kaaj3zya9lk4qd0kqk83z2gdawp"; depends=[gdata RColorBrewer xtable]; }; PGICA = derive { name="PGICA"; version="1.0"; sha256="0qxa5hw2s3mndjvk8lb82pcbyj1kbdclx4j4xa8jq0lcj180abi9"; depends=[fastICA]; }; PGM2 = derive { name="PGM2"; version="1.0"; sha256="18azh6k271p9dvc23q402pv7wrilr1yk02vqqy6qjppnvq6jxahg"; depends=[]; }; PGRdup = derive { name="PGRdup"; version="0.2.1"; sha256="1hkkpylfchs06a42q19sv9ixc3bd7ilk9jc4qmiqg42j0gsizilm"; depends=[data_table igraph stringdist stringi]; }; @@ -1420,35 +1480,37 @@ PLRModels = derive { name="PLRModels"; version="1.1"; sha256="0dwnzfw7a1cxz9s00k PLSbiplot1 = derive { name="PLSbiplot1"; version="0.1"; sha256="1l8d1k913ic0qwxvrrd447p5ni3mzc6v9lv45b7vqrpzkxdci6gy"; depends=[]; }; PLordprob = derive { name="PLordprob"; version="1.0"; sha256="156lvz6vfm68hm32l5nlhq15hfacdla627d6lf8l4g34lwzdh8k8"; depends=[mnormt]; }; PMA = derive { name="PMA"; version="1.0.9"; sha256="11qwgw4sgzl3xhrm468bsza83h3mfn89157nfwnrassl7qr42xkq"; depends=[impute plyr]; }; -PMCMR = derive { name="PMCMR"; version="1.1"; sha256="0f3882rjyxlcr183qa9y22bxh8nqp307v065aiy61ii0kizj9f70"; depends=[]; }; +PMCMR = derive { name="PMCMR"; version="1.2"; sha256="10wh1ys0l566ziw5h3rmiip88s7p3gycamch9mzsh4kw2g121ks3"; depends=[]; }; PP = derive { name="PP"; version="0.5.3"; sha256="17y1v2536n7ap0kvllwkmndmdjf4wgwl171c053ph45krv37mscf"; depends=[Rcpp]; }; PPtree = derive { name="PPtree"; version="2.3.0"; sha256="002qjdx52r2h90wzrf2r3kz8fv3nwx08qbp909whn6r4pbdl532v"; depends=[MASS penalizedLDA]; }; -PPtreeViz = derive { name="PPtreeViz"; version="1.1.0"; sha256="0rdic7xdb5brxkhdrfcr7mdzxz1a02kjjkln7vwxnqxrhicx6pwz"; depends=[ggplot2 gridExtra Rcpp RcppArmadillo reshape2]; }; -PRIMsrc = derive { name="PRIMsrc"; version="0.5.7"; sha256="1va2ck6m8n8mih6qd55fr2jd84gch3d676glcar51139552ddn5h"; depends=[glmnet Hmisc MASS survival]; }; +PPtreeViz = derive { name="PPtreeViz"; version="1.3.0"; sha256="1v5538mwmdfgwyqi6a72b4hkhwl0b8xz3ai81cv4q8cbvgwgq8fj"; depends=[ggplot2 gridExtra Rcpp RcppArmadillo]; }; +PRIMsrc = derive { name="PRIMsrc"; version="0.6.0"; sha256="0m6ycd37yw5divc7nks8gy1g3dj0z6wy2j65qh1b1idcnb54b0kf"; depends=[glmnet Hmisc MASS survival]; }; PRISMA = derive { name="PRISMA"; version="0.2-5"; sha256="06z4z1rbsk5a8kpbs6ymm0m02i8dwbmv783c3l2pn4q3pf6ncmd5"; depends=[ggplot2 gplots Matrix]; }; PROFANCY = derive { name="PROFANCY"; version="1.0"; sha256="11a0fpsv1hy0djv36x2i2hv2j50ryy0x7g7nn7vv76m1sl6q6r4b"; depends=[igraph lattice Matrix]; }; PROTOLIDAR = derive { name="PROTOLIDAR"; version="0.1"; sha256="0bz3071b0wlcvh40vl3dyiiixk5avsj6kjjnvlvx264i5g08rij4"; depends=[]; }; PRROC = derive { name="PRROC"; version="1.1"; sha256="1v35z9inzb6x42fil8z7kfcrnfif93cj8974mfbqhhx0f9vi476a"; depends=[]; }; -PReMiuM = derive { name="PReMiuM"; version="3.1.1"; sha256="10xrgqq6vii5xcxcf6jqbhzmkiy88ssxjvn2pnfx5a9xj037ymqb"; depends=[BH cluster gamlss_dist ggplot2 plotrix Rcpp RcppEigen]; }; +PReMiuM = derive { name="PReMiuM"; version="3.1.2"; sha256="1hq159vvk2bb1b1klwnjbry92yldvm4asl2khyv1i9vx7vamw71q"; depends=[BH cluster gamlss_dist ggplot2 plotrix Rcpp RcppEigen]; }; PResiduals = derive { name="PResiduals"; version="0.2-2"; sha256="1c1j9avnaprlcw6x86cf4hy45cb7ki6pq8xj0gi6dyswbs1mxhlf"; depends=[Formula MASS rms]; }; PSAboot = derive { name="PSAboot"; version="1.1"; sha256="176sbjr906xk2ycl8653k7nch2h7ryxfisdy178k51f55qpvv4h9"; depends=[ggplot2 Matching MatchIt modeltools party PSAgraphics psych reshape2 rpart TriMatch]; }; PSAgraphics = derive { name="PSAgraphics"; version="2.1.1"; sha256="05c0k94dxddyrhsnhnd4jcv6fxbbv9vdkss2hvlf3m3xc6jbwvh9"; depends=[rpart]; }; -PSCBS = derive { name="PSCBS"; version="0.44.0"; sha256="1bpvqn2p8pw57dpwk1mr51rsiqirk5sywrycqwbazvjr7hkiqa3d"; depends=[DNAcopy matrixStats R_cache R_methodsS3 R_oo R_utils]; }; +PSCBS = derive { name="PSCBS"; version="0.45.1"; sha256="0m7l3mxp2df4lcdj69rf07ra1qjrbp5hnphl499kisjz9bb3a43n"; depends=[DNAcopy matrixStats R_cache R_methodsS3 R_oo R_utils]; }; PSM = derive { name="PSM"; version="0.8-10"; sha256="1s60fr85xn3ynpvsbc3nw7vgz6h6jxy3yii1w6jpkw3iwl4bgn84"; depends=[deSolve MASS numDeriv ucminf]; }; PST = derive { name="PST"; version="0.86"; sha256="0m6v7j36v47zdqqd3lf05w6pk0f3wfs1kix1qfvy2gj8n41jjmxf"; depends=[RColorBrewer TraMineR]; }; PTAk = derive { name="PTAk"; version="1.2-12"; sha256="1phxh2qbzsj2ia2dr6z30lhi765lk1m8lbk57sdgvm14fmi9v5nk"; depends=[tensor]; }; PTE = derive { name="PTE"; version="1.0"; sha256="10if2hh69yysi2y82m7is74hmzw2xpxijgb8bhy1d4g9n9lqidfs"; depends=[doParallel]; }; PVAClone = derive { name="PVAClone"; version="0.1-2"; sha256="0afl2il5wdcwzpyhjkgq8iz16q1086c3ndr4cjlyspgbss9h5l24"; depends=[dclone dcmle]; }; PVR = derive { name="PVR"; version="0.2.1"; sha256="1p87pj9g0qlc8ja6xdj2amny9pbkaqb34x2y9nkl1nj1pkwjq2s5"; depends=[ape splancs]; }; +PabonLasso = derive { name="PabonLasso"; version="1.0"; sha256="158xg9i13nqy1bnpch8r6a7yas01hsdidmcypgccmyh7d7l52mr1"; depends=[]; }; Pade = derive { name="Pade"; version="0.1-4"; sha256="1kx5qpxd3x43bmyhk8g2af44hz3prhnrzrm571kfjmak63kym741"; depends=[]; }; PairViz = derive { name="PairViz"; version="1.2.1"; sha256="0mjp5p6n5azbhrm2hvb9xyqjfhd49pw9ia8k70749yc96ws1qqc7"; depends=[graph gtools TSP]; }; PairedData = derive { name="PairedData"; version="1.0.1"; sha256="025h5wjsh9c78bg6gmg6p6kvv2s6d5x7fzn3mp42mlybq0ry78p0"; depends=[ggplot2 gld lattice MASS mvtnorm]; }; +PanelCount = derive { name="PanelCount"; version="1.0.1"; sha256="1gyn5vidcds6kjawzdqj4pnnyqa9hprbx2vjkv3f32p42dxd694j"; depends=[Rcpp RcppArmadillo statmod]; }; Paneldata = derive { name="Paneldata"; version="1.0"; sha256="00hk340x5d4mnpl3k0hy1nypgj55as2j7y2pgzfk3fpn3zls5zib"; depends=[]; }; ParDNAcopy = derive { name="ParDNAcopy"; version="2.0"; sha256="017xwznhfibi8kp0ifww02c0qcq0vxs06rjww4kcp2bvdmld8kc4"; depends=[DNAcopy]; }; ParallelForest = derive { name="ParallelForest"; version="1.1.0"; sha256="1xa9lfgrvzv7bvv1aaabcfk4372p8x5gxgj463h5ggf9x177lj5j"; depends=[]; }; ParamHelpers = derive { name="ParamHelpers"; version="1.5"; sha256="1ywsc96gc252i6girr2ph674wfrzjfk96l2w8512rqy9bgimr0lr"; depends=[BBmisc checkmate]; }; ParentOffspring = derive { name="ParentOffspring"; version="1.0"; sha256="117g8h0k65f2cjffigl8n4x37y41rr2kz33qn2awyi876nd3mh93"; depends=[]; }; -ParetoPosStable = derive { name="ParetoPosStable"; version="1.0.3"; sha256="0f3f4wn33vw1y3cjcvlk44g8z6hjkv4ws535pkcz3lgb95fl4q0n"; depends=[ADGofTest lmom]; }; +ParetoPosStable = derive { name="ParetoPosStable"; version="1.1"; sha256="1fwji5wrhbxr089dll812csamvb5q2pxn1607rpirarifgfbj28m"; depends=[ADGofTest doParallel foreach lmom]; }; Pasha = derive { name="Pasha"; version="0.99.16"; sha256="1arzvii3rm4l94ivjccxvy9jgk8answy4r97l0zh7sznng8w1x6z"; depends=[Biostrings bitops GenomicAlignments GenomicRanges gtools IRanges Rsamtools S4Vectors ShortRead]; }; PatternClass = derive { name="PatternClass"; version="1.5"; sha256="1paw39xm2rqjnc7pnbya7gyl160kzl56nys9g0y1sa6cqycy3y5x"; depends=[SDMTools]; }; Peaks = derive { name="Peaks"; version="0.2"; sha256="0a173p5cdm1jnm7bwsvjpxh4dccy593g02c4qjwky1cgzy5rvin2"; depends=[]; }; @@ -1492,17 +1554,19 @@ PopGenome = derive { name="PopGenome"; version="2.1.6"; sha256="1wk5k5f80l7k6hai PopVar = derive { name="PopVar"; version="1.2.1"; sha256="09az5wa0zai6axhvrljqdjn74nb7jikqwjqy8f570qxb6jbgfgay"; depends=[BGLR qtl rrBLUP]; }; PortRisk = derive { name="PortRisk"; version="1.0"; sha256="0vyzvi56lmdlhxpbxcxcfqa8271jv2l45w7x1kzzwl6q0wm4bjln"; depends=[zoo]; }; PortfolioAnalytics = derive { name="PortfolioAnalytics"; version="1.0.3636"; sha256="0xva3ff8lz05f1jvx8hgn8rpgr658fjhf3xyh9ga1r7dii13ld50"; depends=[foreach PerformanceAnalytics xts zoo]; }; +PortfolioEffectHFT = derive { name="PortfolioEffectHFT"; version="1.2"; sha256="0dpdklac5zk52nwb0v2iyxg9dq4sz4nfsw1wiic6lc8yisbp0azg"; depends=[ggplot2 rJava]; }; PottsUtils = derive { name="PottsUtils"; version="0.3-2"; sha256="05ds0a7jq63zxr3jh66a0df0idzhis76qv6inydsjk2majadj3zv"; depends=[miscF]; }; PoweR = derive { name="PoweR"; version="1.0.4"; sha256="00y0dvrsbvz8mr8mdw7fk17s5dfgm0f641qg96039y6g3hk2rn77"; depends=[Rcpp RcppArmadillo]; }; Power2Stage = derive { name="Power2Stage"; version="0.4-2"; sha256="0h1zy5ppqb90x1225k3iqk2cvb2ld0pv6baj6vqz5690rr4g936y"; depends=[PowerTOST]; }; -PowerTOST = derive { name="PowerTOST"; version="1.2-08"; sha256="19963whk1ij255dk0xrg3iy3sgqa17l2js5vcakgh1jh131acsg2"; depends=[mvtnorm]; }; +PowerTOST = derive { name="PowerTOST"; version="1.3-01"; sha256="1g68mn37i3dag0zvx8l5cm4jcqkridiam1ab46w0l26bq9zcaaa6"; depends=[mvtnorm]; }; PracTools = derive { name="PracTools"; version="0.2"; sha256="1njnm0rk2z9p3p8wsj881mddqhpayh56gyyis4cwb5b6pc344s9p"; depends=[]; }; PredictABEL = derive { name="PredictABEL"; version="1.2-2"; sha256="08c7j2in1wlas6nmy44s08cq86h5fizqbhsnq312dllqdzmb2h9s"; depends=[epitools Hmisc PBSmodelling ROCR]; }; PredictiveRegression = derive { name="PredictiveRegression"; version="0.1-4"; sha256="15vkisj3q4hinc3d537s8inhj3wk62q67qhy050xmp9j563ainmd"; depends=[]; }; PresenceAbsence = derive { name="PresenceAbsence"; version="1.1.9"; sha256="17qn4ggkr5aqml45nkihj1j35y479ywkm1xcfkb2g8ky66jb0c0s"; depends=[]; }; -PrevMap = derive { name="PrevMap"; version="1.2"; sha256="06036c5171lz8ys6sh2q58jq6frb9j5rgzd2v862prr6jg5643ci"; depends=[geoR maxLik pdist raster splancs truncnorm]; }; +PrevMap = derive { name="PrevMap"; version="1.2.3"; sha256="19l5bfsppp1gncsbhmbm698bz0ws7744sji9zhj235gf3m2b0k8a"; depends=[geoR maxLik pdist raster splancs truncnorm]; }; PrivateLR = derive { name="PrivateLR"; version="1.2-21"; sha256="1jwq8f0dnngj8sfbmcmxy34nkkq6yjw0mq3w1f8rasz67v3bwzp3"; depends=[]; }; ProDenICA = derive { name="ProDenICA"; version="1.0"; sha256="04gnsnd0xzw3bfbssdp06bar0lk305ry2c97pmwxgiz3ay88dfsj"; depends=[gam]; }; +ProTrackR = derive { name="ProTrackR"; version="0.1.3"; sha256="1kl7fir4a205hmh73x7zkm3288f7l72xi15w5bjagzy0hk1x6glq"; depends=[audio lattice seewave tuneR]; }; ProbForecastGOP = derive { name="ProbForecastGOP"; version="1.3.2"; sha256="0fnw3g19lx4vs8vmn4qdirvybkiy2cxkhwkn9qa3phz45iixnvx4"; depends=[fields RandomFields]; }; ProfessR = derive { name="ProfessR"; version="2.3"; sha256="1y88as4xjvdm2v2ms5l7c6ziq7sll6qkrpgzdd4xnbcjx7c0g9w8"; depends=[RPMG]; }; ProfileLikelihood = derive { name="ProfileLikelihood"; version="1.1"; sha256="16cdp1nimhg1sd2x0qbffm7clgk54p0838y688z8lnsrjaggmb0x"; depends=[MASS nlme]; }; @@ -1517,7 +1581,7 @@ PubBias = derive { name="PubBias"; version="1.0"; sha256="0dr5dhfx57knrs05pbx9ng PubMedWordcloud = derive { name="PubMedWordcloud"; version="0.3.2"; sha256="1xn4ygpvj6pm548yj5kjh2l8n59p2caihfpbkykvbkzgf7hq8p00"; depends=[RColorBrewer RCurl stringr tm wordcloud XML]; }; PurBayes = derive { name="PurBayes"; version="1.3"; sha256="0nbm4cyrwfbwwbjbjkylr86cshaqbvbif6dkp4fag8kbcgyyx5qh"; depends=[rjags]; }; PwrGSD = derive { name="PwrGSD"; version="2.000"; sha256="0qxvws9mfrnqw5s24qhqk6cbffjm13z7awyxdmnilazghpiq1p7s"; depends=[survival]; }; -PythonInR = derive { name="PythonInR"; version="0.1-0"; sha256="0zbd0yi7f49r20kjljfyvpmmw7zdvw6hi2kqdijz59p53dwzjyml"; depends=[pack R6]; }; +PythonInR = derive { name="PythonInR"; version="0.1-1"; sha256="0nqs5i2bbhfq20vxhnbxx8rrli5vrac116x9yiapwhpbg6zbnxgj"; depends=[pack R6]; }; QCA = derive { name="QCA"; version="1.1-4"; sha256="0wg2yfg61bmcxmkxvm9zjrnz4766f176y4gyqvfp5hsp9pp0h2lm"; depends=[lpSolve]; }; QCA3 = derive { name="QCA3"; version="0.0-7"; sha256="0i9i2i633sjnzsywq51r2l7fkbd4ip217hp0vnkj78sfl7zf1270"; depends=[lpSolveAPI]; }; QCAGUI = derive { name="QCAGUI"; version="1.9-6"; sha256="020ngni02j2w2ylhyidimm51d426pym2g1hg7gnpb7aplxx67n6x"; depends=[abind QCA]; }; @@ -1530,20 +1594,20 @@ QSARdata = derive { name="QSARdata"; version="1.3"; sha256="0dhldnh0jzzb4assycc0 QTLRel = derive { name="QTLRel"; version="0.2-14"; sha256="05x56a8fjr6xk38dphdzh77y520cr6zykjp3qlx27drk9s5z06cs"; depends=[gdata]; }; QUIC = derive { name="QUIC"; version="1.1"; sha256="021bp9xbaih60qmss015ycblbv6d1dvb1z89y93zpqqnc2qhpv3c"; depends=[]; }; QZ = derive { name="QZ"; version="0.1-4"; sha256="1k657i1rf6ayavn0lgfvlh8am3kzypgb1jhf2by147gv103izkrz"; depends=[]; }; -QoLR = derive { name="QoLR"; version="1.0.1"; sha256="0hgvb013d2ckvg863lidyjybm6rnrlwmq2y0g0vqxzh05rp6wii5"; depends=[survival zoo]; }; +QoLR = derive { name="QoLR"; version="1.0.2"; sha256="1vvs5a4yl1isy0kqxzr2kcfg3y6bg3n2gsy7a2qgch92vjffd18a"; depends=[survival zoo]; }; QuACN = derive { name="QuACN"; version="1.8.0"; sha256="1597blp8gqc5djvbgpfzi8wamvy0x50wh5amxj9cy99qa0jlglxi"; depends=[combinat graph igraph RBGL]; }; QualInt = derive { name="QualInt"; version="1.0.0"; sha256="1ms96m3nz54848gm9kdcydnk5kn2i8p1rgl2dwn7cqcqblfvsr4j"; depends=[ggplot2 survival]; }; -Quandl = derive { name="Quandl"; version="2.6.0"; sha256="1mz39sj7dxfh9p5kdq7bxlifbg9izqz04l3ilnfchva7qq1ij01q"; depends=[httr xts zoo]; }; +Quandl = derive { name="Quandl"; version="2.7.0"; sha256="15j8wgk067ixmcp70k7fi6wnyl7mz26ljdgrcgy6dwgfng6286h8"; depends=[httr jsonlite xts zoo]; }; QuantPsyc = derive { name="QuantPsyc"; version="1.5"; sha256="1i9bh88r8zxndzjqsj14qw64gnvm5a9kvhjhzk3qsrvl3qzjgh93"; depends=[boot MASS]; }; -QuantifQuantile = derive { name="QuantifQuantile"; version="2.1"; sha256="1d3dcpri8d98mn2c0nfipp1pdr67a8h35p0y7bdil6il71h4qldm"; depends=[rgl]; }; -QuantumClone = derive { name="QuantumClone"; version="0.6.15"; sha256="0fc63bns6vn4i0qi3vpp2ybm5hd4fl6n18biblph37qnwqxm2dvq"; depends=[doSNOW foreach fpc]; }; +QuantifQuantile = derive { name="QuantifQuantile"; version="2.2"; sha256="01bdz8a6nhjil6n2z62x5g41v3d6md5v16g0ladsl5zc8raivqdq"; depends=[rgl]; }; +QuantumClone = derive { name="QuantumClone"; version="0.9.15"; sha256="1ama7lnm9czg7qv83s4gnqsp314yv5z57ca9yfmkkx05llrlamhb"; depends=[doSNOW foreach fpc]; }; QuasiSeq = derive { name="QuasiSeq"; version="1.0-8"; sha256="113pxmvwwn331g5dcv2zwsvvi5jgc1v41f38sw9gms06i8x3a7q6"; depends=[edgeR mgcv pracma]; }; Quor = derive { name="Quor"; version="0.1"; sha256="1ncl4pj472m881fqndcm6jzn4jkwbnzpc639c9vy5mxa4z569i1g"; depends=[combinat]; }; R_cache = derive { name="R.cache"; version="0.10.0"; sha256="0y8q3w9z9cyzsg60x95kkc81ksc2d5vpdaqg5njq5bgjyw7yjqvs"; depends=[R_methodsS3 R_oo R_utils]; }; -R_devices = derive { name="R.devices"; version="2.13.0"; sha256="1ys4sxns2y5cgqb18scclsv99jfkyy3l9mq0jcnh76c48gpzaisp"; depends=[base64enc R_methodsS3 R_oo R_utils]; }; -R_filesets = derive { name="R.filesets"; version="2.7.2"; sha256="0jlbpvj1ijjknjrb48x26c1ngkv7gl42fmk5g9sqaivm69d76nav"; depends=[digest R_cache R_methodsS3 R_oo R_utils]; }; +R_devices = derive { name="R.devices"; version="2.13.1"; sha256="1lz46irm66v5r8wg439n4d6waivnfchgwq0w565crd6ri6rhf16h"; depends=[base64enc R_methodsS3 R_oo R_utils]; }; +R_filesets = derive { name="R.filesets"; version="2.8.0"; sha256="0lh4nlk8pjmywzv6w6q7kb6ab8vp1mg4wnyyafg8snmbn4hc4f04"; depends=[digest R_cache R_methodsS3 R_oo R_utils]; }; R_huge = derive { name="R.huge"; version="0.9.0"; sha256="13p558qalv60pgr24nsm6mi92ryj65rsbqa6pgdwy0snjqx12bgi"; depends=[R_methodsS3 R_oo R_utils]; }; -R_matlab = derive { name="R.matlab"; version="3.2.0"; sha256="1c87m6pv62ciqwpmsp8l7rkixcv04s9nkdn4yjbgyqvcslfaw26m"; depends=[R_methodsS3 R_oo R_utils]; }; +R_matlab = derive { name="R.matlab"; version="3.3.0"; sha256="1hg43lvdivj1x4s54vaj13z5dp92sndnpminhnqbk27kzmdczy84"; depends=[R_methodsS3 R_oo R_utils]; }; R_methodsS3 = derive { name="R.methodsS3"; version="1.7.0"; sha256="1dg4bbrwr8jcsqisjrrwxs942mrjq72zw8yvl2br4djdm0md8zz5"; depends=[]; }; R_oo = derive { name="R.oo"; version="1.19.0"; sha256="15rm1qb9a212bqazhcpk7m48hcp7jq8rh4yhd9c6zfyvdqszfmsb"; depends=[R_methodsS3]; }; R_rsp = derive { name="R.rsp"; version="0.20.0"; sha256="06vq9qq5hdz3hqc99q82622mab6ix7jwap20h4za6ap6gnwqs0fv"; depends=[R_cache R_methodsS3 R_oo R_utils]; }; @@ -1558,15 +1622,15 @@ R2HTML = derive { name="R2HTML"; version="2.3.1"; sha256="01mycvmz4xd1729kkb8nv5 R2MLwiN = derive { name="R2MLwiN"; version="0.8-1"; sha256="0gkp5jvvbf9rppxirs1s7vr5nbfkrlykaph3lv20xq8cc8nz9zzx"; depends=[coda digest foreign lattice Matrix rbugs]; }; R2OpenBUGS = derive { name="R2OpenBUGS"; version="3.2-3.1"; sha256="1nnyfhpqgx6wd4n039c4d42png80b2xcwalyj08bmq0cgl32cjgk"; depends=[boot coda]; }; R2STATS = derive { name="R2STATS"; version="0.68-38"; sha256="1v8mvkvs4fjch0dpjidr51jk6ynnw82zhhylyccyrad9f775j2if"; depends=[cairoDevice gWidgets gWidgetsRGtk2 lattice latticeExtra lme4 MASS Matrix proto RGtk2Extras statmod]; }; -R2SWF = derive { name="R2SWF"; version="0.9"; sha256="0c3lkmm8wgpix3fv7dxql6zpklwbcsv1y30r26yws12fnavw4y1k"; depends=[sysfonts]; }; +R2SWF = derive { name="R2SWF"; version="0.9-1"; sha256="0xhq4dyi1mj4n38zylgi6d17d5wp402wm3kic05vgssg4pyfda2d"; depends=[sysfonts]; }; R2WinBUGS = derive { name="R2WinBUGS"; version="2.1-21"; sha256="0k8k214x712vjj2k1am4zzf6scccs3b98ysiz4lwxpzm818wp1ps"; depends=[boot coda]; }; R2admb = derive { name="R2admb"; version="0.7.13"; sha256="0sjli498pz1vk5wmw65mca08mramwhzlfli2aih15xj7qzvp0nky"; depends=[coda lattice]; }; -R2jags = derive { name="R2jags"; version="0.5-6"; sha256="0zknl9qrypp96qz6rx7bkxg7bslvsnlhrgh749q4q566fz944n1g"; depends=[abind coda R2WinBUGS rjags]; }; +R2jags = derive { name="R2jags"; version="0.5-7"; sha256="0h1d27cddyacx5m5f23rlki97iwni7clffmb2k7a4bznlnjhn50a"; depends=[abind coda R2WinBUGS rjags]; }; R330 = derive { name="R330"; version="1.0"; sha256="01sprsg7kph62abhymm8zfqr9bd6dhihrfxzgr4pzi5wj3h80bjm"; depends=[lattice leaps rgl s20x]; }; -R4CDISC = derive { name="R4CDISC"; version="0.3"; sha256="0443mzkhsbrvsl7vawfpabsdqbqr9yjyyhsw1y07yncy55ylc2v5"; depends=[XML]; }; +R4CDISC = derive { name="R4CDISC"; version="0.4"; sha256="09rj3cwbdsigkvha0l11xymcf257mxq1gnrw1ky2lfrygl3ibm43"; depends=[XML]; }; R4CouchDB = derive { name="R4CouchDB"; version="0.7.1"; sha256="08s999m1kfjzabng41d5fpkag7nrdbricnw7m4jvj1ssqfnil2hj"; depends=[bitops RCurl RJSONIO]; }; R4dfp = derive { name="R4dfp"; version="0.2-4"; sha256="02crzjphlq4hi2crh9lh8l0acmc1rgb3wr1x8sn56cwhq4xzqzcb"; depends=[]; }; -R6 = derive { name="R6"; version="2.1.0"; sha256="0vszmwpc32h3gd5jxr47v338nci69cj30wf0b6hkmwznq34hwdfc"; depends=[]; }; +R6 = derive { name="R6"; version="2.1.1"; sha256="16qq35bgxgswf989yvsqkb6fv7srpf8n8dv2s2c0z9n6zgmwq66m"; depends=[]; }; RAD = derive { name="RAD"; version="0.3"; sha256="0nmgsaykxavq2bskq5x0jvsxzsf4w2gqc0z80a59376li4vs9lpj"; depends=[MASS mvtnorm]; }; RADami = derive { name="RADami"; version="1.0-3"; sha256="0rg07dsh2rlldajcj0gq5sgsl1i3qa28bsrmq88xcljg5hnr4iqn"; depends=[ape Biostrings geiger phangorn]; }; RAHRS = derive { name="RAHRS"; version="1.0.2"; sha256="0s7vkmyc3yh62m2xbsvajgvi9xdw5x4irnp7rcllhqa7z9nj50c9"; depends=[pracma RSpincalc]; }; @@ -1577,7 +1641,7 @@ RANN = derive { name="RANN"; version="2.5"; sha256="007cgqg9bybg2zlljbv5m6cmlm3r RANN_L1 = derive { name="RANN.L1"; version="2.5"; sha256="0sjf92hdw9jczvq1wl5syckhvik7wv0k9vrrgw4nnnsabc25v9pf"; depends=[]; }; RAP = derive { name="RAP"; version="1.1"; sha256="18dclijs72p6gxawpg8hk7n512ah4by5jfg2jnrp8mz79ajmdgir"; depends=[]; }; RAPIDR = derive { name="RAPIDR"; version="0.1.1"; sha256="14cnw4jjs5anb55zlg1yj6qc9yr51rsamigq2q7h8ypj2ggnna1d"; depends=[Biostrings data_table GenomicAlignments GenomicRanges PropCIs Rsamtools]; }; -RAdwords = derive { name="RAdwords"; version="0.1.4"; sha256="0zqxvspza60sh65k0fr3c51qdxk8mzkrh8fm421lyd6054n6az21"; depends=[RCurl rjson]; }; +RAdwords = derive { name="RAdwords"; version="0.1.6"; sha256="0rrkw3s0r7qp87ikphi8i8dq5j46h5708h9phqi3hc0qkmkld8i8"; depends=[RCurl rjson]; }; RApiSerialize = derive { name="RApiSerialize"; version="0.1.0"; sha256="0gm2j8kh40imhncwwx1sx9kmraaxcxycvgwls53lcyy2ap344k9j"; depends=[]; }; RAppArmor = derive { name="RAppArmor"; version="1.0.1"; sha256="06j7ghmzw2rrlk8nsarmpk1ab2gg88qs52zpw37rhqchpyzwwkfb"; depends=[]; }; RArcInfo = derive { name="RArcInfo"; version="0.4-12"; sha256="1j1c27g2gmnxwslff4l0zivi48qxvpshmi7s9wd21cf5id0y4za4"; depends=[RColorBrewer]; }; @@ -1595,19 +1659,21 @@ RCircos = derive { name="RCircos"; version="1.1.2"; sha256="0j7ww2djnhpra13vjr6y RClimMAWGEN = derive { name="RClimMAWGEN"; version="1.1"; sha256="0icy560llfd10mxlq0xmc6lbg6a030za9sygw1rpz8sk5j0lvb84"; depends=[climdex_pcic RMAWGEN]; }; RColorBrewer = derive { name="RColorBrewer"; version="1.1-2"; sha256="1pfcl8z1pnsssfaaz9dvdckyfnnc6rcq56dhislbf571hhg7isgk"; depends=[]; }; RConics = derive { name="RConics"; version="1.0"; sha256="1lwr7hi1102gm8fi9k5ra24s0rjmnkccihhqn3byckqx6y8kq7ds"; depends=[]; }; +RCriteo = derive { name="RCriteo"; version="1.0.1"; sha256="1wlsp9idywgkcr2v68yj8gabyxd4ss6vzqr4z2id7fgvyqk8fyy4"; depends=[httr plyr RCurl XML]; }; RCryptsy = derive { name="RCryptsy"; version="0.4"; sha256="01rz9wz5y1k77mjw4zs0jng3k4zwqda32m5xvw6kx7vkgzfas6q0"; depends=[RCurl RJSONIO]; }; RCurl = derive { name="RCurl"; version="1.95-4.7"; sha256="1qsxffqcb3lg3zkq6l1l78bm52szlk4d2y2bnmxn4lg0i4yxfx48"; depends=[bitops]; }; RDIDQ = derive { name="RDIDQ"; version="1.0"; sha256="09gincmxv20srh4h82ld1ifwncaibic9b30i56zhy0w35353pxm2"; depends=[]; }; RDML = derive { name="RDML"; version="0.9-1"; sha256="0ir8qp3k326gxy5f0hy144zi8xcgsk6svahz7lr5pjfj05czmxxm"; depends=[assertthat dplyr plyr R6 rlist tidyr XML]; }; -RDS = derive { name="RDS"; version="0.7-2"; sha256="143pb13wg0ms9zaiilb3ylqj6r6bcy4iqbq19j57z33i1q6ll51c"; depends=[ggplot2 gridExtra igraph reshape2 scales]; }; +RDS = derive { name="RDS"; version="0.7-3"; sha256="06zvk6hy4lq1rxfx3fl9wn3w3r7g3d6vr0ddpf5c26i790j5dg8n"; depends=[ggplot2 gridExtra igraph reshape2 scales]; }; RDSTK = derive { name="RDSTK"; version="1.1"; sha256="07vfhsyah8vpvgfxfnmp5py1pxf4vvfzy8jk7zp1x2gl6dz2g7hq"; depends=[plyr RCurl rjson]; }; RDataCanvas = derive { name="RDataCanvas"; version="0.1"; sha256="1aw19lmdphxwva5cs3f4fb8hllirzfkk48nqdgrarz32l11y5z5j"; depends=[jsonlite]; }; RDieHarder = derive { name="RDieHarder"; version="0.1.3"; sha256="0wls7b0qfbi6hsq9xdywi4mdhim5b6mrzhvyrm9dxp9z1k7imz6m"; depends=[]; }; RDota = derive { name="RDota"; version="1.2"; sha256="1r56s4ii37szmdwgbnlw2g9576kjvyc79nvnfrsgr5mys62pbrzs"; depends=[XML]; }; -REBayes = derive { name="REBayes"; version="0.50"; sha256="0p4kv709r0577xq3mdw2vwla1gsjm8b9mnbsbfwm8fx3n3wfrx0p"; depends=[Matrix Rmosek SparseM]; }; +REBayes = derive { name="REBayes"; version="0.58"; sha256="047dq82nnj600hzs010iqfi8m58433n62xm8ji0ylln1wkjmpxnp"; depends=[Matrix reliaR Rmosek]; }; RECA = derive { name="RECA"; version="1.1"; sha256="1wgcd53yy4xsi7i674n4255qvvv6988r43q7n7pjqrimp04g1qd0"; depends=[]; }; -REDCapR = derive { name="REDCapR"; version="0.7-1"; sha256="1r5vvl52z5gpqhq949fzwmsqvwpr74phcapkckczyznlfql4qdh1"; depends=[httr plyr stringr]; }; +REDCapR = derive { name="REDCapR"; version="0.9.3"; sha256="0il1b1sc05kigl8937s853a73k54xdr16sr4g8c11qyv54iy8d9a"; depends=[httr plyr]; }; REEMtree = derive { name="REEMtree"; version="0.90.3"; sha256="01sp36p12ky8vgsz6aik80w4abs70idr9sn4627lf94r92wwwsbc"; depends=[nlme rpart]; }; +REGENT = derive { name="REGENT"; version="1.0.6"; sha256="1f2sjqkhw3rbmwbcmx7l7imj696kblisi8y3fz77xygbcbxa6rmq"; depends=[]; }; REPPlab = derive { name="REPPlab"; version="0.9.1"; sha256="1yrw03p7rk5dbr23z343kxn7vbac8khcz4c718wq9w6sykhgv8d0"; depends=[lattice rJava]; }; REQS = derive { name="REQS"; version="0.8-12"; sha256="049glqhc8h8gf425kmj92jv70917dsigpm37diby0c6hb4jrg8ka"; depends=[gtools]; }; RESS = derive { name="RESS"; version="1.2"; sha256="13125b616z3ib2y9bkn770h4ix914gxgqi0yxqnr99qc99n7lavs"; depends=[]; }; @@ -1621,7 +1687,7 @@ RFinanceYJ = derive { name="RFinanceYJ"; version="0.3.1"; sha256="0qhmzsch7c2p0z RFmarkerDetector = derive { name="RFmarkerDetector"; version="1.0"; sha256="0p8dnqwhsjh1gwxvqpicdbsjs9gczqi5j4av786l9g18f5djsv6m"; depends=[AUCRF ggplot2 randomForest ROCR UsingR WilcoxCV]; }; RForcecom = derive { name="RForcecom"; version="0.7"; sha256="0rjav2rwanzqgi1yasbm9lj18f0mfxwd8w8x41skf656gfcpi0i4"; depends=[plyr RCurl XML]; }; RFreak = derive { name="RFreak"; version="0.3-0"; sha256="1dmllxb6yjkfkn34f07j2g7w5m63b5d10lh9xsmxyfk23b8l3x0x"; depends=[rJava]; }; -RGA = derive { name="RGA"; version="0.2.3"; sha256="0a4c5bn5pvrf975psyx03s9a78z9ba851ykqhmx85kl33zmq6mhp"; depends=[curl httpuv httr jsonlite shiny]; }; +RGA = derive { name="RGA"; version="0.2.4"; sha256="19yx88l7d0xm2f9wcbn3j1qm4ip87ci97wk24v47ghki4bx7nqh1"; depends=[httpuv httr jsonlite]; }; RGCCA = derive { name="RGCCA"; version="2.0"; sha256="0mcp51z5jkn7yxmspp5cvmmvq0cwh7hj66g7wjmxsi74dwxcinvg"; depends=[MASS]; }; RGENERATE = derive { name="RGENERATE"; version="1.3"; sha256="16gkdwbigdsdvnplqhzs11kk4dhb2rlnf7vj6kbzxw9fb1b7818q"; depends=[RMAWGEN]; }; RGENERATEPREC = derive { name="RGENERATEPREC"; version="1.0"; sha256="1f6y3i8r6a9cajbj127s0cd13ihbi8scgrsgizza1fjb7fg2g450"; depends=[blockmatrix copula Matrix RGENERATE RMAWGEN stringr]; }; @@ -1647,11 +1713,11 @@ RJDBC = derive { name="RJDBC"; version="0.2-5"; sha256="0cdqil9g4w5mfpwq85pdq4vp RJSDMX = derive { name="RJSDMX"; version="1.4"; sha256="1g14nrjkspv3wyg9kc5bnn9zb37dw1z8y7mc4sxhacd1n2nxzb97"; depends=[rJava zoo]; }; RJSONIO = derive { name="RJSONIO"; version="1.3-0"; sha256="1dwgyiy19sixhy6yclqcaaxswbmpq7digyjjxhy1qv0wfsvk94qi"; depends=[]; }; RJaCGH = derive { name="RJaCGH"; version="2.0.4"; sha256="1a8nd0w73dvxpamzi2addwr6q3rxhnnpa1girnlwbd1j1dll0bz6"; depends=[]; }; -RJafroc = derive { name="RJafroc"; version="0.1.0"; sha256="00nag4yak89pialch9p3r2ln6gs03jl5cx9rmipgvgyg031gf43f"; depends=[ggplot2 shiny stringr xlsx]; }; +RJafroc = derive { name="RJafroc"; version="0.1.1"; sha256="1630f8nmpid5pax8gqxych8bqf8a1avgrk7yqisk3lf1yx3h68rq"; depends=[ggplot2 shiny stringr xlsx]; }; RKEA = derive { name="RKEA"; version="0.0-6"; sha256="1dncplg83b4zznh1zh90wr8jv5259cy93imrry86c5kqdijmhrrp"; depends=[rJava RKEAjars tm]; }; RKEAjars = derive { name="RKEAjars"; version="5.0-1"; sha256="00bva6ksdnmwa0i2zvr36n40xp429c0sqyp20a8n3zsblawiralc"; depends=[rJava]; }; RKlout = derive { name="RKlout"; version="1.0"; sha256="17mx099393b1m9dl3l5xjcpzmb9n3cpjghb90m9nidccxkhacmqf"; depends=[RCurl]; }; -RLRsim = derive { name="RLRsim"; version="3.0"; sha256="16bqsp15b8ikgix18p63k6sf81d1al4djbb51r08imjs4z9jppg4"; depends=[mgcv Rcpp]; }; +RLRsim = derive { name="RLRsim"; version="3.1-2"; sha256="0wwcn9ch4bndrw5sizsd4cqaq1nvqgykx28dzp05r6wsabixnhxh"; depends=[lme4 mgcv nlme Rcpp]; }; RLumShiny = derive { name="RLumShiny"; version="0.1.0"; sha256="0j4w3h1j6dm5q98639am3xfixjdx2xhiiy3qghkb0z8lv5rbvvw5"; depends=[digest googleVis Luminescence RCurl shiny]; }; RM2 = derive { name="RM2"; version="0.0"; sha256="1v57nhwg8jrpv4zi22fhrphw0p0haynq13pg9k992sb0c72dx70a"; depends=[msm]; }; RMAWGEN = derive { name="RMAWGEN"; version="1.3.0"; sha256="19p8bxcfk802pdn6990ya0bd9ghbvg8vmk3z01x1v76w09j4bv38"; depends=[chron date vars]; }; @@ -1665,14 +1731,15 @@ RMallow = derive { name="RMallow"; version="1.0"; sha256="0prd5fc98mlxnwjhscmghw RMark = derive { name="RMark"; version="2.1.13"; sha256="04wrl4i3d6kwy4masqc17qab24jv8p3kbfcx2z5l11wyf84xaqgx"; depends=[coda matrixcalc msm snowfall]; }; RMediation = derive { name="RMediation"; version="1.1.3"; sha256="07ck74dl1wwb88229fhkh2czlynddff7zvjyhisxk53qmdb0wvmw"; depends=[e1071 lavaan MASS]; }; RMongo = derive { name="RMongo"; version="0.0.25"; sha256="1anybw64bcipwsjc880ywzj0mxkgcj6q0aszdad6zd4zlbm444pc"; depends=[rJava]; }; -RMySQL = derive { name="RMySQL"; version="0.10.4"; sha256="0lybsqmngh9hqkwxgvkz5w13i40i0jbj8k1niwa8yk1fdik57v8d"; depends=[DBI]; }; +RMySQL = derive { name="RMySQL"; version="0.10.6"; sha256="0n42k8348ms0pmc0gidcmbxnj4lzinldpm4dbc5nh6r7gwq1h0rp"; depends=[DBI]; }; RNCBIEUtilsLibs = derive { name="RNCBIEUtilsLibs"; version="0.9"; sha256="1h1ywx8wxy6n2rbpmjbqw4c0djz29pbncisd0mlbshj1fw226jba"; depends=[rJava]; }; RNCEP = derive { name="RNCEP"; version="1.0.7"; sha256="0yvddsdpdrsg2dafmba081q4a34q15d7g2z5zr4qnzqb8wjwh6q2"; depends=[abind fields fossil maps RColorBrewer sp tgp]; }; RND = derive { name="RND"; version="1.1"; sha256="1rbnjkfrsvm68xp90l4awixbvpid9nxnhg6i6fndpdmqwly2fwdp"; depends=[]; }; RNeXML = derive { name="RNeXML"; version="2.0.3"; sha256="02aaacd2vs2iccjabx1bcrimhzr1kpzhkx9l50amwilj8q8ackr0"; depends=[ape httr plyr reshape2 taxize uuid XML]; }; +RNeo4j = derive { name="RNeo4j"; version="1.5.1"; sha256="0fcbc452ybydbg2z23k18lxpaybyvaasrdk1azj9xyvk92f55bh1"; depends=[httr RJSONIO rstudioapi]; }; RNetCDF = derive { name="RNetCDF"; version="1.7-3"; sha256="1blpwkmdi7scm876mvk9m23k4kfx83rc6hcy342236rbmxdzahhg"; depends=[]; }; RNetLogo = derive { name="RNetLogo"; version="1.0-1"; sha256="051yx7l8qbnvb4gn67m00wnl6v0jrmavmp7n7zygjn7p1xi3w22c"; depends=[igraph rJava]; }; -RNiftyReg = derive { name="RNiftyReg"; version="1.1.3"; sha256="1z980rwlq7wg4zjslppzs9d2cxhj7l63sgg8x8g6zgs5ag3pzgi7"; depends=[oro_nifti reportr]; }; +RNiftyReg = derive { name="RNiftyReg"; version="2.0.1"; sha256="0g0v5yzb78al46f37ska63926j99xqn4x0a84plyn1fm32ivz89d"; depends=[ore Rcpp RcppEigen]; }; ROAuth = derive { name="ROAuth"; version="0.9.6"; sha256="0vhsp8qybrl94898m2znqs7hmlnlbsh8sm0q093dwdb2lzrqww4m"; depends=[digest RCurl]; }; ROC632 = derive { name="ROC632"; version="0.6"; sha256="0vgv4rclvb79mfj1phs2hmxhwchpc5rj43hvsj6bp7wv8cahfg5g"; depends=[penalized survival survivalROC]; }; ROCR = derive { name="ROCR"; version="1.0-7"; sha256="1jay8cm7lgq56i967vm5c2hgaxqkphfpip0gn941li3yhh7p3vz7"; depends=[gplots]; }; @@ -1694,7 +1761,7 @@ ROptEstOld = derive { name="ROptEstOld"; version="0.9.2"; sha256="0blf34xff9pjfy ROptRegTS = derive { name="ROptRegTS"; version="0.9.1"; sha256="1a8pbn63wh2w2n409yzbwvarvhphcn82rdqjh407ch3k3x6jz3r5"; depends=[distr distrEx RandVar ROptEstOld]; }; ROptimizely = derive { name="ROptimizely"; version="0.2.0"; sha256="059zfn6y687h989wryvpqwgnp9njrrr4ys0gf1ql4pw85b2c50dy"; depends=[httr jsonlite]; }; ROracle = derive { name="ROracle"; version="1.2-1"; sha256="19avgm4sxv052alh938bcvc7z8xx70vdwd9pilaidxydbar5kqz1"; depends=[DBI]; }; -RPANDA = derive { name="RPANDA"; version="1.0"; sha256="1q8chhmdgn697a4qp4f7prdviar29z0py050748qw7ab326lqp5d"; depends=[ape deSolve picante pspline]; }; +RPANDA = derive { name="RPANDA"; version="1.1"; sha256="1sjzph00rxilgk4vxiklfdn6ji2f9b5jz7hd83pcsdinrwy6pjxg"; depends=[ape cluster deSolve fpc igraph picante pspline pvclust TESS]; }; RPCLR = derive { name="RPCLR"; version="1.0"; sha256="03kpyszsjb656lfwx2yszv0a9ygxs1x1dla6mpkhcnqw00684fab"; depends=[MASS survival]; }; RPEnsemble = derive { name="RPEnsemble"; version="0.2"; sha256="1kbgpbk7gma0vhl0aybdj7bk2chhbggzh7h1w7snddgdvvj6cz10"; depends=[class MASS]; }; RPMG = derive { name="RPMG"; version="2.1-7"; sha256="1nkmnqrys65vg377mys6qzpbwfh43adgy76c6jfdg336nf8qx2wd"; depends=[]; }; @@ -1702,18 +1769,18 @@ RPMM = derive { name="RPMM"; version="1.20"; sha256="09rwrcd8jz0nii1vx0n3b4daidi RPPairwiseDesign = derive { name="RPPairwiseDesign"; version="1.0"; sha256="0k2vh698rhs5a0b5vhyvrnnwqnagdzs591zx6hn9vbmm8rm4y1dm"; depends=[]; }; RPPanalyzer = derive { name="RPPanalyzer"; version="1.4.1"; sha256="1i9fcypi33qi7lz6rs1i5mvnbfma15jw6n5is03zdd1cjgrnss8r"; depends=[Biobase gam ggplot2 gplots Hmisc lattice limma quantreg]; }; RPostgreSQL = derive { name="RPostgreSQL"; version="0.4"; sha256="0gpmbpiaiqvjzyl84l2l8v2jnz3h41v8jl99sp1qvvyrjrickra2"; depends=[DBI]; }; -RProtoBuf = derive { name="RProtoBuf"; version="0.4.2"; sha256="0ph6sdw0gys70sjlfimgvjk19rbj4v6p7wk05nar6wh8mabpvb63"; depends=[Rcpp RCurl]; }; +RProtoBuf = derive { name="RProtoBuf"; version="0.4.3"; sha256="00sik2ri64bvvhrdpb91myrhzwwk3y67m214mi21q3b8710mmcaf"; depends=[Rcpp RCurl]; }; RPublica = derive { name="RPublica"; version="0.1.2"; sha256="1fawjkwfxx3z370132vsjjs3ls316gzxzlxp8b4vzrshx1p7vp3q"; depends=[httr jsonlite RCurl]; }; RPushbullet = derive { name="RPushbullet"; version="0.2.0"; sha256="1h9yvw9kw7df0ijwhfc2bi29y61fl9zg3mp4xygx3fyr9mycjm7a"; depends=[RJSONIO]; }; RQDA = derive { name="RQDA"; version="0.2-7"; sha256="05h2f5sk0a14bhzqng5xp87li24b6n11p5lcxf9xpy7sbmh5ig6g"; depends=[DBI gWidgets gWidgetsRGtk2 igraph RGtk2 RSQLite]; }; -RQuantLib = derive { name="RQuantLib"; version="0.4.0"; sha256="1p2hd7wa5yi5ian2akb70pjr4glfni4dvwgglyg5pqmmm2j45k2d"; depends=[Rcpp]; }; +RQuantLib = derive { name="RQuantLib"; version="0.4.1"; sha256="0lpiadv4hppswb9npnf3si1pl3bhcp3qz8wxbqf8202p3hp5dsyz"; depends=[Rcpp]; }; RRF = derive { name="RRF"; version="1.6"; sha256="1gp224mracrz53vnxwfvd7bln18v8x7w130wslhfgcdl0n4f2d28"; depends=[]; }; RRNA = derive { name="RRNA"; version="1.0"; sha256="14rcqh95ygybci8hb8ays8ikb22g3850s9f3sgx3r4f0ky52dcba"; depends=[]; }; RRTCS = derive { name="RRTCS"; version="0.0.2"; sha256="0lwc0girdsrni6qv0z7bggqhlwlny4amgkayd8s3cdh3m006dn95"; depends=[sampling samplingVarEst]; }; RRreg = derive { name="RRreg"; version="0.4.1"; sha256="0qlahjhlfjcbvdr6z3ap8ns8vw8g0pvifrkyvcxfg35p4dr6p3yl"; depends=[doParallel foreach]; }; RSA = derive { name="RSA"; version="0.9.8"; sha256="1pqblhimhj79ss8js0nf8w24ga2kdmgw64rh496iib36g27asn8n"; depends=[aplpack ggplot2 lattice lavaan plyr RColorBrewer tkrplot]; }; RSADBE = derive { name="RSADBE"; version="1.0"; sha256="1nzpm88rrzavk0n8iflsx8r3s1xcry15n80zqdw6jijjycz10w1q"; depends=[]; }; -RSAGA = derive { name="RSAGA"; version="0.94-1"; sha256="0zr3rm3s5pf2l2gkvbsr60srj6s1xx7kn26krpbzz3xqgbfgmz6k"; depends=[gstat plyr shapefiles]; }; +RSAGA = derive { name="RSAGA"; version="0.94-3"; sha256="1wzby9ypbs5hqglx2swh98dfxashi6gdzg81i9ypxxv3m18v0xpa"; depends=[gstat plyr shapefiles]; }; RSAP = derive { name="RSAP"; version="0.9"; sha256="1sxirfabhpmfm0yiiazc9h1db70hqwva2is1dql6sjfanpl8qanl"; depends=[reshape yaml]; }; RSDA = derive { name="RSDA"; version="1.2"; sha256="06sa3x0abm2gnf4i4y3d5mlqj1wl7mzzal27sa1x65awzi6rs2kz"; depends=[abind FactoMineR ggplot2 glmnet scales scatterplot3d sqldf XML]; }; RSEIS = derive { name="RSEIS"; version="3.4-5"; sha256="0wh7977vm721hb566lh721mwn6b4x0p7x6xb7gv0nvrd3kpsw9zn"; depends=[RPMG Rwave]; }; @@ -1729,11 +1796,12 @@ RSclient = derive { name="RSclient"; version="0.7-3"; sha256="07mbw6mcin9ivsg313 RSeed = derive { name="RSeed"; version="0.1.31"; sha256="0wljchzkp8800v9zcgjapkbildkb3p2xnkh1m6m7q6qqc9aw8mws"; depends=[graph RBGL sybil]; }; RSelenium = derive { name="RSelenium"; version="1.3.5"; sha256="15pnmnljl4dm9gbcgnad5j58k6cgs6qm34829kdgyb0ygs9q7ya0"; depends=[caTools RCurl RJSONIO XML]; }; RSiena = derive { name="RSiena"; version="1.1-232"; sha256="0qp3bqq5p19bg47m37s2dw8m4q91hnkc2zxwhsgb076q0xvvv9xq"; depends=[Matrix]; }; -RSiteCatalyst = derive { name="RSiteCatalyst"; version="1.4.4"; sha256="09bfrfbrkbfg49rwvll1pwl9axibk3s4gmlfg3sry227srnqjg5s"; depends=[base64enc digest httr jsonlite plyr stringr]; }; +RSiteCatalyst = derive { name="RSiteCatalyst"; version="1.4.6"; sha256="0hah1gc8g81icymmk6z3799c4wc4zml8njllypagyb2jxmjyvm88"; depends=[base64enc digest httr jsonlite plyr stringr]; }; RSocrata = derive { name="RSocrata"; version="1.6.2-10"; sha256="0nj0g40cy1g47j6nyp3a86g4gcm9ipalbm7dsy2s7367r7k0fa65"; depends=[httr jsonlite mime]; }; RSofia = derive { name="RSofia"; version="1.1"; sha256="0q931y9rcf6slb0s2lsxhgqrzy4yqwh8hb1124nxg0bjbxvjbihn"; depends=[Rcpp]; }; RSpincalc = derive { name="RSpincalc"; version="1.0.2"; sha256="09fjwfz1bzpbca1bpzxj18ki8wh9mrr5h6k75sc97cyhlixqd37s"; depends=[]; }; RStars = derive { name="RStars"; version="1.0"; sha256="1siwqm8sp8wqbb56961drkwcnkv3w1xiy81hxy0zcr2z7rscv7mh"; depends=[RCurl RJSONIO]; }; +RStoolbox = derive { name="RStoolbox"; version="0.1.1"; sha256="1wkznasqmw54w88hb0qcb1qmlchk6nkbs0jnbx4nk4bqc8hk2dn5"; depends=[caret codetools doParallel foreach geosphere ggplot2 plyr raster Rcpp reshape2 rgeos sp stringr XML]; }; RStorm = derive { name="RStorm"; version="0.902"; sha256="1apk358jwzg5hkrcq8h39rax1prgz9bhkz9z51glmci88qrw1frv"; depends=[plyr]; }; RSurveillance = derive { name="RSurveillance"; version="0.1.0"; sha256="1y17bfv0glzzb5rfniia0z4px810kgv2gns0igizw7w427zshnm0"; depends=[epiR epitools]; }; RSurvey = derive { name="RSurvey"; version="0.8-3"; sha256="0dqrajd3m2v5cd3afl9lni9amfqfv4vhz7kakg3a5180j5rcag12"; depends=[MBA rgeos sp]; }; @@ -1744,8 +1812,8 @@ RTOMO = derive { name="RTOMO"; version="1.1-3"; sha256="10qkqdx2zj2m854z9s57ddf5 RTextTools = derive { name="RTextTools"; version="1.4.2"; sha256="1j3zfywq8xgax51mbizxz704i3ys4vzp8hyi5kkjzq6g2lw7ywq2"; depends=[caTools e1071 glmnet ipred maxent nnet randomForest SparseM tau tm tree]; }; RTextureMetrics = derive { name="RTextureMetrics"; version="1.1"; sha256="0d0mvpmcpd62cvqlajrqp32lnvpflyf9bqvdzly2v8v1kb8274fc"; depends=[]; }; RTriangle = derive { name="RTriangle"; version="1.6-0.6"; sha256="1g4dp792awbvsl35nvyd8gkx99p2njdcafin16qysfrjl43f5i4s"; depends=[]; }; -RUnit = derive { name="RUnit"; version="0.4.28"; sha256="0p631cg014m7linml2770g260ml0jj74d5w82ddl1p2zs5yq57hx"; depends=[]; }; -RVAideMemoire = derive { name="RVAideMemoire"; version="0.9-45-2"; sha256="1c2hmkc34qgi942i4pnw61lk0z6kd4j9424zqqscm77zscfmrmcw"; depends=[ade4 boot car cramer lme4 MASS mixOmics multcompView nnet pspearman statmod vegan]; }; +RUnit = derive { name="RUnit"; version="0.4.29"; sha256="05ps7lp7a848h8jmzh02mcx9fsyifs8y9nrhh7ljwfmi75fl6w4k"; depends=[]; }; +RVAideMemoire = derive { name="RVAideMemoire"; version="0.9-50"; sha256="0wf18gn6vsmw3dq3qwfi537xip4jc6yl06ag9lrr4xm9hgj0l1ci"; depends=[ade4 boot car cramer lme4 MASS mixOmics multcompView nnet pls pspearman statmod vegan]; }; RVFam = derive { name="RVFam"; version="1.1"; sha256="0gw8rgq11zndnqmay6y3y5rmmljvwhxzm2pqa90vs5413dnchq92"; depends=[coxme kinship2 lme4 MASS Matrix survival]; }; RVideoPoker = derive { name="RVideoPoker"; version="0.3"; sha256="06s4dlw0pw8rcq5b31xxqdpdk396rf27mai2vpvmn585vbm1ib7a"; depends=[pixmap rpanel tkrplot]; }; RVowpalWabbit = derive { name="RVowpalWabbit"; version="0.0.6"; sha256="06f2lmls92qkbscss00c99xkzpx83mgjah6ds0sixv1b2qi216ap"; depends=[Rcpp]; }; @@ -1775,8 +1843,10 @@ Rankcluster = derive { name="Rankcluster"; version="0.92.9"; sha256="172jjsyc6a5 RapidPolygonLookup = derive { name="RapidPolygonLookup"; version="0.1"; sha256="0m6r11ksryzcfcm265wr9fhwb867j9ppfhalvvygzig5j85sg92k"; depends=[PBSmapping RANN RgoogleMaps sp]; }; Rarity = derive { name="Rarity"; version="1.3-4"; sha256="0zz1axr8a1r6js0la2ncls0l6jnjvx807ay2ngzb52hqbijifghx"; depends=[]; }; RaschSampler = derive { name="RaschSampler"; version="0.8-8"; sha256="0y7dkgv1cy6r1mbmyqm27qwl10rl12g1svpx9jkzq5hq0hnm2xhw"; depends=[]; }; +RateDistortion = derive { name="RateDistortion"; version="1.01"; sha256="1micjlbir1v5ar51g1x7bgkqw9m8217qi82ii6ysgjkhwdvpm075"; depends=[]; }; RbioRXN = derive { name="RbioRXN"; version="1.5.1"; sha256="0lc43wm986y3xbdh1xihn7w583cql9kvj6rb018pn06ghz153i0d"; depends=[ChemmineR data_table fmcsR gdata KEGGREST plyr RCurl stringr]; }; Rbitcoin = derive { name="Rbitcoin"; version="0.9.2"; sha256="0ndq4kg1jq6h0jxwhpdp8sw1n5shg53lwa1x0bi7rifmy0gnh66f"; depends=[data_table digest RCurl RJSONIO]; }; +Rblpapi = derive { name="Rblpapi"; version="0.3.0"; sha256="0y4xzq3gxmb7rimgss291qb7q1w5c6k4ba8iw29ify9rib7y4ma4"; depends=[BH Rcpp]; }; Rborist = derive { name="Rborist"; version="0.1-0"; sha256="1irb9scl68m7skqdwny9kvnzg7f1r0q1c0whzqyhhj9l4lw16hmr"; depends=[Rcpp RcppArmadillo]; }; Rcapture = derive { name="Rcapture"; version="1.4-2"; sha256="1nsxy5vpfv7fj03i6l5pgzjm0cldwqxxycnvqkfkshbryjcyl0ps"; depends=[]; }; Rcell = derive { name="Rcell"; version="1.3-2"; sha256="1gfbwarbnv70sawaxv71har1m099icc2347wdvrz3hwmfgw6qm8n"; depends=[digest ggplot2 plyr proto reshape]; }; @@ -1784,13 +1854,13 @@ RcellData = derive { name="RcellData"; version="1.3-2"; sha256="1zzkgpj2pc42xzz5 Rcgmin = derive { name="Rcgmin"; version="2013-2.21"; sha256="02igq7bdlxwa7ysfiyvqfhcvgm866lrp2z3060z5lmnp6afa0958"; depends=[numDeriv]; }; Rchoice = derive { name="Rchoice"; version="0.3"; sha256="1ac2nw03g66z2rgxzv8jqad74cp4c9ry0hvnw77d57ddaxszkrva"; depends=[Formula maxLik msm plm plotrix]; }; Rclusterpp = derive { name="Rclusterpp"; version="0.2.3"; sha256="02s5gmmmd0l98wd1y884pjl3h289dyd9p9s7dh7yl2zaslqs2094"; depends=[Rcpp RcppEigen]; }; -Rcmdr = derive { name="Rcmdr"; version="2.1-7"; sha256="1qn0bfh36shdnm2qbjwggjv19vqkkhng82x39sdbljx0z3g3bmdg"; depends=[abind car RcmdrMisc tcltk2]; }; +Rcmdr = derive { name="Rcmdr"; version="2.2-1"; sha256="0kksy7yrn2ai0g2w6izszcng3gavjv1q7s1j592yz4s9llzyl9ax"; depends=[abind car RcmdrMisc tcltk2]; }; RcmdrMisc = derive { name="RcmdrMisc"; version="1.0-3"; sha256="134yr2n0m61bw8rv1iar2l9dk9a178k2pxba0bsxrd1c9j3s1f0j"; depends=[abind car colorspace e1071 Hmisc MASS readxl sandwich]; }; RcmdrPlugin_BCA = derive { name="RcmdrPlugin.BCA"; version="0.9-8"; sha256="0xkip7q9i57ghgz0rh0pl8nkl7bflf4w1g4zbyjdlcjypyf7lnr8"; depends=[BCA car flexclust foreign nnet Rcmdr RcmdrMisc rpart rpart_plot]; }; RcmdrPlugin_DoE = derive { name="RcmdrPlugin.DoE"; version="0.12-3"; sha256="1iifn71kjjgcp7dfz2pjq57mgbv4rrznrl3b3k9gdc2dva1z9zvc"; depends=[DoE_base DoE_wrapper FrF2 Rcmdr RcmdrMisc relimp]; }; RcmdrPlugin_EACSPIR = derive { name="RcmdrPlugin.EACSPIR"; version="0.2-2"; sha256="10r6rb0fwlilcnqxa38zh7yxc54x1a0by5x4f6gzdn9zs7aj5l1r"; depends=[abind ez nortest R2HTML Rcmdr RcmdrMisc reshape]; }; RcmdrPlugin_EBM = derive { name="RcmdrPlugin.EBM"; version="1.0-8"; sha256="0lkj869xdacvnma0qq20fqdsq59jqka2fv5h78f99lybzcb95i11"; depends=[abind epiR Rcmdr]; }; -RcmdrPlugin_EZR = derive { name="RcmdrPlugin.EZR"; version="1.29"; sha256="0ffhvh4542jr7slqr9rb118lfqgd58srcpi2p6y32xmk8s26idnx"; depends=[Rcmdr]; }; +RcmdrPlugin_EZR = derive { name="RcmdrPlugin.EZR"; version="1.30"; sha256="0af3cx0y4695ibrbz2yrgvy4zkdhqr4qv74smzin31gg2w2jav28"; depends=[Rcmdr]; }; RcmdrPlugin_EcoVirtual = derive { name="RcmdrPlugin.EcoVirtual"; version="0.1"; sha256="00yk09c1d1frwpfq12zvhg4gnc3p63r61abnil623jpr6wh4b2x8"; depends=[EcoVirtual Rcmdr]; }; RcmdrPlugin_FactoMineR = derive { name="RcmdrPlugin.FactoMineR"; version="1.5-0"; sha256="1hfnn12l3jljqpczpxz4m9ywbmw5rc1c8dpfl4cabrxnh6ymnk1a"; depends=[FactoMineR Rcmdr]; }; RcmdrPlugin_HH = derive { name="RcmdrPlugin.HH"; version="1.1-43"; sha256="0bn94wcrzvcrzhixh8kyg5gkax762mskhm2wvdfz1sm3n6fc7281"; depends=[HH lattice mgcv Rcmdr]; }; @@ -1804,7 +1874,6 @@ RcmdrPlugin_ROC = derive { name="RcmdrPlugin.ROC"; version="1.0-18"; sha256="0al RcmdrPlugin_SCDA = derive { name="RcmdrPlugin.SCDA"; version="1.1"; sha256="0pd765ndh8d7hy6spds3r4pi09i0ak4b1ygwczp6yr2zcs1aikbc"; depends=[Rcmdr SCMA SCRT SCVA]; }; RcmdrPlugin_SLC = derive { name="RcmdrPlugin.SLC"; version="0.2"; sha256="1nwpzmgfla1y05dxf81w0wmvvmvcq5jn5k8phlq30920ia7ybs8g"; depends=[Rcmdr SLC]; }; RcmdrPlugin_SM = derive { name="RcmdrPlugin.SM"; version="0.3.1"; sha256="10sjh2x02kb6yaxbvd9ihc6777j4iv6wi6k42gyl3k7i2c39fyn3"; depends=[car colorspace Rcmdr RColorBrewer vcd]; }; -RcmdrPlugin_StatisticalURV = derive { name="RcmdrPlugin.StatisticalURV"; version="1.0-1"; sha256="04pqqgy12rnhwm8l0752hb9p5h4l11mm7flm6n9kkcvbkvagsbrz"; depends=[agricolae car multcomp Rcmdr]; }; RcmdrPlugin_TeachingDemos = derive { name="RcmdrPlugin.TeachingDemos"; version="1.0-7"; sha256="0d473p0df99x9a3jfwb49gxsrcvslcw9yandramwq82cwy3sdcxw"; depends=[Rcmdr rgl TeachingDemos]; }; RcmdrPlugin_UCA = derive { name="RcmdrPlugin.UCA"; version="2.0-4"; sha256="066h5idmmjng4i1n84rbvqgjnj7f1xrj32l1icm1dw3gsh2ipa5l"; depends=[randtests Rcmdr tseries]; }; RcmdrPlugin_coin = derive { name="RcmdrPlugin.coin"; version="1.0-22"; sha256="0qmdjnjmgq52wgl4llg69q9x7hvwd73mz3swv0sv88v8zqg7xj93"; depends=[coin multcomp Rcmdr survival]; }; @@ -1822,24 +1891,24 @@ RcmdrPlugin_seeg = derive { name="RcmdrPlugin.seeg"; version="1.0"; sha256="105c RcmdrPlugin_sos = derive { name="RcmdrPlugin.sos"; version="0.3-0"; sha256="1r9jxzmf5ks62b5jbw0pkf388i1lnld6i27xhfzysjqdxcnzdsdz"; depends=[Rcmdr sos tcltk2]; }; RcmdrPlugin_steepness = derive { name="RcmdrPlugin.steepness"; version="0.3-2"; sha256="1na98sl42896y7yklaj07sn88lj6p6ik7gwy9ffaxzicqaa8plgf"; depends=[Rcmdr steepness]; }; RcmdrPlugin_survival = derive { name="RcmdrPlugin.survival"; version="1.0-5"; sha256="1gcc9l1x0vmzmq7v09mzybig1js5jsgsq84096yk494w3dnzrr0a"; depends=[date Rcmdr survival]; }; -RcmdrPlugin_temis = derive { name="RcmdrPlugin.temis"; version="0.7.3"; sha256="1ssnky8basr135lhnagq7dlwlj1c9qrvm14hbdm0k3g9gnqmxkgh"; depends=[ca lattice latticeExtra NLP R2HTML Rcmdr RColorBrewer slam stringi tcltk2 tm zoo]; }; -Rcolombos = derive { name="Rcolombos"; version="1.5.2"; sha256="1whjn447jk2bjyjf0fwl0165f8x41fjzmkmagl6dfq1c4373sf27"; depends=[httr]; }; +RcmdrPlugin_temis = derive { name="RcmdrPlugin.temis"; version="0.7.4"; sha256="0badjhi6k1sy2ap0j9ks537q7qw68vch6dmb79hnb1n2vdjzv28x"; depends=[ca lattice latticeExtra NLP R2HTML Rcmdr RColorBrewer slam stringi tcltk2 tm zoo]; }; +Rcolombos = derive { name="Rcolombos"; version="1.5.3"; sha256="1mw1qrdixpnv1rh882aa3sv47qmrd158srfxyrjamlqnqrp74mdk"; depends=[httr]; }; Rcplex = derive { name="Rcplex"; version="0.3-2"; sha256="1hx9s327af7yawzyq5isvx8n6pvr0481lrfajgh8nihj7g69nmk7"; depends=[slam]; }; -Rcpp = derive { name="Rcpp"; version="0.12.0"; sha256="182109z0yc1snqgd833ssl2cix6cbq83bcxmy5344b15ym820y38"; depends=[]; }; +Rcpp = derive { name="Rcpp"; version="0.12.1"; sha256="0jr141kjnibsbliprdl5zpa1kym4x67hycki51f613z5qihhv72m"; depends=[]; }; Rcpp11 = derive { name="Rcpp11"; version="3.1.2.0"; sha256="1x6n1z7kizagr5ymvbwqb7nyn3lca4d4m0ks33zhcn9gay6g0fac"; depends=[]; }; RcppAPT = derive { name="RcppAPT"; version="0.0.1"; sha256="0fyya80bd3w22qbsbznj9y21dwlj30a16d8a8kww4x8bpvmyil5z"; depends=[Rcpp]; }; RcppAnnoy = derive { name="RcppAnnoy"; version="0.0.6"; sha256="1n4wrllhxn95lgkralvw5jjgff93nay5wdlyihih7f195fq5wqms"; depends=[Rcpp]; }; -RcppArmadillo = derive { name="RcppArmadillo"; version="0.5.300.4"; sha256="0d6lda82lh896k7rf9s7alzqklmkrr0jwk8zxf6zqli7g1qmrywb"; depends=[Rcpp]; }; +RcppArmadillo = derive { name="RcppArmadillo"; version="0.5.600.2.0"; sha256="05r5drfqh0if2i7ggpl40kgnkb7zqzndgr4yzglfv8ykxq3z1146"; depends=[Rcpp]; }; RcppBDT = derive { name="RcppBDT"; version="0.2.3"; sha256="0gnj4gz754l80df7w3d5qn7a57z9kq494n00wp6f7vr8aqgq8wi1"; depends=[BH Rcpp]; }; RcppCNPy = derive { name="RcppCNPy"; version="0.2.4"; sha256="1cawaxghbliy7hgvqz3y69asl43bl9mxf46nwpbxc0vx3cq15fnk"; depends=[Rcpp]; }; RcppClassic = derive { name="RcppClassic"; version="0.9.6"; sha256="1xhjama6f1iy7nagnx1y1pkqffrq8iyplllcar24vxr0zirgi1xi"; depends=[Rcpp]; }; RcppClassicExamples = derive { name="RcppClassicExamples"; version="0.1.1"; sha256="0shs12y3gj5p7gharjik48dqk0fy4k2jx7h22ppvgbs8z85qjrb8"; depends=[Rcpp RcppClassic]; }; -RcppDE = derive { name="RcppDE"; version="0.1.2"; sha256="0ji5csfygqvrcahgx5gxy7dddpykckzw8hmqslsdl7l68wj60qkc"; depends=[Rcpp RcppArmadillo]; }; +RcppDE = derive { name="RcppDE"; version="0.1.4"; sha256="1pmrxs2lnpc8hw8f4fdnh9a3fhmin223jbxrnmfkp08krnjybhx9"; depends=[Rcpp RcppArmadillo]; }; RcppDL = derive { name="RcppDL"; version="0.0.5"; sha256="1gii00bna6k9byaax7gsx42dv1jjnkrp4clbmdq59ybq3vkvw8z2"; depends=[Rcpp]; }; -RcppEigen = derive { name="RcppEigen"; version="0.3.2.5.0"; sha256="164ghglzdwvrfpiw512j19m1hjpy4h7xyaqhlw1yrncngr2sdb99"; depends=[Matrix Rcpp]; }; +RcppEigen = derive { name="RcppEigen"; version="0.3.2.5.1"; sha256="1j41kyr2xsq0ha3dhd0iz62kghkvhnf8zp15qb4kgj6www086b4s"; depends=[Matrix Rcpp]; }; RcppExamples = derive { name="RcppExamples"; version="0.1.6"; sha256="1jnqh9nii5nncsah0lrkls8dqqcka9fnbvfg8ikl4cqjri17rpbv"; depends=[Rcpp]; }; RcppFaddeeva = derive { name="RcppFaddeeva"; version="0.1.0"; sha256="1rah18sdfmbcxy83i7vc9scrwyr34kn9xljkv9pa31js68gn2jrl"; depends=[knitr Rcpp]; }; -RcppGSL = derive { name="RcppGSL"; version="0.2.5"; sha256="16zvqgn4hkijsg5fxvzm6hq200w8z4189aag10zciw81ka4isqv5"; depends=[Rcpp]; }; +RcppGSL = derive { name="RcppGSL"; version="0.3.0"; sha256="1960sn9c3k1vp791c11srkid2nvvnhwl3hjrcaaljd590bxh4hz8"; depends=[Rcpp]; }; RcppMLPACK = derive { name="RcppMLPACK"; version="1.0.10-2"; sha256="1hdvdk6ni2iganmldarklv635yzgzja36zcpflh5w45c5y3ysqvj"; depends=[BH Rcpp RcppArmadillo]; }; RcppOctave = derive { name="RcppOctave"; version="0.14.5"; sha256="0dplc2x9fq2jfzfbcxdd45pmiimapqb3xhyjkzd4k6q8xmqjw95p"; depends=[digest pkgmaker Rcpp stringr]; }; RcppParallel = derive { name="RcppParallel"; version="4.3.14"; sha256="04kch598fqxkclv7ys8s9mqsd9wbzjqk1yjc66drzyycjc8jl9qi"; depends=[]; }; @@ -1847,6 +1916,7 @@ RcppProgress = derive { name="RcppProgress"; version="0.2.1"; sha256="1dah99679h RcppRedis = derive { name="RcppRedis"; version="0.1.5"; sha256="0yvf3yfdpk7s0vac7njpjdrkcq87j7q750vi6bvilqk9adlbjfny"; depends=[RApiSerialize Rcpp]; }; RcppRoll = derive { name="RcppRoll"; version="0.2.2"; sha256="19xzvxym8zbighndygkq4imfwc0abh4hqyq3qrr8aakyd096iisi"; depends=[Rcpp]; }; RcppSMC = derive { name="RcppSMC"; version="0.1.4"; sha256="1gcqffb6rkw029cpzv7bzsxaq0a5b032zjvriw6yjzyrpi944ip7"; depends=[Rcpp]; }; +RcppShark = derive { name="RcppShark"; version="0.1"; sha256="04l70d51ww247q0irk6jyhy3csybb8bhrw9cidinb0b18dcqmbyq"; depends=[BH checkmate Rcpp]; }; RcppStreams = derive { name="RcppStreams"; version="0.1.0"; sha256="0pb9ri2jajfh7643wx730bkmpvjvvmip682ynm2yn6x6brjll6jf"; depends=[BH Rcpp]; }; RcppTOML = derive { name="RcppTOML"; version="0.0.4"; sha256="0ipfbcp55ghmh8i80vyq0w2js07360wiq3z11qpkb816ln1gqb89"; depends=[Rcpp]; }; RcppXts = derive { name="RcppXts"; version="0.0.4"; sha256="143rhz97qh8sbr6p2fqzxz4cgigwprbqrizxpkjxyhq8347g8p4i"; depends=[Rcpp xts]; }; @@ -1855,7 +1925,7 @@ Rcsdp = derive { name="Rcsdp"; version="0.1.53"; sha256="0x91hyx6z9f4zd7djxlq7dn Rd2roxygen = derive { name="Rd2roxygen"; version="1.6"; sha256="0y0vh1dfflh8lrgrdj9wfmwh70ywd9kiia49f09h849mv1ln1z60"; depends=[formatR roxygen2]; }; Rdistance = derive { name="Rdistance"; version="1.3.2"; sha256="1ajmr58lgc74727jiydfrh4j6ra7vq8hp8nm3l2s3g2mc8n1mqk5"; depends=[]; }; Rdpack = derive { name="Rdpack"; version="0.4-18"; sha256="0s387gadr1bz5f5ix69z0r9hzcp5w4axbrn1iq9932kkincmg8qj"; depends=[bibtex gbRd]; }; -Rdsdp = derive { name="Rdsdp"; version="1.0.3"; sha256="0hsgcb7vk5csrcpzvvbjwhzrgbdr7p92lxahf6x8aflrqdk9d95j"; depends=[]; }; +Rdsdp = derive { name="Rdsdp"; version="1.0.4"; sha256="1cgfm2yyqak9hgyzb8k7c9rspbplcckwxnkq2wqapfgx2majxrip"; depends=[]; }; Rdsm = derive { name="Rdsm"; version="2.1.1"; sha256="07fc6c2hv0vvg15va552y54cla1mrqsd75w3zh02vc7yd226l4rj"; depends=[bigmemory]; }; ReCiPa = derive { name="ReCiPa"; version="3.0"; sha256="019vlvgxnqqlwghxygfqggzp2b4x2pqzdrbhaa703zdhm58k0n1g"; depends=[]; }; ReacTran = derive { name="ReacTran"; version="1.4.2"; sha256="1yc0k3wgg4yb6cqmjkyl25sfkbfcfxi5ria106w5jyx7dr5lfvdi"; depends=[deSolve rootSolve shape]; }; @@ -1868,6 +1938,7 @@ RefManageR = derive { name="RefManageR"; version="0.8.63"; sha256="17gmdyaqg8swf RegClust = derive { name="RegClust"; version="1.0"; sha256="1d9w74phw4fgafglc18j7dpmln96fvxnf1kdc9zddgj90p8yfx63"; depends=[]; }; RegressionFactory = derive { name="RegressionFactory"; version="0.7.1"; sha256="1zx885x49ncp2cl1v8hxzc3r2njka9cjsadjykbvqp9pdbm4ga5l"; depends=[]; }; RelValAnalysis = derive { name="RelValAnalysis"; version="1.0"; sha256="1jl1gfj44gfkmc1yp6g5wwn4miydwpvxwrg76rnkv9454zrc5pvp"; depends=[zoo]; }; +Relatedness = derive { name="Relatedness"; version="1.1"; sha256="0cmhy7cgjshbql1q9ncj6dxy6srx5hmdils0np6pxp6fpsyk1jfx"; depends=[]; }; Reliability = derive { name="Reliability"; version="0.0-2"; sha256="12zsicgbjqih3grbs62pw37x8wlkmnyc7g0yz6bqnfb4ym2yb7fg"; depends=[]; }; ReliabilityTheory = derive { name="ReliabilityTheory"; version="0.1.4"; sha256="1faab4z3rp0xqc0s0rrkw4kxgyc332xz3sjaz1wd4p6kiydds2hi"; depends=[actuar combinat FRACTION HI igraph mcmc PhaseType sfsmisc]; }; Renext = derive { name="Renext"; version="3.0-0"; sha256="0byjr9jf2wmcg9adcxfky544icj6fclyscjj2l93ynwpcs9lmjan"; depends=[evd numDeriv]; }; @@ -1880,23 +1951,25 @@ ReporteRsjars = derive { name="ReporteRsjars"; version="0.0.2"; sha256="1abvgzxi ResistorArray = derive { name="ResistorArray"; version="1.0-28"; sha256="055zr4rybgrvg3wsgd9vhyjpvzdskrlss68r0g7rnj4yxkix0kxz"; depends=[]; }; ResourceSelection = derive { name="ResourceSelection"; version="0.2-4"; sha256="01r1w03paazyix5jjxww89falba1qfiqcznx79a6fmsiv8gm2x5w"; depends=[]; }; RevEcoR = derive { name="RevEcoR"; version="0.99.2"; sha256="100sman51vvwg5xkypmksyyjqdb6g858z29vn7x4kvly8ncw4hfd"; depends=[gtools igraph magrittr Matrix plyr stringr XML]; }; -Rfacebook = derive { name="Rfacebook"; version="0.5"; sha256="0cl4s815i4yxp805j8nhqmva31imbd1xp3yxgi53qwjhagh4i57a"; depends=[httpuv httr rjson]; }; -Rfit = derive { name="Rfit"; version="0.21"; sha256="129z5ivwfxbh3rfwk98jnm6ibq5z9z3r9mhy9gv61jfr4ig78dcn"; depends=[quantreg]; }; +Rfacebook = derive { name="Rfacebook"; version="0.6"; sha256="0pl4bch50yzahcqlwvsg8wfdnn8c0p9w7nwlvn0n5xx0cnanmybd"; depends=[httpuv httr rjson]; }; +Rfit = derive { name="Rfit"; version="0.22.0"; sha256="1qnfm2p8xqz45ma53fl9ddagj5spfl8i9sxvn3rq19dgkwbdhqw2"; depends=[quantreg]; }; Rgbp = derive { name="Rgbp"; version="1.1.0"; sha256="1bz5w8xd9vldlsr23dsbp1s70xwsikl253awv8bk26hck76mk85s"; depends=[mnormt sn]; }; Rglpk = derive { name="Rglpk"; version="0.6-1"; sha256="011l60571zs6h8wmv4r834dg24knyjxhnmxc7yrld3y2qrhcl714"; depends=[slam]; }; Rgnuplot = derive { name="Rgnuplot"; version="1.0.3"; sha256="0mwpq6ibfv014fgdfsh3wf8yy82nzva6cgb3zifn3k9lnr3h2fj7"; depends=[]; }; RgoogleMaps = derive { name="RgoogleMaps"; version="1.2.0.7"; sha256="04k7h8hgxvgsccdiysbblplwjvn8m7g8h3anzdlxmmjaamd8l9lw"; depends=[png RJSONIO]; }; -Rhpc = derive { name="Rhpc"; version="0.15-176"; sha256="0amnr1x1zvh5y2cblx4wjw5y5wm1815x4rm7w03f0ri9qdk5i8ax"; depends=[]; }; +Rhpc = derive { name="Rhpc"; version="0.15-244"; sha256="1y83sshzsmsnm1m341x0ymmyz87dc5cjkbnr0v975p292rjqz3pd"; depends=[]; }; RhpcBLASctl = derive { name="RhpcBLASctl"; version="0.15-148"; sha256="1carylfz9gafradbdyg7fz2bypr7n72fbm8vhyiinmp0k4s5ipvc"; depends=[]; }; RidgeFusion = derive { name="RidgeFusion"; version="1.0-3"; sha256="10llmrsfpcqrkcbw7zj44kvfy7ywn9rk49n7zplilz8h94zzcmjv"; depends=[mvtnorm]; }; Ridit = derive { name="Ridit"; version="1.1"; sha256="02cni6hzf1bsns7vi8vklnhc0pfb5vwqhjnnfnjnnaxpzpsbvdfn"; depends=[]; }; +Rip46 = derive { name="Rip46"; version="1.0.2"; sha256="0wfp6fm5mgmjqjkn0c5hvjd95yn4zcv0s8xc5294qf5jqxp8b1w7"; depends=[Rcpp]; }; Ritc = derive { name="Ritc"; version="1.0.1"; sha256="1h41s4jihzj0yj8xyan0zhhyyiq8m5567vw4gvmmr81p1qfzvva8"; depends=[minpack_lm]; }; Rivivc = derive { name="Rivivc"; version="0.9"; sha256="0gl3040pp9nqm4g2ympnx80z64zfnn1hfsxka8ynd2cqhjn3b5i1"; depends=[signal]; }; Rjpstatdb = derive { name="Rjpstatdb"; version="0.1"; sha256="0iwgsp3mblp7bsx88wfpqn09y1xrkingfkm3z9jsi2bwrnrjc2iv"; depends=[RCurl XML]; }; Rlab = derive { name="Rlab"; version="2.15.1"; sha256="1pb0pj84i1s4ckdmcglqxa8brhjha4y4rfm9x0na15n7d9lzi9ag"; depends=[]; }; -Rlabkey = derive { name="Rlabkey"; version="2.1.127"; sha256="1bacl4ax9bgn27180hgh6gr4y0bwl3q4y18mc0cyb06yagzci5d9"; depends=[RCurl rjson]; }; +Rlabkey = derive { name="Rlabkey"; version="2.1.128"; sha256="1gs1xsz7w9acgjcr29wi04k1izm0ncr28i693rcbnbvncif3afmc"; depends=[RCurl rjson]; }; Rlibeemd = derive { name="Rlibeemd"; version="1.3.5"; sha256="1z691hfasq0iy9zq14xj5rb7na2gxppdaq8mczhxs8ql0fmsz4lf"; depends=[Rcpp]; }; Rlinkedin = derive { name="Rlinkedin"; version="0.1"; sha256="0w30zv4a842vckk4yqsh8hhkdz2gy650a0x29aacp77p9y79g9yn"; depends=[httpuv httr XML]; }; +Rlof = derive { name="Rlof"; version="1.1.1"; sha256="1px6ax2mr2agbhv41akccrjdrvp8a9lmhymp0cn8fjrib0ig8vql"; depends=[doParallel foreach]; }; Rmalschains = derive { name="Rmalschains"; version="0.2-2"; sha256="1ki3igj78sk4kk1cvbzrgzjdvw6kbdb7dmqglh6ws2nmr5b6a7fx"; depends=[Rcpp]; }; Rmisc = derive { name="Rmisc"; version="1.5"; sha256="1ijjhfy3v91fspid77rrkc5dkcb2lav37wc3f4k5lwrn24wzy5y8"; depends=[lattice plyr]; }; Rmixmod = derive { name="Rmixmod"; version="2.0.2"; sha256="1qv6zymkgsbplrq4aa87lvcsv75dssj8qqq2h9665v31jsgx84lr"; depends=[Rcpp]; }; @@ -1921,7 +1994,7 @@ Rook = derive { name="Rook"; version="1.1-1"; sha256="00s9a0kr9rwxvlq433daxjk4ji RootsExtremaInflections = derive { name="RootsExtremaInflections"; version="1.0"; sha256="1vcbjxx1yfla71fmmf5w8dqp0vqw93dxsjsvz0vj28bfqmkmh554"; depends=[]; }; Rothermel = derive { name="Rothermel"; version="1.2"; sha256="0zrz2ck3q0vg0wpa4528rjlrfnvlyiy0x1gr5z1aax1by7mdj82s"; depends=[ftsa GA]; }; RoughSetKnowledgeReduction = derive { name="RoughSetKnowledgeReduction"; version="0.1"; sha256="0zn6y2rp78vay9zwijpzhjpyq1gmcsa13m9fcsxkd1p2c8g5rbmf"; depends=[]; }; -RoughSets = derive { name="RoughSets"; version="1.2-1"; sha256="06bykfd26qdll0xadvvp0lljcibg613xi02gq5q8x3h0l9qa4c2x"; depends=[Rcpp]; }; +RoughSets = derive { name="RoughSets"; version="1.3-0"; sha256="08yz19ngipqpzfam6ivwsfnbg8ps2wwyi6djprmd7kfj0n43ab62"; depends=[Rcpp]; }; Rpdb = derive { name="Rpdb"; version="2.2"; sha256="0gf6qab05a3ky8skbbjiadizi1gs4pcw3zp25qj5gn82lb6382pd"; depends=[rgl]; }; Rphylip = derive { name="Rphylip"; version="0.1-23"; sha256="0kpqmik4bhr74ib8yvaavr10z4v4w3li5vibdhz7lvz35jfirg9r"; depends=[ape]; }; Rphylopars = derive { name="Rphylopars"; version="0.1.1"; sha256="04qd6zzgjgrfnv3ffv3jzlcl4ilfb67fxza49qq4rzinxc2s392b"; depends=[ape doBy geiger mvnmle phylolm phytools Rcpp RcppArmadillo]; }; @@ -1934,15 +2007,16 @@ Rserve = derive { name="Rserve"; version="1.7-3"; sha256="09rha4p86vak7ss721mwp5 RsimMosaic = derive { name="RsimMosaic"; version="1.0.2"; sha256="0d5z5dffi2prz0r31x08c8gw83448bhkma5mzcmrdlg6kx5y7dp8"; depends=[fields jpeg RANN]; }; Rsolnp = derive { name="Rsolnp"; version="1.15"; sha256="10w9gd1l62r638sh00fbgcpinsyyanfrqjdskrpk7z70fnyvwqm2"; depends=[truncnorm]; }; Rsomoclu = derive { name="Rsomoclu"; version="1.4.1"; sha256="0yr0nsm2b7wg1x57db9zclqnqqbmhyax9vgw13ynqirq2ysxxsg6"; depends=[Rcpp]; }; -Rssa = derive { name="Rssa"; version="0.13"; sha256="1prcivlwxky4h33ybky7n3wpn4vj1wm898ifsrhs1j9ywla1m2zf"; depends=[forecast lattice svd]; }; +Rssa = derive { name="Rssa"; version="0.13-1"; sha256="1v2gvk7pnzf2s2z0y7shjf0mz558lb6ian7vljkjcag06pyygmvi"; depends=[forecast lattice svd]; }; Rsundials = derive { name="Rsundials"; version="1.6"; sha256="0vrvxsznbclgls4jljc59lyli6cw9k1a3wapfrs6xbkqi8865iif"; depends=[]; }; Rsymphony = derive { name="Rsymphony"; version="0.1-21"; sha256="0wjj1wlh45fhgbzfqh0rdxrahc68w1gkvzx6kx46m6ww7k6l3pqb"; depends=[]; }; Rtsne = derive { name="Rtsne"; version="0.10"; sha256="14270gg0fp3imq9rafqj56ld56kzby7yyf5rg9z0wlimm7s72hy5"; depends=[Rcpp]; }; Rttf2pt1 = derive { name="Rttf2pt1"; version="1.3.3"; sha256="16bnhrg86rzi4g4zf235m1g8amyhcwxpw0wgcxynfiinm2fl4y1n"; depends=[]; }; -Rtts = derive { name="Rtts"; version="0.3.1"; sha256="1zgrkj4y7267d1n8iw1q3pgf2lmmklkslf5211kl7v788zxqr9c5"; depends=[RCurl]; }; +Rtts = derive { name="Rtts"; version="0.3.2"; sha256="1vig0qp4wvh6c3a2fcs3gdxnx9bd9gayz9dphixbfipbxi3bds28"; depends=[RCurl]; }; +Rtwalk = derive { name="Rtwalk"; version="1.8.0"; sha256="0zxf66lsfq8by40flv34xzd5yy0wa1ah9li1d0h7f0yh9nbwhxl5"; depends=[]; }; Ruchardet = derive { name="Ruchardet"; version="0.0-3"; sha256="0dgldi6fgp949c3455m9b4q6crqv530jph210xzph41vgw8a2q2v"; depends=[Rcpp]; }; Runiversal = derive { name="Runiversal"; version="1.0.2"; sha256="0667mspsjydmxi848c6wsf14gz72bmdj9b3lilma92b7fhqnv7ai"; depends=[]; }; -Runuran = derive { name="Runuran"; version="0.22.0"; sha256="10ial5kz4vfprl1rk4v7dd9l3h5wpvzf4ypynl9c1f6p62vz64im"; depends=[]; }; +Runuran = derive { name="Runuran"; version="0.23.0"; sha256="1qkml3n0h1z59085spla0ry1wl42c1ljg9nh2sxv6mnhxygm6aq1"; depends=[]; }; RunuranGUI = derive { name="RunuranGUI"; version="0.1"; sha256="0wm91mzgd01qjinj94fr53m0gkxjvx7yjhmwbkrxsjn6mjklq72l"; depends=[cairoDevice gWidgets gWidgetsRGtk2 Runuran rvgtest]; }; Rvcg = derive { name="Rvcg"; version="0.12.2"; sha256="15lj2ba9fwzbqzwwl7wpzij1n983qxmql2fwxjcapkl76hl68kp9"; depends=[Rcpp RcppEigen]; }; Rvmmin = derive { name="Rvmmin"; version="2013-11.12"; sha256="1ljzydvizbbv0jv5lbfinypkixfy7zsvplisb866f8w45amd152a"; depends=[optextras]; }; @@ -1952,8 +2026,10 @@ RxCEcolInf = derive { name="RxCEcolInf"; version="0.1-3"; sha256="04d6ffl4qs2vjb RxnSim = derive { name="RxnSim"; version="1.0.1"; sha256="17agz3kw7pj4mpl25y1n8l9lqfj63wn70rqpdkcpnx7j6s6933vx"; depends=[data_table fingerprint rcdk rJava]; }; Ryacas = derive { name="Ryacas"; version="0.2-12.1"; sha256="18dpnr6kj0a8f2jcbj9f6ahd0mg7bm1qm8dcs1wh8kmjl3klr1y8"; depends=[XML]; }; Rz = derive { name="Rz"; version="0.9-1"; sha256="1cpsmfxijrfx06ydpjzbaak7gkad4jjk1ph9453l9zly1cwzgspj"; depends=[foreign formatR ggplot2 memisc psych RGtk2]; }; +SACOBRA = derive { name="SACOBRA"; version="0.7"; sha256="12aj4ghs3i3ks749z0l95ipv8gi33xgggkyjf21zvnzmb1dgphys"; depends=[testit]; }; SAENET = derive { name="SAENET"; version="1.1"; sha256="13mfmmjqbkdr6j48smdlqvb83dkb34kx3i16gx0gmmafk3avdaxx"; depends=[autoencoder neuralnet]; }; SAFD = derive { name="SAFD"; version="1.0"; sha256="1mq9ncvgw4lpr2ixram9ds9pjcvmg6vbm31cscyqzky9q8bpyv9f"; depends=[]; }; +SAGA = derive { name="SAGA"; version="1.0"; sha256="1yd7q48mbj6mxr7vf79xlss9jv0qhgxkys9ffvfcqqaxzmsb7b0q"; depends=[plotrix]; }; SAM = derive { name="SAM"; version="1.0.5"; sha256="1fki43bp6kan6ls2rd6vrp1mcwvz92wzcr7x6sjirbmr03smcypr"; depends=[]; }; SAMUR = derive { name="SAMUR"; version="0.6"; sha256="0iyv7ljjrgakgdmpylcxk3m3xbm2xwc6lbjvl7sk1pmxvpx3hhhc"; depends=[Matching]; }; SAMURAI = derive { name="SAMURAI"; version="1.2.1"; sha256="02fipbjcsbp2b2957x6183z20icv1yly2pd1747nyww9bmpa7ycm"; depends=[metafor]; }; @@ -1975,14 +2051,14 @@ SCRT = derive { name="SCRT"; version="1.1.1"; sha256="02sndf5r1y27pgkw4wd9bhz7jh SCVA = derive { name="SCVA"; version="1.1.1"; sha256="1n660pml288ia4x18kjbrcx0n1cnasdxhl6pymh1nzxm4ai2hinc"; depends=[]; }; SCperf = derive { name="SCperf"; version="1.0"; sha256="1v9l7d9lil2gy5bw6i7bzc24808m063xaw2spl005j0a9rh4ag41"; depends=[]; }; SDD = derive { name="SDD"; version="1.2"; sha256="0wzgm1hgjv5s00bpd7j387qbvn5zvyrrd5fr2rgyll4cw9p4sd33"; depends=[Hmisc rgl rpanel sm tseries]; }; -SDDE = derive { name="SDDE"; version="1.0.0"; sha256="1vd96w6qjy7ak85gj1c255fb0ifaffp79k6swqnvskvkq2cc524m"; depends=[doParallel foreach igraph iterators]; }; +SDDE = derive { name="SDDE"; version="1.0.1"; sha256="14vql1bypn409w9xcx1jdzff6apiagcz2wng3y24h3mk7yjv9bzy"; depends=[doParallel foreach igraph iterators]; }; SDMTools = derive { name="SDMTools"; version="1.1-221"; sha256="1kacrpamshv7wz83yn45sfbw4m9c44xrrngzcklnwx8gcxx2knm6"; depends=[R_utils]; }; SDR = derive { name="SDR"; version="0.6.0.0"; sha256="0gjliq7pdssyqnchwyhf7mc6blrycfjg82bf75nxbhmis93g5dc4"; depends=[shiny]; }; SDaA = derive { name="SDaA"; version="0.1-3"; sha256="0z10ba4s9r850fjhnrirj2jgnfj931vwzi3kw9502r5k7941lsx0"; depends=[]; }; SEAsic = derive { name="SEAsic"; version="0.1"; sha256="1mg01sag6n1qldjvmvbasac86s7sbhi4k99kdkav2hdh6n9jg467"; depends=[]; }; SECP = derive { name="SECP"; version="0.1-4"; sha256="0a4j0ggrbs0jzcph70hc4f5alln4kdn2mrkp3jbh321a6494kwl1"; depends=[SPSL]; }; SEER2R = derive { name="SEER2R"; version="1.0"; sha256="0lk0kkp8sv3nl19zwqd7449mmjxsj3pqpzdmqf70qf8xh2pqyvzd"; depends=[]; }; -SEERaBomb = derive { name="SEERaBomb"; version="2015.1"; sha256="1pab5088pjhsx0lwh2xgm7hril0qpb0jprwm61d8c30bgrrqxni9"; depends=[DBI dplyr LaF mgcv Rcpp reshape2 rgl RSQLite XLConnect]; }; +SEERaBomb = derive { name="SEERaBomb"; version="2015.2"; sha256="1pm49icslhwd6j4xn6y9m7y7prjyn64bfvl5c12r2jkvq05sd6v8"; depends=[DBI dplyr ggplot2 LaF mgcv plyr Rcpp reshape2 rgl RSQLite scales XLConnect]; }; SEL = derive { name="SEL"; version="1.0-2"; sha256="1nrk0fx6ff330abq8askvp0790xnfv00m3sraqcr32hciw6ks421"; depends=[lattice quadprog]; }; SEMID = derive { name="SEMID"; version="0.1"; sha256="1bxdjdyqlvxz339jdgw90qi6kvfhjdmga38vhfl3ldlxfv2s9gfk"; depends=[igraph]; }; SEMModComp = derive { name="SEMModComp"; version="1.0"; sha256="1za67470f13z8jsy3z588c7iiiz993d3vjqrb8v9fann2r6sf1md"; depends=[mvtnorm]; }; @@ -1994,13 +2070,14 @@ SGP = derive { name="SGP"; version="1.2-0.0"; sha256="0v4ljhvfrvl6izprcrw8w36474 SGPdata = derive { name="SGPdata"; version="8.0-0.0"; sha256="0g25s2wcj47394fm16maygafnynizma3mgb3r65b5p9c27swk4v8"; depends=[]; }; SHELF = derive { name="SHELF"; version="1.0.1"; sha256="0nk63nrj0x1nlbwy885wmsipjcvhs8vqldlc33j4j8k49bkih7sz"; depends=[shiny]; }; SHIP = derive { name="SHIP"; version="1.0.2"; sha256="0b83cclibdz1r7sz968nmca4najwgps9wrdlsh4gxrl7fq40k4ln"; depends=[]; }; +SIBER = derive { name="SIBER"; version="2.0"; sha256="0k0hcl7nh0csdw33azz23xa57chif39z4snz8s46lkc0cvykvqww"; depends=[hdrcde mnormt rjags]; }; SID = derive { name="SID"; version="1.0"; sha256="1446zy4rqbw0lpyhnhyd06dzv238dxpdxgmsk34hqv7g3j7q5h1w"; depends=[igraph Matrix pcalg RBGL]; }; SII = derive { name="SII"; version="1.0.3"; sha256="1k9mvz6g25qs351c0vx7n5h77kb6k833jrcww14ni59yc9jgvsyg"; depends=[]; }; -SIMMS = derive { name="SIMMS"; version="1.0.1"; sha256="08kl9kzxqmzlacs8jfys0w7rngx93mlj4k1g8wzg4hmnlmic8l3k"; depends=[glmnet MASS survival]; }; +SIMMS = derive { name="SIMMS"; version="1.0.2"; sha256="1phvphk7ir9zw77ycm27y4fin6wyxppsmb1cnm4xc83v1yq7lql4"; depends=[glmnet MASS survival xtable]; }; SIN = derive { name="SIN"; version="0.6"; sha256="0vq80m3vl8spdnlkwvwy0gk3ziyybqzjp3scnfdcpn942ds7sgg9"; depends=[]; }; SINGLE = derive { name="SINGLE"; version="1.3"; sha256="0wd7jzys51rnwr5rhf2llpygqxydjrv0dill19v8sz9w0madkil4"; depends=[dse flsa igraph Matrix]; }; SIS = derive { name="SIS"; version="0.7-5"; sha256="197zf4s4f5wm8sl9h5vxwywmml7n05fwqlxbldn6wkpxix7gx0xm"; depends=[glmnet ncvreg survival]; }; -SKAT = derive { name="SKAT"; version="1.0.9"; sha256="030fhs25kmnkzx98mbl8xa5j8jzb821jmw9j675kkyi41w3dzk8c"; depends=[]; }; +SKAT = derive { name="SKAT"; version="1.1.2"; sha256="1q79szh5xf55ibx401gdga3il81h3hf6pi68mah8i8rqpxph2v8z"; depends=[]; }; SLC = derive { name="SLC"; version="0.3"; sha256="0l0y1sjj0glsb7vwla99ijclcgaq2y85bgz1wqm348n4shsmm2rs"; depends=[]; }; SLHD = derive { name="SLHD"; version="2.1-1"; sha256="0y3ilxd0phmks8zkmpgw7p5zrkwq4k95h976cwk58pavvhfwj9kb"; depends=[]; }; SLOPE = derive { name="SLOPE"; version="0.1.1"; sha256="1v58jcd60i7hhs8wirdfqr1sskdrynnwcnqsr3q19vgnj4x1dn8f"; depends=[Rcpp]; }; @@ -2024,7 +2101,7 @@ SOD = derive { name="SOD"; version="1.0"; sha256="0f0rh1qsjzxb3zzr440kvl6fnnj7dv SODC = derive { name="SODC"; version="1.0"; sha256="18s4rcp5dzchvwrzzbfhbs3x91zlg1rymjarxjk5i429mfrn0krx"; depends=[magic MASS ppls psych]; }; SOLOMON = derive { name="SOLOMON"; version="1.0-1"; sha256="0z91wsrgdir25ks4dnirzsg4f1ngal7n40235m3w43j6y6dhkqrc"; depends=[]; }; SOMbrero = derive { name="SOMbrero"; version="1.0"; sha256="10d2fakjkfk3p4dfh0cw1sp7i95f7lqdvz8b7x7sc5pg82dpffy7"; depends=[igraph knitr RColorBrewer scatterplot3d shiny wordcloud]; }; -SOPIE = derive { name="SOPIE"; version="1.4"; sha256="0kmzw0plr5bhc65g7aggf8g1i38aw9v2fw7x4vgdgb7zi5qmn5mx"; depends=[circular]; }; +SOPIE = derive { name="SOPIE"; version="1.5"; sha256="0isvb2vzzpn57bq0ix2pfaqdnl5z8qk6v6fvf15vnxcqg2sm63q5"; depends=[ADGofTest circular]; }; SOR = derive { name="SOR"; version="0.22"; sha256="1njwlsvdnwxidvwrx18h6h4dhrsdgy0fikkhn20pip42qqwd96gz"; depends=[Matrix]; }; SOUP = derive { name="SOUP"; version="1.1"; sha256="0k8nlvl4681cz07xjazprcc0jhknfa5hgr7w1qxxmgrp3sprr8r4"; depends=[tensor]; }; SPA3G = derive { name="SPA3G"; version="1.0"; sha256="15f38imwqn1zifym2821q7xysvws9vhlif4g16w0pnvk0wlhyb92"; depends=[]; }; @@ -2046,29 +2123,32 @@ SQN = derive { name="SQN"; version="1.0.5"; sha256="0kb8kf6g482zqdp4avwvhs3pqghf SQUAREM = derive { name="SQUAREM"; version="2014.8-1"; sha256="17fn37da4zslbfq5h4f3dfwyw1dxj5y2rgly3vjl2c4k5bnwxxqw"; depends=[]; }; SRCS = derive { name="SRCS"; version="1.1"; sha256="13zf3cqs53w68f9zc1fkb9ql84rvzn7g1hbykqrbvss8hjaq8x1r"; depends=[]; }; SRRS = derive { name="SRRS"; version="0.1.1"; sha256="0jv545a97q4pyl89lmhn3y0jhdzyq033mvx144x8lcgx59s7cyi3"; depends=[gtools tcltk2]; }; -SSDforR = derive { name="SSDforR"; version="1.4.10"; sha256="1i9k8ga1dkkds2bbczhsyxhlmq9pj1zbv6lwxchx5wrcbsq54yxi"; depends=[MASS psych TSA TTR]; }; -SSN = derive { name="SSN"; version="1.1.5"; sha256="1iymq6zzs3zfbjkz7h2ss8djdzvw2b3n68qazvw8vnrnkq3iyzry"; depends=[BH igraph lattice maptools MASS RSQLite sp]; }; +SSDforR = derive { name="SSDforR"; version="1.4.11"; sha256="0qmrz4mr8pmf4m5g2kxjj14kifybbgpyryfgkd6yan7ywc7cf4h0"; depends=[MASS psych TSA TTR]; }; +SSN = derive { name="SSN"; version="1.1.6"; sha256="1xd0b4zps750k9s51rxb9hmm1a3dvma8grjvvlaya9f3wzqw66ym"; depends=[BH igraph lattice maptools MASS RSQLite sp]; }; +SSRMST = derive { name="SSRMST"; version="0.1.0"; sha256="05bjc2bmsfykrddch7ynixqsq6z813wvibpwh37223q78xpb8nry"; depends=[survival survRM2]; }; SSrat = derive { name="SSrat"; version="1.0"; sha256="1qpsdfdngsgxx3mqgn4avl65w4v5v4jwsh1nnxzfn9iqi9mg4bhi"; depends=[plyr sna]; }; SSsimple = derive { name="SSsimple"; version="0.6.4"; sha256="0p7d4hx7mhn5myq8ajcij6hhg79rjxigk5v8z93yfdw4gjcb5wad"; depends=[mvtnorm]; }; +STAND = derive { name="STAND"; version="2.0"; sha256="07wrpmvk0jjlghvrb37xyai48vgzj0fby8y09qdxsxdlgwqg1f3s"; depends=[survival]; }; STAR = derive { name="STAR"; version="0.3-7"; sha256="1g78j4iyh78li1jaa3zz5qv4p41cg0imhmvbfakd34l32ppih4ll"; depends=[codetools gss mgcv R2HTML survival]; }; -STEPCAM = derive { name="STEPCAM"; version="1.0"; sha256="0lgikdj0mghz5hjm3rlrnnddjhvf9cmm0hwklbdyl3h816gq1jci"; depends=[FD gtools MASS vcd]; }; +STEPCAM = derive { name="STEPCAM"; version="1.1"; sha256="04c4px9x3hphsykjambpssdwnxpj2p5l0pq6yszlx7r7lqpzjb8y"; depends=[ade4 ape FD geometry gtools MASS vcd]; }; +STI = derive { name="STI"; version="0.1"; sha256="1p408y9w2h4ljaq0bsw7vc1xghczjprf558cyg6994m0nv5fh4c4"; depends=[fitdistrplus zoo]; }; STMedianPolish = derive { name="STMedianPolish"; version="0.1"; sha256="1mysmigksrgkgzz7cng5vn8i7q4marq144dpwww30lisw2jgraiq"; depends=[maptools reshape2 sp spacetime zoo]; }; STPGA = derive { name="STPGA"; version="1.0"; sha256="1kqxzjrxf194n006dr3h5kprb4l7qy8bgm2n6251p0sswpvr70j1"; depends=[]; }; SUE = derive { name="SUE"; version="1.0"; sha256="0akv724s84v2zixvwywj1ydfnfvcjnaabv6gm0601nsrh6ij1mi6"; depends=[]; }; SVMMaj = derive { name="SVMMaj"; version="0.2-2"; sha256="01njc7drq01r3364081dv9gn37vrql52zbrb60gd559f3jshqx3m"; depends=[kernlab MASS]; }; SVMMatch = derive { name="SVMMatch"; version="1.1"; sha256="1ykwrhlid4hs466xh3kv6y2qdhgk0jiglg0l3zwk5qlni6p26zc9"; depends=[Rcpp RcppArmadillo]; }; SWATmodel = derive { name="SWATmodel"; version="0.5.9"; sha256="1i48g9nbjfn30ppwyzyz3k181nscv4wx773l8mzfdwhx0nlv4kyj"; depends=[EcoHydRology]; }; -SWMPr = derive { name="SWMPr"; version="2.0.0"; sha256="1gnjz5p76xpw4rpish4d7vr3r9f880mw5fb27bnc6b408vy0781d"; depends=[data_table dplyr ggmap ggplot2 gridExtra httr maptools oce reshape2 tictoc tidyr wq XML zoo]; }; +SWMPr = derive { name="SWMPr"; version="2.1.0"; sha256="1ndakvra663ykinij7jblkg686ax029hzn9jmpsprawp51smc71j"; depends=[data_table dplyr ggmap ggplot2 gridExtra httr maptools oce RColorBrewer reshape2 tictoc tidyr wq XML zoo]; }; SYNCSA = derive { name="SYNCSA"; version="1.3.2"; sha256="1m057lhfaf0n35rs3sipia04qgkp04hv7wf7rvnr7bhzic9f4vg3"; depends=[FD mice vegan]; }; Sabermetrics = derive { name="Sabermetrics"; version="1.0"; sha256="1x35h1ffy6jnsak13vb1kcsbmh3hpass19gqic8grk0c3g1dvv6y"; depends=[]; }; Sample_Size = derive { name="Sample.Size"; version="1.0"; sha256="1vfnb2gg3rax4sxd81xqznfvh300nv45nn7zjsyrdjyg1n3ym7nw"; depends=[]; }; SampleSizeMeans = derive { name="SampleSizeMeans"; version="1.1"; sha256="1wbc46n8b8wbcxl21blbzs5728dr8r0l8d3jpzbha8pcav0xrh1m"; depends=[]; }; SampleSizeProportions = derive { name="SampleSizeProportions"; version="1.0"; sha256="0mvkvx3nni0l8ys68sq3h2zlbjvksdcdzxqlf03k0ca5bbcmdf9l"; depends=[]; }; SamplerCompare = derive { name="SamplerCompare"; version="1.2.7"; sha256="149ipraps9dngmvpy5w5q9a1zgnwqblhawrk6184g52ij33jv4ji"; depends=[mvtnorm]; }; -SamplingStrata = derive { name="SamplingStrata"; version="1.0-3"; sha256="16nrcv5hbbvn4rgckzagi84i7h49bd878mnpknlzmzr5ykzywsay"; depends=[]; }; +SamplingStrata = derive { name="SamplingStrata"; version="1.0-4"; sha256="007vrl8j0g8qy4qds29rzm5v5rgz076kkrwajpz5zxqy137c71jq"; depends=[]; }; Scale = derive { name="Scale"; version="1.0.4"; sha256="1fa3840kji34qpbw6mxfavk8wq0vq0vx2w6ya71idbkxnvwc3y06"; depends=[Hmisc MASS psych]; }; SciViews = derive { name="SciViews"; version="0.9-5"; sha256="199waafpn0ndg7szwfhw2jlgcx1f0pv7j0vix2vzz60knwm698xb"; depends=[ellipse MASS]; }; -SciencesPo = derive { name="SciencesPo"; version="1.3.6"; sha256="1xsxr5d88y9zs7kakglg93nmxin99g03z8h78ghkazy59rin22b6"; depends=[data_table dplyr ggplot2 magrittr plyr RSQLite scales stringr vcd]; }; +SciencesPo = derive { name="SciencesPo"; version="1.3.7"; sha256="01x54mgl825j7kg80agci1vf9qc408dfzpkgyafqbvpkc9swps16"; depends=[data_table dplyr ggplot2 magrittr plyr RSQLite scales stringr vcd]; }; ScoreGGUM = derive { name="ScoreGGUM"; version="1.0"; sha256="0f7sjfr3a8b8y1n9lrwyiyyljls3rbz84d9s93psi2fnmjj0kvgw"; depends=[]; }; ScottKnott = derive { name="ScottKnott"; version="1.2-5"; sha256="1ywwhdghcy30mp2nhsk2yhgb37nrdmb9yan5vvzsg66bchc3xgll"; depends=[]; }; ScrabbleScore = derive { name="ScrabbleScore"; version="1.0"; sha256="19vgaxnhvqsbllqxfbnhnar2j4g0fkxi7rfsmkks2bd2py81x04m"; depends=[]; }; @@ -2078,30 +2158,32 @@ SegCorr = derive { name="SegCorr"; version="1.0"; sha256="1fyrnhbifvc2y2n6r0zg5y Segmentor3IsBack = derive { name="Segmentor3IsBack"; version="1.8"; sha256="00m6fvx6s8mz477c8b4dmgdh52jf6jx1lcqzf84l90b1xw93qnv7"; depends=[]; }; Sejong = derive { name="Sejong"; version="0.01"; sha256="1d9gw42dbs74w7xi8r9bs6dhl23y16yxqzyhqqayvcm98q3l77nf"; depends=[]; }; SeleMix = derive { name="SeleMix"; version="0.9.1"; sha256="04gxgja35qs4k66iil014dzgl5bkx0qhr9w4v7qpmwv2bb07jwz3"; depends=[Ecdat mvtnorm xtable]; }; -SelvarMix = derive { name="SelvarMix"; version="1.0"; sha256="0yysmf854xz5l0lf2x0hw0qxbrdhgfrcx5ggw8n4pjfv553p38ni"; depends=[glasso Rcpp RcppArmadillo Rmixmod]; }; -SemiCompRisks = derive { name="SemiCompRisks"; version="2.0"; sha256="0in3pv66nhb0ar4xfxskvf24c7bqkr9ik069a4nynwnc3idpsq32"; depends=[]; }; +SelvarMix = derive { name="SelvarMix"; version="1.1"; sha256="0rn6ahqg3yriaf32rn07mdd5aqyqb35xv7v4ydc7q1ym1wmc9zla"; depends=[glasso Rcpp RcppArmadillo Rmixmod]; }; +SemiCompRisks = derive { name="SemiCompRisks"; version="2.2"; sha256="03k5vs3p8x28s5nv3hnf7ba5cxg01z81wklafsh3i2g9c8qrfla4"; depends=[MASS survival]; }; SemiMarkov = derive { name="SemiMarkov"; version="1.4.2"; sha256="0xfa3arn98pfnhbcq3p880v177dhczcjm5bc1m84kygbhiaifsjg"; depends=[MASS numDeriv Rsolnp]; }; SemiPar = derive { name="SemiPar"; version="1.0-4.1"; sha256="05gnk4s0d6276rmnyyv6gy1wpkji3sw563n8l7hmi9qqa19ij22w"; depends=[cluster MASS nlme]; }; -SemiParBIVProbit = derive { name="SemiParBIVProbit"; version="3.5"; sha256="1m063bv9fqsnmi6aw2w6dx2s2qgh9ci1v9bcvh83zb3j2ajprkrk"; depends=[magic mgcv survey trust VGAM VineCopula]; }; +SemiParBIVProbit = derive { name="SemiParBIVProbit"; version="3.6"; sha256="1fvipf6yl0fhz46xqd22y0wsmarr29fhnpjra1hf0wnbm5hyrf0z"; depends=[ggplot2 magic mgcv survey trust VGAM VineCopula]; }; SemiParSampleSel = derive { name="SemiParSampleSel"; version="1.2"; sha256="1k9xmby8hy4k0qn7pjj0rypxj4iqb206ixv92bz7ga0q8zd0nxbr"; depends=[copula gamlss_dist magic Matrix mgcv mvtnorm trust VGAM]; }; SenSrivastava = derive { name="SenSrivastava"; version="2015.6.25"; sha256="0r4p6wafnfww07kq19lfcs96ncfi0qrl8n9ncp441ri9ajwj54qk"; depends=[]; }; +SensMixed = derive { name="SensMixed"; version="2.0-8"; sha256="0ii6vkhrasqmk672wwm6zpy0v0hrllvh9bpxz47x11sx6bg96v63"; depends=[doBy ggplot2 Hmisc lme4 lmerTest plyr reshape2 shiny shinyBS xtable]; }; SensitivityCaseControl = derive { name="SensitivityCaseControl"; version="2.1"; sha256="00jqzqx7g0av9lw13is723gph486gb8ga0wgcmmzpmb24s5nya9z"; depends=[]; }; SensoMineR = derive { name="SensoMineR"; version="1.20"; sha256="1qw97cixndg2h29bbpssl0rqag3w8im4nm9964lr7r012y5wdqhx"; depends=[cluster FactoMineR KernSmooth]; }; SensusR = derive { name="SensusR"; version="1.0"; sha256="1b5yrb3iiijr7x0r4ga5dlx6yqqk4bvmh1377655s6c7j36sn1xd"; depends=[jsonlite lubridate plyr rworldmap sp]; }; -SeqFeatR = derive { name="SeqFeatR"; version="0.1.7"; sha256="195pkpk9sh99v01mk827axsynwaccygx19i1x0h0ma7bsqlmw1qc"; depends=[ape Biostrings calibrate ggplot2 phangorn plotrix plyr qvalue tcltk2 widgetTools]; }; +SeqFeatR = derive { name="SeqFeatR"; version="0.2.0"; sha256="1ypf3gm29vr9vvjx62z96hpcfsygaia9nmi3s71cv22b8p8mxwlx"; depends=[ape Biostrings calibrate coda ggplot2 phangorn plotrix plyr qvalue R2jags tcltk2 widgetTools]; }; SeqGrapheR = derive { name="SeqGrapheR"; version="0.4.8.5"; sha256="041hlf64zbndz76r076pmym4dw4xl3fahryvpvjspw0sdlhmfm8c"; depends=[Biostrings cairoDevice gWidgets gWidgetsRGtk2 igraph rggobi]; }; Sequential = derive { name="Sequential"; version="2.0.1"; sha256="11z7d02j97589s5csq5vzsfal3vip5klhm1q8h8pizqjv32i1lv5"; depends=[]; }; SetMethods = derive { name="SetMethods"; version="1.0"; sha256="0zizvrzyk01w4ncazvifmjm4h5zrpsf6n68n11sc8f5kzny9ia48"; depends=[betareg lattice]; }; -ShapeSelectForest = derive { name="ShapeSelectForest"; version="1.0"; sha256="0jy40aql33xwl4s7y2s3wb6yig4vr6ly6fhz7hn2d59b8428p04q"; depends=[coneproj raster rgdal]; }; +ShapeSelectForest = derive { name="ShapeSelectForest"; version="1.1"; sha256="1zk0lyyvf8bv4181kianixxx0s7wz8bvyq4ksm28qmqkwcqsv9cb"; depends=[coneproj raster rgdal]; }; SharpeR = derive { name="SharpeR"; version="1.0.0"; sha256="107nk8ipqx4mzfhlv5b6k6vx60zi9rmvzk8qaxqic170p4ppcl2z"; depends=[matrixcalc sadists]; }; -ShrinkCovMat = derive { name="ShrinkCovMat"; version="1.1.0"; sha256="1v2rr97wz5521cjy41j5vdqq29xd7696pc1rzw4angsfjrq3fnh4"; depends=[]; }; +ShrinkCovMat = derive { name="ShrinkCovMat"; version="1.1.1"; sha256="1vzsl6y57fri8q4455pbmiidfj91986mv67nr4ikck7f1z82mq38"; depends=[]; }; SiZer = derive { name="SiZer"; version="0.1-4"; sha256="0kiwvxrfa2b49r2iab5v2aysc2yzk5ck3h41f2hr0vq5pdnz0qy5"; depends=[boot]; }; SigTree = derive { name="SigTree"; version="1.10.2"; sha256="0d91s2x809mhirkmcdn8zvnivimssqhnydgfwchfrckk6p4jfm40"; depends=[ape phyext2 phylobase phyloseq RColorBrewer]; }; SightabilityModel = derive { name="SightabilityModel"; version="1.3"; sha256="0rgv5735y07yyv5y9c3flzha97ykn34ysmzy6as1z94hqfr4w746"; depends=[]; }; Sim_DiffProc = derive { name="Sim.DiffProc"; version="2.9"; sha256="1cq168ga4p70hgx7rsm9rvam8b0wvjivqp2nsprk39i864j9sr91"; depends=[rgl scatterplot3d]; }; SimComp = derive { name="SimComp"; version="2.2"; sha256="07gmlbwvv07kq3z7gq2jxlank011c0cqh8zwwp4pzf061d3gjdm6"; depends=[mratios multcomp mvtnorm]; }; -SimCorMultRes = derive { name="SimCorMultRes"; version="1.3.0"; sha256="0r3d91x9srzsa0g6p3jlzplpsrprbg11kv6fsbbh47pz02fvi8mc"; depends=[evd]; }; +SimCorMultRes = derive { name="SimCorMultRes"; version="1.3.1"; sha256="18lf3m0bzrrfhxl5nd00by4svqaqr1z9npq1cgrpbpb9h6zss7b7"; depends=[evd]; }; SimRAD = derive { name="SimRAD"; version="0.95"; sha256="1l4y39d05h5f2q609i73p07h093r9yca11dqw5iq1d7skwxcvf01"; depends=[Biostrings ShortRead]; }; +SimReg = derive { name="SimReg"; version="1.2"; sha256="1iwackg95slxmpj5lla00bar096a845ziygh6g6hj4vwpkciv6fb"; depends=[dplyr ggplot2 gridExtra hpoPlot plotrix Rcpp reshape2]; }; SimSeq = derive { name="SimSeq"; version="1.3.0"; sha256="0xkiiwk52sv8vivd4qsvzgjbw8q0csy0d45diym2mc9aq9nhf5dq"; depends=[fdrtool]; }; SimilarityMeasures = derive { name="SimilarityMeasures"; version="1.4"; sha256="1w4klcln4hy9vcik9csg7b3b8kk4raxgckwfrhqg089d80xbqsxj"; depends=[]; }; Simile = derive { name="Simile"; version="1.3.3"; sha256="1izyjp18m1inac3svkf59z3lddrv44m7pdkhisgkr987xs8gdch4"; depends=[]; }; @@ -2112,7 +2194,7 @@ SimuChemPC = derive { name="SimuChemPC"; version="1.3"; sha256="06sxknaykikcgbw7 SimultAnR = derive { name="SimultAnR"; version="1.1"; sha256="0jvmxwmbnx14h27b576dg9mw3c2z0w3m82f51f25zd1darcl06bj"; depends=[]; }; SixSigma = derive { name="SixSigma"; version="0.8-1"; sha256="15jdr10a7a6wv50vz9y6qcrbhnddl8zh4j4d48xrarrqbjy6l4p7"; depends=[ggplot2 lattice nortest qcc reshape2 testthat]; }; SkewHyperbolic = derive { name="SkewHyperbolic"; version="0.3-2"; sha256="10vilra5z884xinqkvk7ryi4nsq5zxlyn5qh23lsajba3b3qwhaw"; depends=[DistributionUtils GeneralizedHyperbolic RUnit]; }; -Skillings_Mack = derive { name="Skillings.Mack"; version="1.0-2"; sha256="1spf77ix9d264r126hnrjm7z8fw19v1bk5pqhqcf6lm93zlcgh8i"; depends=[gtools MASS matrixcalc]; }; +Skillings_Mack = derive { name="Skillings.Mack"; version="1.10"; sha256="0zxqiw87avw2rb2acj7mvpyfkf7iwnkshg73ib74y5ml9awmg2mw"; depends=[MASS matrixcalc]; }; Sleuth2 = derive { name="Sleuth2"; version="1.0-7"; sha256="1zav2g1yqc6bvzap4r5xwy9abkdj8iswivj5y2lylc25nkxwcswg"; depends=[]; }; Sleuth3 = derive { name="Sleuth3"; version="0.1-8"; sha256="02qbigg75ckyg65620bv88ggs4d9z3vivxd5j76x8hzg5lkk31yj"; depends=[]; }; SmarterPoland = derive { name="SmarterPoland"; version="1.5"; sha256="0qa31z0wgl8bgc3ihgbfdmp1ang3wyy4qylj81zxh1yn2zxx5fr0"; depends=[ggplot2 htmltools httr rjson]; }; @@ -2129,9 +2211,10 @@ SoilR = derive { name="SoilR"; version="1.1-23"; sha256="1cryypgnbck5hvkc2izrd8r SortableHTMLTables = derive { name="SortableHTMLTables"; version="0.1-3"; sha256="1jgrqsm0cj8qlk0s4qn3b83w96mgpp5gmhgcg9q2glc72v8c4ljh"; depends=[brew testthat]; }; SoundexBR = derive { name="SoundexBR"; version="1.2"; sha256="0chc332v3wcz30v70yvdxhvcfdmvf4fj193cn00gl899xfxal89p"; depends=[]; }; SoyNAM = derive { name="SoyNAM"; version="1.0"; sha256="0vqaxkbjwqx8xmwsmyvxg0i1x355wjpzgs2ndiv6dgsgdl52yvan"; depends=[lme4 NAM reshape2]; }; +SpaDES = derive { name="SpaDES"; version="1.0.1"; sha256="0082lsry08calfrabq0jkpdba64mmkysz95b76l3rnh57rh2a91w"; depends=[archivist CircStats data_table DiagrammeR digest downloader dplyr ff ffbase fpCompare ggplot2 gridBase httr igraph lubridate R_utils RandomFields raster secr sp stringi stringr]; }; SparseFactorAnalysis = derive { name="SparseFactorAnalysis"; version="1.0"; sha256="0lgfvydxb86r5hks1mf0p0yhgpx8s8fbkc3q6dimc728rw26qcv5"; depends=[directlabels ggplot2 MASS proto Rcpp RcppArmadillo truncnorm VGAM]; }; SparseGrid = derive { name="SparseGrid"; version="0.8.2"; sha256="057xbj2bhjm9i32kn39iscnqqdsvsmq0b8c92l8hnf9avf1sx10x"; depends=[]; }; -SparseM = derive { name="SparseM"; version="1.6"; sha256="1296snm3481259xwhj97vffwjb2v8367ivf2g5amd4pzqzwx6p1k"; depends=[]; }; +SparseM = derive { name="SparseM"; version="1.7"; sha256="0s9kab5khk7daqf6nfp1wm1qnhkssnnwnymisfwyk3kz4q5maqfz"; depends=[]; }; SparseTSCGM = derive { name="SparseTSCGM"; version="2.2"; sha256="0a1iscn4l587hn582hx4v8fawn6d9gg1m173fc0bsfpkyckgq8hx"; depends=[abind flare glasso longitudinal MASS mvtnorm network]; }; SpatPCA = derive { name="SpatPCA"; version="1.0.0.2"; sha256="0f8byi4zhrjj8fdka93r22kbjjqgkx3p06a65sppgvq65v8lff0l"; depends=[fields Rcpp RcppArmadillo]; }; SpatialEpi = derive { name="SpatialEpi"; version="1.2.1"; sha256="02mvahpbrlcnxmf272fk46wykv9s2lcjqd5yhd80dfs78qjwly77"; depends=[maptools MASS Rcpp RcppArmadillo sp spdep]; }; @@ -2144,7 +2227,7 @@ SpatialVx = derive { name="SpatialVx"; version="0.2-4"; sha256="0nm3mripq1fiqn7y SpatioTemporal = derive { name="SpatioTemporal"; version="1.1.7"; sha256="0rc5zf8cnjw59azgqmslfz2dl5i17dfmb7ls5c849qybp2gn2zdv"; depends=[MASS Matrix]; }; SpecHelpers = derive { name="SpecHelpers"; version="0.1.19"; sha256="1y6mcxz5d0d48awzkp73v8h43bkn8yjhr7whrs5lxv8ykygzfic5"; depends=[gsubfn]; }; SpeciesMix = derive { name="SpeciesMix"; version="0.3.1"; sha256="0wl15k00d7n9pmnp1kr28p05z4vrziprcdndw77kwkcgv51cvllk"; depends=[MASS numDeriv]; }; -SpecsVerification = derive { name="SpecsVerification"; version="0.3-0"; sha256="19vr4xlx9gx0ph6k2kf59bpbhmzncm1mmzz7ld3pjc7k4jfba3np"; depends=[]; }; +SpecsVerification = derive { name="SpecsVerification"; version="0.4-0"; sha256="1igiv3wxhvbnq1aanwlrchplkhs6ynm7n3f5rzmwr332fjfv4fsf"; depends=[]; }; SpherWave = derive { name="SpherWave"; version="1.2.2"; sha256="1wd9pql97m1zl0axzpkfq9sxadrm5cfax0gxh0ncqadaq7w7lml4"; depends=[fields]; }; SphericalCubature = derive { name="SphericalCubature"; version="1.0.1"; sha256="0j592zvs07yc6amahlxgdw0k1vqr89gvcq22vcwzkx62igvlf6pv"; depends=[cubature]; }; SphericalK = derive { name="SphericalK"; version="1.1"; sha256="18h1k0gy65jvzfpsda0ifv3nn3pvzx5ifllxbwh0my6w75c4biqn"; depends=[]; }; @@ -2154,18 +2237,19 @@ StMoMo = derive { name="StMoMo"; version="0.2.0"; sha256="1pddlwf3kns9fzmqddfak6 StMoSim = derive { name="StMoSim"; version="3.0"; sha256="18mdgpn0x6338zzvc7nwccz6ypqmlpv7pzcy5fwx5y2wfkmdp4rm"; depends=[Rcpp RcppParallel]; }; StableEstim = derive { name="StableEstim"; version="2.0"; sha256="080khfix88j4656hmdy9l0xpbk9zzw7z7d7f6yvwsbalk3ag18i5"; depends=[fBasics MASS Matrix numDeriv stabledist testthat xtable]; }; Stack = derive { name="Stack"; version="2.0-1"; sha256="09fgfhw9grxnpl5yg05p9gvlz38iw4prns1jn14nj3qx01k5rnxb"; depends=[bit ff ffbase plyr stringr]; }; -StanHeaders = derive { name="StanHeaders"; version="2.7.0"; sha256="016sha21aff2bmry0n77abhkgr5rqm8sb49y8qasg6xqmdz6cix0"; depends=[]; }; +StanHeaders = derive { name="StanHeaders"; version="2.8.0"; sha256="1km2929qd3whb5x6nvjwwlw9yb6dbg20w56b24rsgsij7jw8rpdl"; depends=[]; }; StandardizeText = derive { name="StandardizeText"; version="1.0"; sha256="0s267k2b109pcdiyd26gm4ag5afikrnnb55d3cs6g2fvzp744hfp"; depends=[]; }; Stat2Data = derive { name="Stat2Data"; version="1.6"; sha256="0pk68ffc6ffpddfpf9wi8ch39h6k3r80kldld3z5pnql18rc8nvx"; depends=[]; }; StatDA = derive { name="StatDA"; version="1.6.9"; sha256="01bjygis14b3yfsfkjbvy0zlhjxysjf46cfcw8p4a4lwik3qp03b"; depends=[cluster e1071 geoR MASS MBA mgcv rgl robustbase sgeostat xtable]; }; StatDataML = derive { name="StatDataML"; version="1.0-26"; sha256="1lcckapbhqdbg6alnhm2yls66lnkxnxamdlzx6pbfqv1dhsy36gf"; depends=[XML]; }; StatMatch = derive { name="StatMatch"; version="1.2.3"; sha256="10y9xaclxrw65v3k9qwdm7lvvf1kxpssc9nx0f15m8xkw5hhm7pa"; depends=[clue lpSolve proxy RANN survey]; }; StatMeasures = derive { name="StatMeasures"; version="1.0"; sha256="1bnbz803xx8kqhy1cx545b35si6f10za0mp5z82qfvd4kv9a9izz"; depends=[data_table]; }; -StatMethRank = derive { name="StatMethRank"; version="1.2"; sha256="1mk9yl1flr7garf0278mlj2309s620iiingd2cxkmdrzpfa9g4k2"; depends=[MASS pmr Rcpp rjags]; }; -StatRank = derive { name="StatRank"; version="0.0.4"; sha256="0s0jc4hvrry9a884fqfk3gp1w4ww5wif2kh3m0f22nn7qb49if9p"; depends=[plyr truncdist]; }; +StatMethRank = derive { name="StatMethRank"; version="1.3"; sha256="1jn7xg6f78lhpcd1b2bvjm90yws52klqz625lkwvwfmchwqrxi0i"; depends=[MASS pmr Rcpp rjags]; }; +StatRank = derive { name="StatRank"; version="0.0.6"; sha256="14d8v3bp8vgksi6q0mxajwd9s8zi6lns3qwi1vcr5xp9rjp4n6iy"; depends=[ggplot2 plyr truncdist]; }; Statomica = derive { name="Statomica"; version="1.0"; sha256="0x60n1d7wxfd013k6jjzvfi2mqgr52fd8ylk3yhm3907002jnh1g"; depends=[Biobase distr fBasics multtest]; }; Stem = derive { name="Stem"; version="1.0"; sha256="1fr02mi5qyxbqavdh2hg8ggw4nfjh3vs7g0vh834h6y0v53l71r5"; depends=[MASS mvtnorm]; }; StereoMorph = derive { name="StereoMorph"; version="1.4"; sha256="0xar1vx05q6dbfs9jmdbj7cz6jfrckhd8cm2ml922xg4zxrg23cf"; depends=[bezier jpeg png Rcpp rjson shiny tiff]; }; +StockChina = derive { name="StockChina"; version="0.3"; sha256="1di5yv7pxgqc2xa1wi3q1x4h2aw45fpbxqbgg3nw4w5vjdcax860"; depends=[]; }; Storm = derive { name="Storm"; version="1.2"; sha256="1fg8y9my9yp6px1gh43mr3m2s2z262mzq03pj52mqg3n186vk8z3"; depends=[permute rjson]; }; StrainRanking = derive { name="StrainRanking"; version="1.1"; sha256="0q6k90if74320mrs2ccq2izynylr8zakciwbc2c6ms0v57aalwic"; depends=[]; }; StratSel = derive { name="StratSel"; version="1.1"; sha256="0l08v71qmd170027y5vjnvgfm8kqvgaqrpms9msxhv8g5974kla8"; depends=[Formula MASS memisc mnormt]; }; @@ -2178,9 +2262,10 @@ Sunder = derive { name="Sunder"; version="0.0.4"; sha256="1na41nnscyc4v1qbwzfgqk SunterSampling = derive { name="SunterSampling"; version="1.0.1"; sha256="0qfld3j8xlpgp7c58zqw6gzm38m4d740lvdj5vmcflfcc6ja98sf"; depends=[]; }; SuperLearner = derive { name="SuperLearner"; version="2.0-15"; sha256="1sk45419awk8aahylmqbardx8lglx0d7hrwc0k2prnksk5r3549l"; depends=[nnls]; }; SuppDists = derive { name="SuppDists"; version="1.1-9.1"; sha256="1jqsv1lzjblc7sdb4gh8pkww9ar174bpbjl7mmdi59fixymwz87s"; depends=[]; }; -Surrogate = derive { name="Surrogate"; version="0.1-61"; sha256="0jifjns0v22risy783a0s71v6sn165wn7w6a47sb7dsdimrvnn9d"; depends=[lattice latticeExtra lme4 MASS msm nlme rgl]; }; +Surrogate = derive { name="Surrogate"; version="0.1-62"; sha256="1f61mssvli6aq76myb240pk8gl6sgciydxzrx29ap6gspk188ayl"; depends=[lattice latticeExtra lme4 MASS msm nlme rgl survival]; }; SurvCorr = derive { name="SurvCorr"; version="1.0"; sha256="01rqdl503q1qnkn49iqnsjzis6azdsfi6s2hjky5k2zd6c9g18k5"; depends=[fields survival]; }; SurvLong = derive { name="SurvLong"; version="1.0"; sha256="000ywg0sdk9kailiy7ckhq4mkaawl9hh88w6apj5khgpxsyj8aw3"; depends=[]; }; +SurvRank = derive { name="SurvRank"; version="0.1"; sha256="1i08yjprzd9irs46rifa5fsmmhwbsf4py0m8qp5rprznyr8504y3"; depends=[doParallel foreach ggplot2 glmnet gplots ipred mboost randomForestSRC reshape rpart sampling survAUC survival]; }; Survgini = derive { name="Survgini"; version="1.0"; sha256="1gxkdv2j1njbgnwb52vyhz7p2lrcg3hp6sry3kyhp4wkvf6gnhxi"; depends=[survival]; }; SvyNom = derive { name="SvyNom"; version="1.1"; sha256="1jym2x6nd9a3y7nk5hflqpy54gs67y4sqqspkvkalf5l2cc64did"; depends=[Hmisc rms survey survival]; }; SwarmSVM = derive { name="SwarmSVM"; version="0.1"; sha256="10gsasllycnmgaf5xq44ph5x7ajh38cnfd97x4hyc6bk4wz7p42r"; depends=[BBmisc checkmate e1071 kernlab LiblineaR Matrix SparseM]; }; @@ -2190,13 +2275,13 @@ SyNet = derive { name="SyNet"; version="2.0"; sha256="0mb9dscddkvmkf7l3bbcy4dlfm SynchWave = derive { name="SynchWave"; version="1.1.1"; sha256="127hllvig8kcs9gr2q14crswzhacv6v2s4zrgj50qdyprj14is18"; depends=[fields]; }; SynergizeR = derive { name="SynergizeR"; version="0.2"; sha256="0z32ylrjjvp8kr6lghhg57yq1laf9r0h8l3adysvis8bbpz2q2sj"; depends=[RCurl RJSONIO]; }; Synth = derive { name="Synth"; version="1.1-5"; sha256="1cfvh91nz6skjk8jv04fhwv3ga9kcsfgq3mdy8lx75jkx16zr0pk"; depends=[kernlab optimx]; }; -TAM = derive { name="TAM"; version="1.10-0"; sha256="1x53gjaqwm3hfilxkkn50zkdydlrh19bxcawy3hii9nvmkh6crqq"; depends=[CDM GPArotation lattice lavaan MASS msm mvtnorm plyr psych Rcpp RcppArmadillo sfsmisc tensor WrightMap]; }; +TAM = derive { name="TAM"; version="1.13-0"; sha256="05qzj07wxss7njwjzl4bjd5wdic46wsi28vi51c3zvc13bh3w7cl"; depends=[CDM GPArotation lattice lavaan MASS msm mvtnorm plyr psych Rcpp RcppArmadillo sfsmisc tensor WrightMap]; }; TANOVA = derive { name="TANOVA"; version="1.0.0"; sha256="0c2mrahchwagisrkjl5l1s0mv0ny80kngq8dz0fjj9lwxwqwvwa5"; depends=[MASS]; }; TAQMNGR = derive { name="TAQMNGR"; version="2015.2-1"; sha256="0j7qb15xy4g4ff0cmyjyz4lsalaxxf6zdwbq49j3y80ld0pvwhbk"; depends=[Rcpp]; }; TBEST = derive { name="TBEST"; version="5.0"; sha256="15piy507vv8x59xgga17splxszy0vm87qjbfgxycvba633jishsa"; depends=[fdrtool signal]; }; TBSSurvival = derive { name="TBSSurvival"; version="1.2"; sha256="12ipgffympqjjg8l9gbich5pgz0pqr5g07b0il26rr721xiyxk5v"; depends=[BMS coda mcmc normalp R_utils Rsolnp survival]; }; TCGA2STAT = derive { name="TCGA2STAT"; version="1.0"; sha256="1jvc29k8s9zqf6fk2gd20vz8zyck07mipfzq0pl69m6yf41mxlp2"; depends=[CNTools XML]; }; -TDA = derive { name="TDA"; version="1.3"; sha256="1f9f5v8c0ynxz8p4kr9w08c4icf0840h7iay8k1ydh5zmr43d7lk"; depends=[FNN igraph scales]; }; +TDA = derive { name="TDA"; version="1.4.1"; sha256="1nl7scnqb0qdpqjl259f6v3i8bqnh0a95a5navs7jlphlak0w6k9"; depends=[BH FNN igraph Rcpp scales]; }; TDAmapper = derive { name="TDAmapper"; version="1.0"; sha256="0cxgr2888v8azgdr3sg4vlcdyivkrxkk6dsp1ahv4frrwvg2z09k"; depends=[]; }; TDCor = derive { name="TDCor"; version="0.1-1"; sha256="001rmwi2v4vy1b2d7wwvvca4xnkizz8dmys3q3xbjv7wrfxyvai8"; depends=[deSolve]; }; TDD = derive { name="TDD"; version="0.4"; sha256="193y8brybkjsajrbnlx1sdnw1wyyn9rhlm5wvp4aamqhvi8z13vn"; depends=[pracma RSEIS signal]; }; @@ -2217,6 +2302,7 @@ TInPosition = derive { name="TInPosition"; version="0.13.6"; sha256="1cxxrfpbiyk TKF = derive { name="TKF"; version="0.0.8"; sha256="1db87lwx26ayv1x2k8qd9dfr6j3jkvdl9ykisaxr42l6akqy21nr"; depends=[ape expm numDeriv phangorn phytools]; }; TMDb = derive { name="TMDb"; version="1.0"; sha256="0bbcmsv7b3vvskhdjww03gbcgql44vsvyjz2fajy9w2vgkr6ga90"; depends=[httr jsonlite]; }; TOC = derive { name="TOC"; version="0.0-3"; sha256="0zgggkxsn7mqa5bh9rpb29ag019bwpy4yf3nd3nrcz5yk22bh7bn"; depends=[bit raster rgdal]; }; +TP_idm = derive { name="TP.idm"; version="1.0"; sha256="1dgcalzhkhj4cn1yjf23q6cm527fgf083n7nw7201824g78566n5"; depends=[]; }; TPmsm = derive { name="TPmsm"; version="1.2.0"; sha256="1670b9g6sqlg5xk76x77cph1wzp44yp957sn8px5k7kkb1hgi0pl"; depends=[KernSmooth]; }; TR8 = derive { name="TR8"; version="0.9.13"; sha256="07wrqwa5gf1l1y3b07mganr5xkzxdzrh6lrv7gf01m9b7bsz564m"; depends=[gdata gWidgets gWidgetstcltk plyr rappdirs RCurl taxize XML]; }; TRAMPR = derive { name="TRAMPR"; version="1.0-7"; sha256="135ylhijhpdxpznfdbdzwfsvy8bhw1yx28c3520a3lyrqvinpawg"; depends=[]; }; @@ -2228,10 +2314,11 @@ TSEN = derive { name="TSEN"; version="1.0"; sha256="1pn313g2ylbjc37rqcakd797vffn TSHRC = derive { name="TSHRC"; version="0.1-3"; sha256="18ygg7bqwg1pdqi52l1lf33gcd277895rlf5853yzh7ln2ivssmi"; depends=[]; }; TSMining = derive { name="TSMining"; version="1.0"; sha256="1n32acagffiw31pr485ly3phx33zw7vj009bvw4lbqpixa1pszj2"; depends=[foreach ggplot2 plyr reshape2]; }; TSMySQL = derive { name="TSMySQL"; version="2015.4-1"; sha256="1gdda7li320ba9qfxfl5c4cwl2ln5jdbvid98cryj175g0nbmx7b"; depends=[DBI RMySQL tframe TSdbi TSsql]; }; -TSP = derive { name="TSP"; version="1.1-2"; sha256="1y8vyc0lb5vlqs971zdkil6f78z13cpnzaxw9cqxn6j2a9ji7m0d"; depends=[foreach]; }; +TSP = derive { name="TSP"; version="1.1-3"; sha256="00panrsz9l0r1s2mb458nzqld1gqsax1vyq1a0iz1pi5dlnz6gkp"; depends=[foreach]; }; TSPostgreSQL = derive { name="TSPostgreSQL"; version="2015.4-1"; sha256="11201zpbrva6gwc9hg8pynadrps6d8pb3syzba9nyjpv2ck6x3ry"; depends=[DBI RPostgreSQL tframe tframePlus TSdbi TSsql]; }; TSPred = derive { name="TSPred"; version="2.0"; sha256="0p4msk12n8jc1ss8p7m15rxd0ip7v83c5p78v26nk5dz21a4xprp"; depends=[forecast]; }; TSSQLite = derive { name="TSSQLite"; version="2015.4-1"; sha256="10z8s967wmapkb56hh2brb5bafgqr8flwh0sr72yqqv0ca2d06sc"; depends=[DBI RSQLite tframe tframePlus TSdbi TSsql]; }; +TSTr = derive { name="TSTr"; version="1.0"; sha256="03yw2cld7myqvxal68awd0m62il5i1z18jdg2hwg8w9qph9b103y"; depends=[stringr]; }; TSTutorial = derive { name="TSTutorial"; version="1.2.3"; sha256="0hpk6k3lc72p8pdz5aad04lcjsz9k443h5gs09dc3i10wqw3yhxs"; depends=[MASS]; }; TSclust = derive { name="TSclust"; version="1.2.3"; sha256="0m04svw4z2rhvzyckn8l4pg4rmwfn8xlzd9k839c47ldbzgb4z6l"; depends=[cluster dtw KernSmooth locpol longitudinalData pdc wmtsa]; }; TScompare = derive { name="TScompare"; version="2015.4-1"; sha256="0jmxnrbsdg368f29bp70rc9i88si5zjblbcn8rcjyn2k9vpd3q2f"; depends=[DBI tfplot tframe TSdbi]; }; @@ -2245,13 +2332,14 @@ TSsdmx = derive { name="TSsdmx"; version="2015.2-2"; sha256="1xwriyg0raqd6812r6v TSsql = derive { name="TSsql"; version="2015.1-2"; sha256="1hpi2cssnkzqgnaj91wrvb94fs8zpfg8hi4m1zwswzyl3az0l9sc"; depends=[DBI tframe tframePlus TSdbi zoo]; }; TTAinterfaceTrendAnalysis = derive { name="TTAinterfaceTrendAnalysis"; version="1.5.1"; sha256="1i9p5s7xj3py8465yjjaqs2m7krjxzzqd86lkpbgzxnxjdnxcx5i"; depends=[e1071 fBasics Hmisc lubridate multcomp nlme pastecs relimp reshape tcltk2 timeSeries wq]; }; TTR = derive { name="TTR"; version="0.23-0"; sha256="1p648hdjdnda6c2vcrp6rf9x2gx8nks3ni8pjlkm2cm7fnbfrcj1"; depends=[xts zoo]; }; +TTS = derive { name="TTS"; version="1.0"; sha256="0dhxj474dqjxqg0fc2dcx8p5hrjn9xfkn0rjn2vz3js92fa9ik9h"; depends=[mgcv sfsmisc]; }; TTmoment = derive { name="TTmoment"; version="1.0"; sha256="0a4rdb4fk1mqnvvz0r15kni0g5vcj4xkkcwwv7c2gxc94xh5i5ih"; depends=[mvtnorm]; }; TUWmodel = derive { name="TUWmodel"; version="0.1-4"; sha256="1xxbrcs3dddzcya15pj4k86z05vnv06fnwblfvygx0zkw0m292av"; depends=[]; }; Table1Heatmap = derive { name="Table1Heatmap"; version="1.1"; sha256="1nrabjivfsdhaqmlq365pskkrp99jqsxn8vy03mdnqn5h5zv7wvx"; depends=[colorRamps]; }; TableMonster = derive { name="TableMonster"; version="1.2"; sha256="1cl70d0svzx8nsg6kw5dv50s9d6wxqkyg39d2d4vissbpilq6arn"; depends=[xtable]; }; TableToLongForm = derive { name="TableToLongForm"; version="1.3.1"; sha256="135q0bgsm2yndrg3vpwmihbqlyf3qkm97i0jvcw6bf06p6b2fk41"; depends=[]; }; TaoTeProgramming = derive { name="TaoTeProgramming"; version="1.0"; sha256="1b36s5mpm5vbhzcwmvm8g5pl7vpn6rsl5cnglfy8kgm1q9nnr7ff"; depends=[]; }; -TapeR = derive { name="TapeR"; version="0.3.2"; sha256="070zl7hqv5zprhs464gy1kmz0am58l0vig8xvdq6pbz94nrhvpj0"; depends=[nlme pracma]; }; +TapeR = derive { name="TapeR"; version="0.3.3"; sha256="0q5j7pn05z7hinwl5ypnrgh9ibsw6hvdfszjbnvavzab3bx8l6nn"; depends=[nlme pracma]; }; TauP_R = derive { name="TauP.R"; version="1.1"; sha256="10sjvcv70fjrsl5nnk9gm4sy7nhwm6aaq57gr37cb10v079ykmk1"; depends=[]; }; Taxonstand = derive { name="Taxonstand"; version="1.7"; sha256="0xs2kdsd6sa5vpxajw1rkraiy27km6q4mqsdsq1yfdl1wxv7m0sl"; depends=[]; }; TcGSA = derive { name="TcGSA"; version="0.9.8"; sha256="19gp3pj4p2svrfyviccvv13q82qj7584nck8zbba90hzv9g4xy86"; depends=[cluster ggplot2 gplots GSA gtools lme4 multtest reshape2 stringr]; }; @@ -2260,10 +2348,12 @@ TeachingDemos = derive { name="TeachingDemos"; version="2.9"; sha256="160xch4812 TeachingSampling = derive { name="TeachingSampling"; version="3.2.2"; sha256="07c1wx7hl246kvj9ah55kdjpag8a9zbzh3jy0680w5nnv8vzsxxs"; depends=[]; }; TestScorer = derive { name="TestScorer"; version="1.7.1"; sha256="0zfabkgpwgrr41x033j065hdf1vc2sg4bj9yqfdc6g1pq9kxdmd4"; depends=[]; }; TestSurvRec = derive { name="TestSurvRec"; version="1.2.1"; sha256="05f5gc8hvz09hx015jzis6ikki9c1brdq7l7a9bxm9bqbcc9f2f9"; depends=[boot survrec]; }; +TestingSimilarity = derive { name="TestingSimilarity"; version="1.0"; sha256="1fagy9168cz09p460pa0qyn8m79zg4i2b9j5vg8gm1ssqi2znsl9"; depends=[alabama DoseFinding lattice]; }; Thermimage = derive { name="Thermimage"; version="1.0.1"; sha256="16wpmwqfqjghhp4g5wpmgzf0ii2aa0gawcq74rfn4frfizzdy0ad"; depends=[]; }; Thinknum = derive { name="Thinknum"; version="1.3.0"; sha256="0j48vgr4wsc2chm95aprq0xm0dk720xk5zmiijxasg92sfp0va6n"; depends=[RCurl RJSONIO]; }; ThreeArmedTrials = derive { name="ThreeArmedTrials"; version="0.1-0"; sha256="1pafm8k90yv0hrk5a9adfv37087l2in0psslhkxha6mkmdh6a5f6"; depends=[MASS]; }; -ThreeWay = derive { name="ThreeWay"; version="1.1.2"; sha256="1vf71im3bs2b2v05j12l8qn181kah0mch4h13n71zqik1ykly6jf"; depends=[]; }; +ThreeGroups = derive { name="ThreeGroups"; version="0.21"; sha256="0hipxa45v9ysb2qbk33kjycnvqar7bff1ajxd6fzhpc3jc9hflw4"; depends=[]; }; +ThreeWay = derive { name="ThreeWay"; version="1.1.3"; sha256="17yl8zq029wiy3c0f4ssljx85dnm9n862wj2d24w7p0lxlvarmz6"; depends=[]; }; ThresholdROC = derive { name="ThresholdROC"; version="2.1"; sha256="06v8dqy23hk6xvqnk8csac041jbwf5p8wiam53wk1jriq7a2s8c2"; depends=[MASS numDeriv pROC]; }; TickExec = derive { name="TickExec"; version="1.1"; sha256="0v0m0wi49yw0ply19vnirl2zwnk61sxalx24l8cadvkssgs13509"; depends=[]; }; TiddlyWikiR = derive { name="TiddlyWikiR"; version="1.0.1"; sha256="0vwwjdmfc8c0y2gfa8gls1mzvp29y39c9sxryrgpk253jj9px1kr"; depends=[]; }; @@ -2305,11 +2395,11 @@ UScensus2010 = derive { name="UScensus2010"; version="0.11"; sha256="1q06spkh8f4 UWHAM = derive { name="UWHAM"; version="1.0"; sha256="1qaj8anaxqnx4nc6vvzda9hhhzqk9qp8q7bxm26qgia4hgascnrv"; depends=[trust]; }; Unicode = derive { name="Unicode"; version="0.1-5"; sha256="088f38qy3vympxj6n4vyvvqd4gldcfli9l8rmzgmm1rm3v195mvn"; depends=[]; }; UpSetR = derive { name="UpSetR"; version="0.0.5"; sha256="0z4z3xrdgl3rkhni6x356pl0xsa7nvkrcrcl1pfybvh4f6c7dpx2"; depends=[ggplot2 gridExtra plyr]; }; -UsingR = derive { name="UsingR"; version="2.0-4"; sha256="0wj6cn9ijc0rkpxsy1fd104m254b997dhmvwzz0knjkh5nybm8zm"; depends=[HistData Hmisc MASS]; }; -V8 = derive { name="V8"; version="0.6"; sha256="1cr9nm5wvi3b2766fpdgihnfmn1ckrwrzyya6dchvg2lr3giba38"; depends=[curl jsonlite Rcpp]; }; +UsingR = derive { name="UsingR"; version="2.0-5"; sha256="1w1swcb5srb2b76agbh3mipz8b3vbhpnhxfhg7k546y38j3crafq"; depends=[HistData Hmisc MASS]; }; +V8 = derive { name="V8"; version="0.8"; sha256="1mgqb6k1hi72i8y873pl2bi48ng7zgb7a4lav7wvkvl6rwq6rzls"; depends=[curl jsonlite Rcpp]; }; VAR_etp = derive { name="VAR.etp"; version="0.7"; sha256="0py5my3ilhcmz44m15hh0d219l9cz7rda4a9gbmf8wh9cgvvj1s3"; depends=[]; }; VBLPCM = derive { name="VBLPCM"; version="2.4.3"; sha256="0aibjkqlc8l3f17m52ifb25s639gkydvgdj2gkijk5mk0g681qdj"; depends=[ergm mclust sna]; }; -VBmix = derive { name="VBmix"; version="0.2.17"; sha256="0fhx2vk5ffq147kfgsqjbqwgv64m7z9mbz4gchj90440ih7kyxa5"; depends=[lattice mnormt pixmap]; }; +VBmix = derive { name="VBmix"; version="0.3.1"; sha256="0gicp470w6xy2z4r54ywjd4c9cck2yhhw7ismdp4jm9zsvc7nv1y"; depends=[lattice mnormt pixmap]; }; VCA = derive { name="VCA"; version="1.2"; sha256="0hifg22nz9pg56nc0097jp33pa3j0vc3gm7rh5x95jn4kf68zdis"; depends=[Matrix numDeriv]; }; VDA = derive { name="VDA"; version="1.3"; sha256="063mpwbyykx4f46wzfvrgnlq73ar7i06gxr4mjzbhqcfrsybi72b"; depends=[rgl]; }; VGAM = derive { name="VGAM"; version="0.9-8"; sha256="0wizv2r1k79ifg9m0z9m2l80bshvfmajanznk5a5370ih3fih33a"; depends=[]; }; @@ -2318,7 +2408,7 @@ VHDClassification = derive { name="VHDClassification"; version="0.3"; sha256="1i VIF = derive { name="VIF"; version="1.0"; sha256="0yvg6ikrcs7mhg0pavhcywrfysv7ylvnhxpc5sam86dbp69flx9x"; depends=[]; }; VIFCP = derive { name="VIFCP"; version="1.1"; sha256="1xy9bsiz4ixsf7znlcaswcyryj8wf6r778wl11b1c33ip3ibq28x"; depends=[]; }; VIGoR = derive { name="VIGoR"; version="1.0"; sha256="1c24s917aafqy46b3xlsw8v3afs11nd5bq83vlygpgnz1612jpga"; depends=[]; }; -VIM = derive { name="VIM"; version="4.3.0"; sha256="0gsafvrz5gbav7m728bxnjlyrg4kp418chsnpxpg4dvsgdjnw1fp"; depends=[car colorspace data_table e1071 MASS nnet Rcpp robustbase sp vcd]; }; +VIM = derive { name="VIM"; version="4.4.1"; sha256="0kpf4rdcm69k742d8naphw10wdwicx3jfm159n2d1c3v6hfjmv0g"; depends=[car colorspace data_table e1071 MASS nnet Rcpp robustbase sp vcd]; }; VIMGUI = derive { name="VIMGUI"; version="0.9.0"; sha256="195lakyik597sjkq6c5v3881p35111gzmj2r5f5nr53vi6bn4pzm"; depends=[Cairo foreign gWidgetsRGtk2 Hmisc RGtk2 survey tkrplot VIM]; }; VLF = derive { name="VLF"; version="1.0"; sha256="1il8zhm80mc22zj16dpsy4s6s9arj21l9ik0vccyrpnlr8ws3d3l"; depends=[]; }; VLMC = derive { name="VLMC"; version="1.4-1"; sha256="0y91cl9pv1d5s8956grdx3y4xa5l1fabrh1wl5hn11fjgyz1dcij"; depends=[MASS]; }; @@ -2335,7 +2425,7 @@ VdgRsm = derive { name="VdgRsm"; version="1.5"; sha256="13mbv3ih6p2915wdzq4zjx7m Vdgraph = derive { name="Vdgraph"; version="2.2-2"; sha256="1q8l711zbrrj4h1wmpv93nbvlg8xi6kjv22zpidkck8ncpyyla80"; depends=[]; }; VecStatGraphs2D = derive { name="VecStatGraphs2D"; version="1.7"; sha256="08f9ixpiq8s5h8h608wrs9l16xk3c1xcrvwgvm5wqm6xfkj9gpfd"; depends=[MASS]; }; VecStatGraphs3D = derive { name="VecStatGraphs3D"; version="1.6"; sha256="1pnpgnxdiis4kzwhh17k61aidyan5fp9rzqhvwf6gljb4csqsk54"; depends=[MASS misc3d rgl]; }; -VennDiagram = derive { name="VennDiagram"; version="1.6.9"; sha256="0sxgspqsn15y3pipd9wy4wh2n5rkb9bazqkfwkf88p483azpjxw9"; depends=[]; }; +VennDiagram = derive { name="VennDiagram"; version="1.6.16"; sha256="180w0bbfzms12w5s23rbndk413ly5bmdia5qnj0025hicfbh9wvx"; depends=[futile_logger]; }; VideoComparison = derive { name="VideoComparison"; version="0.15"; sha256="0592fz0v4xvq1qy2hj4ph90v7zn1cnzr6a094mp9p1k61ki3fbg2"; depends=[pracma Rcpp RCurl RJSONIO zoo]; }; VineCopula = derive { name="VineCopula"; version="1.6"; sha256="16hzjdllpk2dsc66x7yk8n8id0mwd63inlnqxggw9g2shvdyf96j"; depends=[ADGofTest copula igraph lattice MASS mvtnorm]; }; VizOR = derive { name="VizOR"; version="0.7-9"; sha256="1xw06y86nsrwpri6asrwh8kccjsqzzidgbpld6d6l7vrglp8m6sr"; depends=[lattice rms]; }; @@ -2352,15 +2442,15 @@ WMCapacity = derive { name="WMCapacity"; version="0.9.6.7"; sha256="167wx759xi7r WMDB = derive { name="WMDB"; version="1.0"; sha256="10wdjy3g2qg975yf1dhy09w9b8rs3w6iszhbzqx9igfqvi8isrr1"; depends=[]; }; WRS2 = derive { name="WRS2"; version="0.3-2"; sha256="0451cj7zqndhmyfc1p9r782a6nc31rza3h3rjfdx9fhc0mh66ggv"; depends=[MASS plyr reshape]; }; WWGbook = derive { name="WWGbook"; version="1.0.1"; sha256="0q8lnd1fp4rmz715x0lf61py3xw8wg55yq3gvswaqwy68dlqrzjc"; depends=[]; }; -WaterML = derive { name="WaterML"; version="1.3.2"; sha256="14dsmndfmp8v09ahyv0k4h6zss0b7533n0xy62vd0284dywlaimy"; depends=[httr plyr RJSONIO XML]; }; -Wats = derive { name="Wats"; version="0.2-16"; sha256="1wbyyllmjsmh8wb8npzizlfn3hsvfpqp9p3b5wx3zpsavqw839wy"; depends=[colorspace ggplot2 lubridate plyr RColorBrewer testit zoo]; }; +WaterML = derive { name="WaterML"; version="1.5.0"; sha256="1fdf8lam31fbxl8ink8hm1rqs1jr0p4xxm2vkin3i8k1cxj42zwi"; depends=[httr RJSONIO XML]; }; +Wats = derive { name="Wats"; version="0.10.1"; sha256="14nnk4s9wd498f1bm87zlbyvydj5l5b7mj404srx1wpbirbrnv6d"; depends=[colorspace ggplot2 lubridate plyr RColorBrewer testit zoo]; }; WaveletComp = derive { name="WaveletComp"; version="1.0"; sha256="16ghxqjbv39pmgd52im6ilkkh0hpnaw8ns0hwkngpbr479m1grdp"; depends=[]; }; WeightedCluster = derive { name="WeightedCluster"; version="1.2"; sha256="1d0df284fzfa34fi7b3d7f4zzm9ppyah46rj865446l5pjvl9np3"; depends=[cluster RColorBrewer TraMineR]; }; WeightedPortTest = derive { name="WeightedPortTest"; version="1.0"; sha256="007v3w9ssiv2sds7sikpal27g6pxwxhs7bvcyw6kr0vg8gvlbi8h"; depends=[]; }; WhatIf = derive { name="WhatIf"; version="1.5-6"; sha256="02lqvirnf24jn8b2s08z5fjmpilp2z08lww1s793n3pn783adbky"; depends=[lpSolve]; }; WhiteStripe = derive { name="WhiteStripe"; version="1.1.1"; sha256="1naavgkvgky3lzg5vlz11g589cxr0fgiqz2waz86da1ksk4a19gw"; depends=[mgcv oro_nifti]; }; -WhopGenome = derive { name="WhopGenome"; version="0.9.2"; sha256="0nhl3qanwvyxvkrdc0wngzdx6id0yfzbf9wp170mcsyd4qh7pxzs"; depends=[]; }; -WiSEBoot = derive { name="WiSEBoot"; version="1.1.0"; sha256="034f668cjbwz4qwavzflf0jifqhm50v1w7gsxbqq3dy6gbnyl4hl"; depends=[wavethresh]; }; +WhopGenome = derive { name="WhopGenome"; version="0.9.3"; sha256="1lalx3vr8n66nb84psjvc1mgi1rp7g1bylhxr93yyp5w4lwcfv77"; depends=[]; }; +WiSEBoot = derive { name="WiSEBoot"; version="1.2.0"; sha256="0ihprlv0kmpyrld02dky3r8qfaipl84x4v1ng12rpfk3a4vyb0wi"; depends=[wavethresh]; }; WideLM = derive { name="WideLM"; version="0.1-1"; sha256="0spxl960pgzh0cn1gkw2ayixpi982rr85qajcdqahmn9msk877h8"; depends=[Rcpp]; }; WikidataR = derive { name="WikidataR"; version="1.0.0"; sha256="061745pz4j9gldbwy6pa5pbxmin84csqpv7r5r8lanvc0m7kgcgx"; depends=[httr jsonlite WikipediR]; }; WikipediR = derive { name="WikipediR"; version="1.2.0"; sha256="1l9q9yg4z4j0lch9r8xr9q0f8mr0lpzf50ygmkkcvfd5sp7hirmi"; depends=[httr jsonlite]; }; @@ -2369,7 +2459,7 @@ WilcoxCV = derive { name="WilcoxCV"; version="1.0-2"; sha256="1kbb7ikgnlxybmvqrb WordPools = derive { name="WordPools"; version="1.0-2"; sha256="1izs4cymf2xy1lax85rvsgsgi05ygf0ibi9gzxc96sbgvy4m78kf"; depends=[]; }; WrightMap = derive { name="WrightMap"; version="1.1"; sha256="0dmximp549gr37ps56vz8mnlii7753dc5v0wl3s78cymjmnmyr0z"; depends=[]; }; WriteXLS = derive { name="WriteXLS"; version="3.6.1"; sha256="19rifwxfnmb65lf3a8nshyjnq3bn0lpkqfcwslfgjp6y8l7jx7gv"; depends=[]; }; -WufooR = derive { name="WufooR"; version="0.5.5"; sha256="0s5r7sawpx0lh38kf5m49bfazmmbd09f8cq5mp94h3als2hzmn3k"; depends=[dplyr httr jsonlite]; }; +WufooR = derive { name="WufooR"; version="0.5.7"; sha256="07w2g5igffvymzax85v3xqmfdqx74yslbkvrp5x3c0nl6d185i36"; depends=[dplyr httr jsonlite]; }; XBRL = derive { name="XBRL"; version="0.99.16"; sha256="1wrcm8srn185qrba7rig3fvwjz1n2ab296i0jr71vhyp9417h40q"; depends=[Rcpp]; }; XHWE = derive { name="XHWE"; version="1.0"; sha256="1ca8y9q3623d0vn91g62nrqf3pkbcbkpclmddw5byd37sdrgsi5l"; depends=[]; }; XLConnect = derive { name="XLConnect"; version="0.2-11"; sha256="02wxnr6h06h125dqszs8mzq4av842g445ndr59xgscxr03fyvi8p"; depends=[rJava XLConnectJars]; }; @@ -2380,13 +2470,13 @@ XMRF = derive { name="XMRF"; version="1.0"; sha256="0jnyy9pcksfadznidqsbwh8nlqv3 XNomial = derive { name="XNomial"; version="1.0.1"; sha256="134bwglqhgah7v3w6ir65dch2dwp5h4vldw521ba74l5v9b2j2h4"; depends=[]; }; XiMpLe = derive { name="XiMpLe"; version="0.03-21"; sha256="1j387jzxh0z9dmhvc0kpjjjzf781sgrw57nwzdqwx6bn09bw509d"; depends=[]; }; Xmisc = derive { name="Xmisc"; version="0.2.1"; sha256="11gwlcyxhz1p50m68cnqrxmisdk99v8vrsbvyr7k67f0kvsznzs1"; depends=[]; }; -YPmodel = derive { name="YPmodel"; version="1.1"; sha256="036f5y8qrcxglblgnaa15xzlz9pxbhbysrbr2gl66h9dvcd6kavr"; depends=[]; }; +YPmodel = derive { name="YPmodel"; version="1.2"; sha256="1spc2rb11sfw7ayfinpk3ldivs4ipjwy1k9dwsx5xa3bj70lzr6c"; depends=[]; }; YaleToolkit = derive { name="YaleToolkit"; version="4.2.2"; sha256="12wggdyz0wgnmxnqhp8bypyy1x1p50g49fwdzl2l43il44cdyv0g"; depends=[foreach iterators]; }; YieldCurve = derive { name="YieldCurve"; version="4.1"; sha256="0w47j8v2lvarrclnixwzaq98nv1xh2m48q5xvnmk7j9nsv2l3p68"; depends=[xts]; }; -YourCast = derive { name="YourCast"; version="1.6.2"; sha256="0vl37svwky6j1am235ac2wk1fdmh509w0h4m7y93lpjhzj6m8c1p"; depends=[foreign ggplot2 gridExtra lattice reshape2]; }; YplantQMC = derive { name="YplantQMC"; version="0.6-4"; sha256="09galr2bcjvfpcp84znsv45j2cfyn4yhdx31kxs062sylys6kxld"; depends=[geometry gplots LeafAngle rgl]; }; YuGene = derive { name="YuGene"; version="1.1.4"; sha256="0qvws7jccq7cg4r3lr7c19q56rh3gy2jx7bba4mfjy2ywl24q62n"; depends=[mixOmics]; }; ZIM = derive { name="ZIM"; version="1.0.2"; sha256="1n4dc0as011gzaac153zq1dfbg1axvmf9znlmhl7xjj4dz4966qm"; depends=[MASS]; }; +ZRA = derive { name="ZRA"; version="0.2"; sha256="1sx1q5yf68hhlb5j1hicpj594rmgajqr25llg7ax416j0m2rnagi"; depends=[dygraphs forecast]; }; ZeBook = derive { name="ZeBook"; version="0.5"; sha256="1djwda6hzx6kpf4dbmw0fkfq39fqh80aa3q9c6p41qxzcpim27dw"; depends=[deSolve triangle]; }; Zelig = derive { name="Zelig"; version="4.2-1"; sha256="1hhr9jx25fdnkqwyj2bkgrvqlah4z2drphmb5mdn1an2p2g23v9z"; depends=[boot MASS sandwich]; }; ZeligChoice = derive { name="ZeligChoice"; version="0.8-1"; sha256="1ql9yq83ipf0vpv63fpckylwq4jrcbfjgjm77f5ndkd83gqjzrmg"; depends=[VGAM Zelig]; }; @@ -2398,15 +2488,17 @@ aRpsDCA = derive { name="aRpsDCA"; version="1.0.1"; sha256="1hxf3lpdcx8h9gndclpp aRxiv = derive { name="aRxiv"; version="0.5.10"; sha256="1q8nblb0kfdidcj1nwxn0fap87wpkg49z0bgmwayskwv1p860wrh"; depends=[httr XML]; }; aSPU = derive { name="aSPU"; version="1.37"; sha256="01593vykj5hiw3nhl7kxylb52qvndpmpiwsb0igh0ci20ng45ci4"; depends=[]; }; aTSA = derive { name="aTSA"; version="3.1.2"; sha256="1p3spas0sxj08hkb8p6k2fy64w86prlw1hbnrqnrklr0hnkg2g54"; depends=[]; }; -abbyyR = derive { name="abbyyR"; version="0.1"; sha256="03krflrjhq7yx06wacfyxzqvq0v2b17xvcyl8sfnaylrilracwjq"; depends=[httr XML]; }; +abbyyR = derive { name="abbyyR"; version="0.2"; sha256="1zb05m5x0pflk8g6jyas3mhwy8pgygpfz679pkng6y18sfwyrz0k"; depends=[curl httr readr RecordLinkage XML]; }; abc = derive { name="abc"; version="2.1"; sha256="0ngzaaz2y2s03fhngvwipmy4kq38xrmyddaz6a6l858rxvadrlhb"; depends=[abc_data locfit MASS nnet quantreg]; }; abc_data = derive { name="abc.data"; version="1.0"; sha256="1bv1n68ah714ws58cf285n2s2v5vn7382lfjca4jxph57lyg8hmj"; depends=[]; }; abcdeFBA = derive { name="abcdeFBA"; version="0.4"; sha256="1rxjripy8v6bxi25vdfjnbk24zkmf752qbl73cin6nvnqflwxkx4"; depends=[corrplot lattice rgl Rglpk]; }; +abcrf = derive { name="abcrf"; version="0.9-4"; sha256="1w5390vblcik2b3cbnd5ndrbjp1cb2chnsf96jbjc1sikssmy3l4"; depends=[MASS randomForest]; }; abctools = derive { name="abctools"; version="1.0.3"; sha256="0985sgyz8dqqq59klhriwx5rara838i9ca3s40xhgw46n49q0nd7"; depends=[abc abind plyr]; }; abd = derive { name="abd"; version="0.2-8"; sha256="191gspqzdv573vaw624ri0f5cm6v4j524bjs74d4a1hn3kn6r9b7"; depends=[lattice mosaic nlme]; }; abf2 = derive { name="abf2"; version="0.7-1"; sha256="0d65mc1w4pbiv7xaqzdlw1bfsxf25587rv597hh41vs0j0zlfpxx"; depends=[]; }; abind = derive { name="abind"; version="1.4-3"; sha256="1km61qygl4g3f91ar15r55b13gl8dra387vhmq0igf0sij3mbhmn"; depends=[]; }; abn = derive { name="abn"; version="0.85"; sha256="1ml4l4fiqscc1ikv0wsi73rymb9599mpnhmzlfnvv4zp3fkfm6qm"; depends=[Cairo]; }; +abodOutlier = derive { name="abodOutlier"; version="0.1"; sha256="1pvhgxmh23br84r0fbmv7g53z2427birdja96a67vqgz18r3fdvj"; depends=[cluster]; }; abundant = derive { name="abundant"; version="1.0"; sha256="0n2yvq057vq5idi7mynnp15cbsijyyipgbl4p7rqfbbgpk5hy3qb"; depends=[QUIC]; }; acc = derive { name="acc"; version="1.1.7"; sha256="0b3p46y0d8z43x70yw8haidyk23m9jwsb2sml291p8dl79g8yl8h"; depends=[mhsmm PhysicalActivity zoo]; }; accelerometry = derive { name="accelerometry"; version="2.2.5"; sha256="00mn09j7y39sc7h5srnnfk2l73vhh6zq7rzc0vckfvs72lncmwv5"; depends=[Rcpp]; }; @@ -2415,7 +2507,7 @@ accrued = derive { name="accrued"; version="1.3.5"; sha256="10j8vrjgb43bggkf2gn5 acepack = derive { name="acepack"; version="1.3-3.3"; sha256="13ry3vyys12iplb14jfhmkrl9g5fxg3iijiggq4s4zb5m5436b1y"; depends=[]; }; acid = derive { name="acid"; version="1.0"; sha256="0m59xnz6435n7j3fggv274g5rap7cpr0zby3aqbaycfdfrp78d1h"; depends=[gamlss gamlss_dist Hmisc]; }; acm4r = derive { name="acm4r"; version="1.0"; sha256="1wqzc35i1rshx0zlmas8y4qkkvy6h9r4i4apscjjv1xg2wjflzxa"; depends=[MASS]; }; -acmeR = derive { name="acmeR"; version="1.0.0"; sha256="1wcfllpcv3x1kc50j212bc64ilsnmfa5ij6aybjgr52vhmf3gcmh"; depends=[foreign]; }; +acmeR = derive { name="acmeR"; version="1.1.0"; sha256="000b2hqlhj93958nddw0fqb15ahigs08najv2miivym046x04mf7"; depends=[foreign]; }; acnr = derive { name="acnr"; version="0.2.4"; sha256="1nry927zqhb34h9lcixr344n3sxvq1142zwgj8hadlw69dv8m59y"; depends=[R_utils xtable]; }; acopula = derive { name="acopula"; version="0.9.2"; sha256="1z8bs4abbfsdxfpbczdrf1ma84bmh7akwx2ki9070zavrhbf00cf"; depends=[]; }; acp = derive { name="acp"; version="2.0"; sha256="11ij2xhnkhy7lnzj8fld7habidb9av8a2bk22ycf62f556pqf533"; depends=[quantmod tseries]; }; @@ -2432,6 +2524,7 @@ adaptMCMC = derive { name="adaptMCMC"; version="1.1"; sha256="1y1qxn3qm59nyy9ld5 adaptTest = derive { name="adaptTest"; version="1.0"; sha256="08d7a5dlzhaj236jvaw3c91008l66vf5i4k5anhcs32a3j8yh2iv"; depends=[lattice]; }; adaptivetau = derive { name="adaptivetau"; version="2.2"; sha256="1xqvbbdmn70fmycpn0680q1l9s34kcmkjl812d7yrfxwm1bjfif5"; depends=[]; }; adaptsmoFMRI = derive { name="adaptsmoFMRI"; version="1.1"; sha256="1h79gh1bd6s2xhwf4whh72wf2cz4di2p8dnlf6192mfg108qc6nw"; depends=[coda Matrix MCMCpack mvtnorm spatstat]; }; +addhazard = derive { name="addhazard"; version="1.0.0"; sha256="178rn3md0pgbg9nimvypj4c3paq3bgh2h06vqj3p0n78hrwf97rl"; depends=[ahaz rootSolve survival]; }; additivityTests = derive { name="additivityTests"; version="1.1-4"; sha256="048ds90wqjdjy1nyhna3m06asdklbh8sx1n556kss2j1r1pma1sw"; depends=[]; }; addreg = derive { name="addreg"; version="2.0"; sha256="1lc8p70di466i061jrbahq4hir4g5a8rns6044jjjg8v7b1y8alc"; depends=[combinat glm2]; }; ade4 = derive { name="ade4"; version="1.7-2"; sha256="01pchn70jpz8v9l86ng34a2vgn3pv4v5iwxz5n39f685p9lkc2nn"; depends=[]; }; @@ -2450,22 +2543,22 @@ adlift = derive { name="adlift"; version="1.3-2"; sha256="0nzg16vhm5qg3xzczi3f6c ads = derive { name="ads"; version="1.5-2.2"; sha256="17k24dihl41jgkkglhnkj7lvvl53dgahjkb5jhfmfgk6i16c7s23"; depends=[ade4 spatstat]; }; adwave = derive { name="adwave"; version="1.1"; sha256="0kkwgcyxddzmrb8h1w1f4xy2cq40b86q0lxwfdhx25z3zjc4m1ni"; depends=[waveslim]; }; aemo = derive { name="aemo"; version="0.1.0"; sha256="1iik0rrqkkx9n1qb1pvq5iwxqmvs6vnx8z80hdzb5vqq0lvi1bsx"; depends=[assertthat dplyr lubridate stringr]; }; -afex = derive { name="afex"; version="0.13-145"; sha256="0wyjgxh1rdibj21f8dbwg7f30q1z6jwwpj2dcjx2rh60axvp1dir"; depends=[car coin lme4 Matrix pbkrtest reshape2 stringr]; }; +afex = derive { name="afex"; version="0.14-2"; sha256="0vyrb3pqpbrzpwyy45q1x4mbi56rpgkc54xf6l2srhc8rwprjh3v"; depends=[car coin lme4 lsmeans Matrix pbkrtest reshape2 stringr]; }; aftgee = derive { name="aftgee"; version="1.0-0"; sha256="0gfp05r6xvn9fcysbqyzkz916axpsc2d3lb5wmb1v92z1zw3037b"; depends=[BB geepack MASS survival]; }; agRee = derive { name="agRee"; version="0.4-0"; sha256="19nvn2hiijn81wgqhx7s6blr2ilzx6p2s2qx1lw9shmnsmyywmss"; depends=[coda lme4 miscF R2jags]; }; agop = derive { name="agop"; version="0.1-4"; sha256="1jwyl02z053rsdw9hryv1nyj9wlq310l51fghp1p0j51c159mlpx"; depends=[igraph Matrix]; }; -agricolae = derive { name="agricolae"; version="1.2-1"; sha256="1vrc1bjqcp3xk8q41bl3kvjvaj58gw19dv7vwsxn9r6r99hlb3j1"; depends=[cluster klaR MASS nlme spdep]; }; +agricolae = derive { name="agricolae"; version="1.2-2"; sha256="1i4r0wmgy9kiincp2m74wcrkfn0b10dklgksp9v6l6vi8n3vi5rq"; depends=[AlgDesign cluster klaR MASS nlme spdep]; }; agridat = derive { name="agridat"; version="1.12"; sha256="1b3dgrp6mkfpfaywqdm22sakadhnl1vlyj1n3rq6bc2f0gf8kcrw"; depends=[lattice reshape2]; }; agrmt = derive { name="agrmt"; version="1.39"; sha256="0qkl8wikvg635mr8v3n9svdicnb8sl4brrh7px1n5jy71h7cswd7"; depends=[]; }; agsemisc = derive { name="agsemisc"; version="1.3-1"; sha256="1905q35jgjhghlawql43yh296kbpysp927x3hj750yshz5zayzyr"; depends=[lattice MASS]; }; ahaz = derive { name="ahaz"; version="1.14"; sha256="1z7w5rxd5cya7kxhgxqvn72k87y33ginxra9g7j9wrfs5jgx6kvx"; depends=[Matrix survival]; }; aidar = derive { name="aidar"; version="1.0.0"; sha256="01vs14bz4k504q5lx65b60kyi7hgvjdmib8igiipjmg4snwh8hdk"; depends=[XML]; }; -akima = derive { name="akima"; version="0.5-11"; sha256="17n7iiwybwanvm5mflb1f2xx1gnw1pcmfsnl1f82afixpalbs0gh"; depends=[]; }; +akima = derive { name="akima"; version="0.5-12"; sha256="10lbx69val6ysy6gk5nn1nl0ldgg90xfnj5snf9kdixfapi8vxnk"; depends=[sp]; }; akmeans = derive { name="akmeans"; version="1.1"; sha256="1nqbxbx583n0h2zmpy002rlmr6j86j6bg76xj5c69brrh59dpyw1"; depends=[]; }; alabama = derive { name="alabama"; version="2015.3-1"; sha256="0mlgk929gdismikwx4k2ndqq57nnqj7mlgvd3479b214hksgq036"; depends=[numDeriv]; }; ald = derive { name="ald"; version="1.0"; sha256="1vphmqhx6wlzsz3s94jsa4mk6wpacp93wfgpj0vp9ljfb3aplhik"; depends=[]; }; algstat = derive { name="algstat"; version="0.0.2"; sha256="1ssdrrwnxrhx3syndqxqcaldlbnjamk3x2yiq7jgxy0qsiadmqsi"; depends=[mpoly Rcpp reshape2 stringr]; }; -alineR = derive { name="alineR"; version="1.1"; sha256="15qniiwvn55aab56p85sh84jqi5d77nyqxr86092vnamir5gdzkl"; depends=[]; }; +alineR = derive { name="alineR"; version="1.1.1"; sha256="0zzj72gwm5z5n679z6jl7vkzs23fmgjnfd2cmfnnlhs0q1l6qbsf"; depends=[]; }; allan = derive { name="allan"; version="1.01"; sha256="02bv9d5ywbq67achfjifb3i7iiaaxa8r9x3qvpri2jl1cxnlf27m"; depends=[biglm]; }; allanvar = derive { name="allanvar"; version="1.1"; sha256="142wy1mf4jbp4hy756rz95w24f4j1dgf14f1n5sd09dg4w98j7xg"; depends=[gplots]; }; alleHap = derive { name="alleHap"; version="0.7.2"; sha256="1x10grrv732a0iidr2c96vbl46553njhvvlq249jxn3y11lfq2gv"; depends=[gtools]; }; @@ -2493,20 +2586,22 @@ anesrake = derive { name="anesrake"; version="0.70"; sha256="17127rmjfrdwnr2m620 anfis = derive { name="anfis"; version="0.99.1"; sha256="1v8di5dzwb1g1ldi7idcmmr9nirp9kxvc8km1qq1i8zaw1bh8pqb"; depends=[]; }; anim_plots = derive { name="anim.plots"; version="0.1"; sha256="0qjwmxpkvjf27parh1fvhrkiczm4zlv9c034dp04yysbdz65r1by"; depends=[animation]; }; animalTrack = derive { name="animalTrack"; version="1.0.0"; sha256="0jlvfflpaq64s48sblzh1n1vx8g3870iss97whigri29s6hn79ry"; depends=[rgl]; }; -animation = derive { name="animation"; version="2.3"; sha256="1hqgkaxmyyfrx7cfzv00010r9l2n8gxm35jd41p3kc208mhd7ssp"; depends=[]; }; +animation = derive { name="animation"; version="2.4"; sha256="092xqnnr16rdf9yx68l6qgq4gg2ghdk31s4liycx71kvn6kr3vss"; depends=[]; }; anoint = derive { name="anoint"; version="1.4"; sha256="10gdqgag9pddvxh80h458gagvv1474g4pcpa71cg3h7g62rqvmv5"; depends=[glmnet MASS survival]; }; anominate = derive { name="anominate"; version="0.5"; sha256="0qhq3ngxi1d3yln6bafg3c36a7whnznnww0101da2y0i6dw79lg5"; depends=[coda MCMCpack oc pscl wnominate]; }; +anonymizer = derive { name="anonymizer"; version="0.2.0"; sha256="0zlzxcqy8fjhh6ab58a1pi0k686dzgap58d160ms6bsr5mgn3fbf"; depends=[]; }; antitrust = derive { name="antitrust"; version="0.94"; sha256="1k768lmx5vv069bd9fzly1205rxr9mkqi1p8jjx67kwmyhhw5sd2"; depends=[BB evd ggplot2 MASS numDeriv]; }; aod = derive { name="aod"; version="1.3"; sha256="1a6xs5d5289w69xd2salsxwikjjhjzvsnplqrq78b1sr6kzfyxz3"; depends=[]; }; aods3 = derive { name="aods3"; version="0.4-1"; sha256="074c16wmgd1vc2yvwx1y84bg55hvmm5yi8zgpwh51jcsbqlhbpgn"; depends=[boot lme4]; }; -aoos = derive { name="aoos"; version="0.2.0"; sha256="0dnhbynkc02mi1a5xsl992dqks44k57z9a05q7k2s25953bqfqq3"; depends=[]; }; +aoos = derive { name="aoos"; version="0.3.0"; sha256="0g1f25y54bjb3cdkp67md2hbibj2ff32asi7nmrpasmjas6yyf23"; depends=[]; }; aop = derive { name="aop"; version="0.99.5"; sha256="1mncia5m79m1nw2kwfsrf62i2dlmxdcwj0rrrs95s51b7c6d369h"; depends=[graph igraph Rgraphviz rjson]; }; aoristic = derive { name="aoristic"; version="0.6"; sha256="0b9h2l59vvrvbjjwwb43j74frvwa8lsj4x5kwhwpsfjfch1yqwjl"; depends=[classInt ggplot2 GISTools lubridate maptools MASS plotKML RColorBrewer reshape2 rgdal sp spatstat]; }; apTreeshape = derive { name="apTreeshape"; version="1.4-5"; sha256="0mvnjchhfbpbnrgnplb6qxa7r2kkvw29gqiprwggkf553wi6zl48"; depends=[ape quantreg]; }; +apaTables = derive { name="apaTables"; version="1.0.3"; sha256="05l2h3gf24rarn5nkhz3vmmy35nkk826nf88nzvqrk00z6xc8vsp"; depends=[car MBESS rockchalk]; }; apc = derive { name="apc"; version="1.1"; sha256="0gnjniy7gm5fh4wn7vwml3z5bw6ydd1xxq5npvqljbzy4vhh8k5a"; depends=[]; }; apcluster = derive { name="apcluster"; version="1.4.1"; sha256="1s7wsgimpln5kiy1ai8clq2r0i6vh8mr5v4xjha9phdbm8l8yfbg"; depends=[Matrix Rcpp]; }; ape = derive { name="ape"; version="3.3"; sha256="1zdgszyi5kwfj3kccx35q8z57p53zdp819hjqdw5z8y6q7b49j1c"; depends=[lattice nlme]; }; -apex = derive { name="apex"; version="1.0.0"; sha256="1y4y1kji5nvbk0igbv9xjwsjrnz7bsjj23cczydywg9nppsi9df0"; depends=[adegenet ape phangorn]; }; +apex = derive { name="apex"; version="1.0.1"; sha256="188hczb39dqi6xq2hbwhgas9jj9y7bbcsdz0kczimkbqwd9rz7cp"; depends=[adegenet ape phangorn]; }; aplore3 = derive { name="aplore3"; version="0.7"; sha256="1xj3k13wjpsydcrai474b94kyj298islzfpfwn8n51k67h8r4l08"; depends=[]; }; aplpack = derive { name="aplpack"; version="1.3.0"; sha256="0i6jy6aygkqk5gagngdw9h9l579lf0qkiy5v8scq5c015w000aaq"; depends=[]; }; apmsWAPP = derive { name="apmsWAPP"; version="1.0"; sha256="1azgif06dsbadwlvv9nqs8vwixp6balrrbpj62khzmv1jvqr4072"; depends=[aroma_light Biobase DESeq edgeR genefilter gtools multtest seqinr]; }; @@ -2518,14 +2613,14 @@ aprean3 = derive { name="aprean3"; version="1.0.1"; sha256="17rnq02sncl6rzwyln10 aprof = derive { name="aprof"; version="0.2.5"; sha256="1rbdj3dvg5sp19vp2jgwha4ln8wq45jwlllv4ls6i2rkr9vqvv56"; depends=[]; }; apsimr = derive { name="apsimr"; version="1.1"; sha256="125v9y1d6c0ml3vrh5vr05b4119qf77spcf6231piwg6wx9vq9vb"; depends=[ggplot2 lubridate MASS mgcv reshape2 XML]; }; apsrtable = derive { name="apsrtable"; version="0.8-8"; sha256="1qmm89npjgqij0bh6p393wywl837lfsshp2mv9b5izh1sg2qfwvw"; depends=[]; }; -apt = derive { name="apt"; version="2.3"; sha256="0yrgxdqzwa5zv6rv8d8nnlraxngq60i1f0yrkygwsj4kngv2yhyv"; depends=[car copula erer gWidgets urca]; }; +apt = derive { name="apt"; version="2.4"; sha256="1rmzc900c97bgcm6mh0lykqj14h8wgwbs4hszf2ar1pzwxkb7q26"; depends=[car copula erer gWidgets urca]; }; aqfig = derive { name="aqfig"; version="0.8"; sha256="0ha0jb5ag3zx6v7c63lsm81snslzb8y8g565mxjmf7vxpcmzzqsi"; depends=[geoR]; }; aqp = derive { name="aqp"; version="1.8-6"; sha256="03gwvb5sm9l4vyl0jh9rzjs3ka2qmw4qqh40ywahq3dchpbxmlzd"; depends=[cluster digest Hmisc lattice MASS plotrix plyr RColorBrewer reshape scales sp stringr]; }; aqr = derive { name="aqr"; version="0.4"; sha256="04frgil3nbxsww66r9x0c6f308pzqr1970prp20bdv9qm3ym5axw"; depends=[RCurl xts]; }; archdata = derive { name="archdata"; version="1.0"; sha256="1hs2pgdaixifqjnwcbrjxlrzng0r2vmv6pdzghsyvzlg28rnq2rk"; depends=[]; }; archetypes = derive { name="archetypes"; version="2.2-0"; sha256="1djzlnl1pjb0ndgpfj905kf9kpgf9yizrcvh4i1p6f043qiy0axf"; depends=[modeltools nnls]; }; archiDART = derive { name="archiDART"; version="1.1"; sha256="1md8y3nq575y9v4gj963y92as54h6bzaysnmjirk634rravps9ja"; depends=[XML]; }; -archivist = derive { name="archivist"; version="1.5"; sha256="0mcb35bllg82w0373prcai8h58gd6aj1pil90ni81zp7p1pdmcw3"; depends=[DBI digest httr lubridate RCurl RSQLite shiny]; }; +archivist = derive { name="archivist"; version="1.7"; sha256="0xx3mk7wdzi3vv4fpsz28hs5asxva9i666vyv6nf2pkjn3aigp67"; depends=[DBI digest httr lubridate RCurl RSQLite]; }; arf3DS4 = derive { name="arf3DS4"; version="2.5-10"; sha256="12cbrk57c9m7fj1x7nfmcj1vp28wj0wymsjdz8ylxhm3jblbgmxc"; depends=[corpcor]; }; arfima = derive { name="arfima"; version="1.2-7"; sha256="00mc50hssnv7qj6dn1l3jgx8ca4vjkqirc38rv538xwjgw9mm1ms"; depends=[ltsa]; }; argosfilter = derive { name="argosfilter"; version="0.63"; sha256="0rrc2f28hla0azw90a5gk3zj72vxhm1b6yy8ani7r78yyfhgm9ig"; depends=[]; }; @@ -2537,18 +2632,20 @@ aroma_affymetrix = derive { name="aroma.affymetrix"; version="2.13.2"; sha256="0 aroma_apd = derive { name="aroma.apd"; version="0.6.0"; sha256="1l9p5qww71h6wlg2z15wirsfz2i7hmf637l17zaf3n7fp9s3flc7"; depends=[R_huge R_methodsS3 R_oo R_utils]; }; aroma_cn = derive { name="aroma.cn"; version="1.6.0"; sha256="090qqvv6sk0508knmh2qr1lvpc2vr8s17mj6siblzc66ldp22dj7"; depends=[aroma_core matrixStats PSCBS R_cache R_filesets R_methodsS3 R_oo R_utils]; }; aroma_core = derive { name="aroma.core"; version="2.13.1"; sha256="1085qh092sij4c3wl3g10wc8agr13bnqbrq3k4fnm53jpa786qsx"; depends=[matrixStats PSCBS R_cache R_devices R_filesets R_methodsS3 R_oo R_rsp R_utils RColorBrewer]; }; -arqas = derive { name="arqas"; version="1.1"; sha256="1vdx9nfqkdrn6s4h90spb0g5vk7qxm5rg3mr2jkk4n67x7s5cv3x"; depends=[distr doParallel fitdistrplus foreach ggplot2 gridExtra iterators reshape]; }; +arqas = derive { name="arqas"; version="1.3"; sha256="0qycn9y08x2p0xwhindzvav5grg2wbz33xqaxqzyh22dikvkdslq"; depends=[distr doParallel fitdistrplus foreach ggplot2 gridExtra iterators reshape]; }; arrayhelpers = derive { name="arrayhelpers"; version="0.76-20120816"; sha256="1q80dykcbqbcigv2f9xg1brfm3835i0zvs0810q6kh682a3hpqbi"; depends=[]; }; ars = derive { name="ars"; version="0.5"; sha256="0m63ljb6b97kmsnmh2z5phmh24d60iddgz46i6ic4rirshq7cpaz"; depends=[]; }; -arules = derive { name="arules"; version="1.1-9"; sha256="1cn5gvjx4g66pn1c79xa0z6gvjxjc36bdzy3micqxl0md6z50gf7"; depends=[Matrix]; }; +artfima = derive { name="artfima"; version="1.0"; sha256="1nvsbkj58dcq3gjwlayg9jsbilxl2j8c13qirp2s5v42j8lm00vq"; depends=[gsl ltsa]; }; +arules = derive { name="arules"; version="1.2-1"; sha256="043pwfg5pjpqsaaw1z5ifvhqiz6012jc7wi7015iqc0grbvh237g"; depends=[Matrix]; }; arulesNBMiner = derive { name="arulesNBMiner"; version="0.1-5"; sha256="1q4sx6c9637kc927d0ylmrh29cmn4mv5jxxpl09yaclzfihjlk9a"; depends=[arules rJava]; }; -arulesSequences = derive { name="arulesSequences"; version="0.2-6"; sha256="1fvph6c8dy3hj0h63h85bzzzka8dx0cc0lcncz9svyahy1j4q3z0"; depends=[arules]; }; -arulesViz = derive { name="arulesViz"; version="1.0-2"; sha256="1lss9xlbdxpcqphczk0i0kib1px30jf2hcygrkhxk8aajnni9ar6"; depends=[arules igraph scatterplot3d seriation vcd]; }; +arulesSequences = derive { name="arulesSequences"; version="0.2-10"; sha256="0x7895kbkp4i1p6wi4blp8wd8jvmcfxhxq46w45c2lpzgcgg3p2r"; depends=[arules]; }; +arulesViz = derive { name="arulesViz"; version="1.0-4"; sha256="04lfg3bdf2wawpggwlhqrk242qq416lfciy9xgzmn919q7p6fhns"; depends=[arules igraph scatterplot3d seriation vcd]; }; asVPC = derive { name="asVPC"; version="1.0.2"; sha256="07nfwr0lsfpwgfdgzcdn1svw8dnjfni5ga9q77yjd1bj0wf76ci2"; depends=[ggplot2 plyr]; }; -asbio = derive { name="asbio"; version="1.1-5"; sha256="1br9rhj6nghwx54i2hpjrsdhwg8v38s66cy8fc4pg97zypdnikpj"; depends=[deSolve lattice multcompView mvtnorm pixmap plotrix scatterplot3d tkrplot]; }; +asbio = derive { name="asbio"; version="1.2-5"; sha256="05bk84qvqk6mk5xpzbhri60qhpsvza01yk5rni1qj7rxm7lxnmk8"; depends=[deSolve lattice multcompView mvtnorm pixmap plotrix scatterplot3d]; }; ascii = derive { name="ascii"; version="2.1"; sha256="19dfbp7k4bjxjn8wdzhbmz7g3za6gn8vcnd5qkm4dz7gg1fg7b8p"; depends=[]; }; asd = derive { name="asd"; version="2.0"; sha256="1nnsbh6g0bhvhp6644zf2l6frr3qnls0s7y7r0g211b5zagq20z3"; depends=[mvtnorm]; }; -ash = derive { name="ash"; version="1.0-14"; sha256="15x16ld25i160asqf4z4difa6zn2yfgl04j8y8nqb0djymdx7a1f"; depends=[]; }; +asdreader = derive { name="asdreader"; version="0.1-1"; sha256="0754n0p8zq5bwrcqgpn38yzh9aparqf5lavnclrqhs1zsnd4j36z"; depends=[]; }; +ash = derive { name="ash"; version="1.0-15"; sha256="1ay2a2agdmiz7zzvn26mli0x0iwk09g5pp4yy1r23knhkp1pn2lb"; depends=[]; }; asht = derive { name="asht"; version="0.5"; sha256="04wlvn4j8c8c3sxsa9ydb1garb7px768xvrnr6ywhb722srwi5gy"; depends=[bpcp coin exact2x2 exactci ssanv]; }; aspace = derive { name="aspace"; version="3.2"; sha256="1g51mrzb6amafky2kg2mx63g6n327f505ndhna6s488xlsr1sl49"; depends=[Hmisc shapefiles splancs]; }; aspect = derive { name="aspect"; version="1.0-4"; sha256="1kxddm8v1y0v2r7lg24r1wpzk7lqzxlrpzq5xb9kn343g53lny6i"; depends=[]; }; @@ -2584,14 +2681,19 @@ aylmer = derive { name="aylmer"; version="1.0-11"; sha256="1b6dryvfz9yp00nj8lv8j b6e6rl = derive { name="b6e6rl"; version="1.1"; sha256="17scdskn677vaxx1h2jypqaffvjgczryplg17nr3wigi1x0cxg7a"; depends=[]; }; bPeaks = derive { name="bPeaks"; version="1.2"; sha256="1z6jghcmw0lwv17ms7gdp5zzimaawq3ahbwkxa4062g373592smd"; depends=[]; }; bReeze = derive { name="bReeze"; version="0.4-0"; sha256="1znhmb2inbfv574adhwjwk3qf9kikrxrly4n6sfyim1z6sagnj0z"; depends=[]; }; +bWGR = derive { name="bWGR"; version="1.0"; sha256="1asz30b4ja6jd27r8c91lm2vlnnxlvs0f5n8yqy8wblp6bbvph5z"; depends=[Rcpp]; }; babar = derive { name="babar"; version="1.0"; sha256="13j5klrcnd4dwrgdbxlvwcj56l9mzi4j9ga6jj5i04pgdc6vsfx5"; depends=[]; }; babel = derive { name="babel"; version="0.2-6"; sha256="1dsxjnhr0cky7wlzz8pr8rn3cldfcyrh8v6gn2ba4abr0df7i4dd"; depends=[edgeR]; }; babynames = derive { name="babynames"; version="0.1"; sha256="0qq0303mmcnpfy5630d7rqmb8rl36p7hg2z842rzd4lkhy8c2l07"; depends=[]; }; -backShift = derive { name="backShift"; version="0.1.1"; sha256="11mr2pdg63xa5yrybv91fxz69jizpshs67i7a8lb84n6ydaq1pj3"; depends=[clue igraph jointDiag matrixcalc pcalg reshape2]; }; -backtest = derive { name="backtest"; version="0.3-2"; sha256="06q488pynxgis1m6rxc8hgscpy8vimffpi4aamviwb089sjzilnn"; depends=[lattice]; }; +backShift = derive { name="backShift"; version="0.1.2"; sha256="07a7jl6n0xvz6dg9zy6yjj2a35cs5n1vzz0hwk39dqx49101rymg"; depends=[clue ggplot2 igraph jointDiag matrixcalc pcalg reshape2]; }; +backpipe = derive { name="backpipe"; version="0.1.2"; sha256="0mz3z3fyv1b345vhsv1xbm7v90c1i7pbz01vfys4q4pf50g3yxxs"; depends=[]; }; +backtest = derive { name="backtest"; version="0.3-4"; sha256="1s0mf247dz2vvyf4m3sp9xiqhv7xcs4rphyg9gdcy73060sah2ad"; depends=[lattice]; }; +backtestGraphics = derive { name="backtestGraphics"; version="0.1.5"; sha256="1hz0q59nl4z58n39yvb5kx6vvwmrc6jhb05wcdgf6018xrjpnhfn"; depends=[dplyr dygraphs scales shiny xts]; }; +bacr = derive { name="bacr"; version="1.0"; sha256="1as9vfzwv8aix44mr0j3av0ghnqmmbcs6w0jpwbjrvxkb7bhxgdm"; depends=[MCMCpack]; }; bagRboostR = derive { name="bagRboostR"; version="0.0.2"; sha256="1k9w98p3ad3myzyqhcrc4rsn7196qvhnmk5ddx3fpd1rdvy2dnby"; depends=[randomForest]; }; -bamdit = derive { name="bamdit"; version="2.0"; sha256="1zqc2iwsa9p3lvqbf87yf6j24i0c5ybpizxp4gkaibg2llaskxki"; depends=[ggplot2 gridExtra R2jags rjags]; }; +bamdit = derive { name="bamdit"; version="2.0.1"; sha256="105y4cayymqhd3f7dk297syv966pba9cjg6dx9jabcximicdw4l9"; depends=[ggplot2 gridExtra R2jags rjags]; }; bandit = derive { name="bandit"; version="0.5.0"; sha256="03mv4vbn9g4mqikd9map33gmw2fl9xvb62p7gpxs1240w5r4w3fp"; depends=[boot gam]; }; +bapred = derive { name="bapred"; version="0.1"; sha256="04p9pzqsisdc21w90qfbjckwl7mqnyhgkyq1qlc58jrxsxnarcxa"; depends=[FNN fuzzyRankTests glmnet lme4 MASS mnormt sva]; }; barcode = derive { name="barcode"; version="1.1"; sha256="14zh714cwgq80zspvhw88cs5b82gvz4b6yfbshj9b7x0y2961nxd"; depends=[lattice]; }; bartMachine = derive { name="bartMachine"; version="1.2.0"; sha256="0hcz39397v2y8qgdy67i97j0z5g2qidkkf5p9ydcqp9fp5msshq7"; depends=[car missForest randomForest rJava]; }; base64 = derive { name="base64"; version="1.1"; sha256="1wn3zj1qlgybzid4nr6hvlyqg1rp2dwfh88vxrfby2fy2ba1nl5x"; depends=[]; }; @@ -2622,15 +2724,16 @@ bbemkr = derive { name="bbemkr"; version="2.0"; sha256="015c57s8mpimm82nddnh382w bbmle = derive { name="bbmle"; version="1.0.17"; sha256="1j3x2glnn0i0fc0mmafwkkqh1js90g8q7gix2vrhif0pmwinsrak"; depends=[lattice MASS numDeriv]; }; bbo = derive { name="bbo"; version="0.2"; sha256="19xrbla3bb3csg3gjjrpkgyr379zfwyh293bcrcd6j8rnm6g4i01"; depends=[]; }; bc3net = derive { name="bc3net"; version="1.0.2"; sha256="0iakqf4apscxb4mb5klj9qklbi25dmdd77la3ads2y882gm2nj0z"; depends=[c3net igraph infotheo lattice Matrix]; }; -bclust = derive { name="bclust"; version="1.4"; sha256="1s04fqff5bw6d5kk0smvach6yq492dv1w0ahh9mrm2jsi2q58h7p"; depends=[]; }; +bclust = derive { name="bclust"; version="1.5"; sha256="01kx02azj26b6swly53zhf3sny6c6jglkxnzylsc0pvri89x7yj2"; depends=[]; }; bcp = derive { name="bcp"; version="4.0.0"; sha256="1bkd7812jacyk955l71b2szpc9550p0hpv3x337qgl09zck4vdgm"; depends=[Rcpp RcppArmadillo]; }; bcpa = derive { name="bcpa"; version="1.1"; sha256="0rwbd39szp0ar9nli2rswhjiwil31zgl7lnwm9phd0qjv8q0ppar"; depends=[plyr Rcpp]; }; bcpmeta = derive { name="bcpmeta"; version="1.0"; sha256="02fw1qz9cvr7pvmcng7qg7p04wxxpmvb2s8p78f52w4bf694iqhl"; depends=[mvtnorm]; }; -bcrm = derive { name="bcrm"; version="0.4.4"; sha256="0gcigc7505fsk1m70df3n0dz553adkbs8yz2bhskb4qrw4gbmvr7"; depends=[ggplot2 mvtnorm]; }; +bcrm = derive { name="bcrm"; version="0.4.5"; sha256="105y3f5347y5p5mcwkfks0aywjz0x4jk3wp1kqzlb9as7m59l3ng"; depends=[ggplot2 mvtnorm]; }; bcrypt = derive { name="bcrypt"; version="0.2"; sha256="0f4sw1w2k1237wipfva3k9w2a678pvfz0k86jd7djslhyimb6jrq"; depends=[openssl]; }; bcv = derive { name="bcv"; version="1.0.1"; sha256="0yqcfariw9sw0b8cpljcr7vf5rf0cwr1wbif23icchfaxk2m42gj"; depends=[]; }; bda = derive { name="bda"; version="5.1.6"; sha256="0rpxvmjbqiph8hpzsvlj8q6h70jsc9771fiq7l3lmkz69jn1gf4q"; depends=[]; }; bde = derive { name="bde"; version="1.0.1"; sha256="1f25gmjfl58x4pns89abfk85yq5aad3bgq9yqpv505g5gxk62d3v"; depends=[ggplot2 shiny]; }; +bdots = derive { name="bdots"; version="0.1.2"; sha256="0gxprhhj0636by7x0l3lzqmpbk149sj4a2j3w57z1wacj3cj02k0"; depends=[doParallel doRNG foreach mvtnorm nlme]; }; bdpv = derive { name="bdpv"; version="1.1"; sha256="0i6wdf27243ch8pn2chqriwxjg3g72wbvzlx52mz4ahw700xjc7n"; depends=[]; }; bdscale = derive { name="bdscale"; version="1.2"; sha256="0j2h7ainfnh78szp355didbkmcl6d5vz1di8nznjarwxncrbgc6g"; depends=[ggplot2 scales]; }; bdsmatrix = derive { name="bdsmatrix"; version="1.3-2"; sha256="16qhfwk0r1snm9hg32qwz7hizkpwc32m723hjm23m2026gvz2nwy"; depends=[]; }; @@ -2639,8 +2742,9 @@ bdynsys = derive { name="bdynsys"; version="1.3"; sha256="07gfyp0qwq9y1cnh7lhcz7 beadarrayFilter = derive { name="beadarrayFilter"; version="1.1.0"; sha256="044dq5irc00v2f2gjz0vb69w7q7b84lppc55ganabdv4f0dxdblc"; depends=[beadarray RColorBrewer]; }; beadarrayMSV = derive { name="beadarrayMSV"; version="1.1.0"; sha256="0785vmjsli37hjyppk7hlqmn0b683s1apysx9dghbw4h6rgvr8n9"; depends=[Biobase geneplotter limma rggobi]; }; beanplot = derive { name="beanplot"; version="1.2"; sha256="0wmkr704fl8kdxkjwmaxw2a2h5dwzfgsgpncnk2p2wd4768jknj9"; depends=[]; }; +bedr = derive { name="bedr"; version="1.0.2"; sha256="0sbhzbqmjr9x075dsv0vykfzswkqxy48baaas3n8g251lw9c5fmk"; depends=[data_table R_utils testthat VennDiagram yaml]; }; beepr = derive { name="beepr"; version="1.2"; sha256="0w4szy3rgj1bdcanxbcb9agyw38jqp0hc7qsn7j9700vh20zqbln"; depends=[audio stringr]; }; -beeswarm = derive { name="beeswarm"; version="0.2.0"; sha256="05yhddljmls35xdffp7iikgwh3jh5s4b7w5d2gw89w7l8hr62ypz"; depends=[]; }; +beeswarm = derive { name="beeswarm"; version="0.2.1"; sha256="07fiapl7pl610h3662jx22914mfvdh4rmnmmzhk2adiyyymclnn2"; depends=[]; }; benchden = derive { name="benchden"; version="1.0.5"; sha256="1cwcgcm660k8rc8cpd9sfpzz66r55b4f4hcjc0hznpml35015zla"; depends=[]; }; benchmark = derive { name="benchmark"; version="0.3-6"; sha256="05rgrjhbvkdv06nzbh0v57b06vdikrqc1d29wirzficxxbjk1hih"; depends=[ggplot2 plyr proto psychotools relations reshape scales]; }; benford_analysis = derive { name="benford.analysis"; version="0.1.1"; sha256="00ynk1af5nbq8bn8y77sckx4w32g5zxcp06pdpcxwvp38d7hxhvc"; depends=[data_table]; }; @@ -2649,7 +2753,7 @@ ber = derive { name="ber"; version="4.0"; sha256="0gl7rms92qpa5ksn8h3ppykmxk5lzb berryFunctions = derive { name="berryFunctions"; version="1.8.1"; sha256="0plksyprbc5537005aw0yswwpahxk23c16lrq77zspzfa60i2vf0"; depends=[]; }; bestglm = derive { name="bestglm"; version="0.34"; sha256="0b6lj91v0vww0fy50sqdn99izkxqbhv83y3zkyrrpvdzwia4dg9w"; depends=[leaps]; }; betafam = derive { name="betafam"; version="1.0"; sha256="1nf5509alqnr5qpva36f1wb7rdnc084p170h91jv89xvzsidqxca"; depends=[]; }; -betalink = derive { name="betalink"; version="2.0.2"; sha256="13v28lzr8jw61cgvm98qrzlcdpps5l78bhm4nmw4bgid281gnf8p"; depends=[igraph plyr stringr]; }; +betalink = derive { name="betalink"; version="2.1.0"; sha256="1mhszdgj6wr48380gm3isgnsrdvdw1q1x3k4213sfmqaqrpsgmaq"; depends=[igraph plyr stringr]; }; betapart = derive { name="betapart"; version="1.3"; sha256="0h2y2c3q6njzh2rlxh8izgkrq9y7abkbb0b13f2iyj9pnalvdv52"; depends=[ape geometry picante rcdd]; }; betaper = derive { name="betaper"; version="1.1-0"; sha256="1gr533iw71n2sq8gga9kzlah7k28cnlwxb2yh562gw6mh1axmidm"; depends=[ellipse vegan]; }; betareg = derive { name="betareg"; version="3.0-5"; sha256="1zpj1x5jvkn7d8jln16vr4xziahng0f54vb4gc4vs03z7c853i4a"; depends=[flexmix Formula lmtest modeltools sandwich]; }; @@ -2680,10 +2784,11 @@ bigml = derive { name="bigml"; version="0.1.2"; sha256="0vl5krjbgckknxwl26b2hn63 bigpca = derive { name="bigpca"; version="1.0"; sha256="1s4qmg7xl8z0sv1b1vfqw0r5cvlbrxx1n0m03ira8fpykcck2clm"; depends=[BH biganalytics bigmemory bigmemory_sri irlba NCmisc reader]; }; bigrf = derive { name="bigrf"; version="0.1-11"; sha256="0lazi8jk8aapdyyynd5yfcbn4jpjyxh8l64ayd0jj3nisl6hvmdh"; depends=[BH bigmemory foreach]; }; bigrquery = derive { name="bigrquery"; version="0.1.0"; sha256="15ibgi6bqvn0ydq8jx1xhwkwpwwyd7w4f2ams2gpafpysc2f2ks6"; depends=[assertthat dplyr httr jsonlite R6]; }; -bigsplines = derive { name="bigsplines"; version="1.0-6"; sha256="03gan2wrsi2hfxhn3l05qd0x04x8ymkab9aqpfbfn59m296xhd3m"; depends=[]; }; +bigsplines = derive { name="bigsplines"; version="1.0-7"; sha256="08ijm5jd7r5p94kj33yvip3xjmgb2w4w6pv13sjyvhp7ahzqgr92"; depends=[]; }; bigtabulate = derive { name="bigtabulate"; version="1.1.2"; sha256="0vp873r3gww6kfkjdm87qgcdi85362kq946lvs45ggvyv7iaw0wa"; depends=[BH bigmemory]; }; bild = derive { name="bild"; version="1.1-5"; sha256="03has1zi57inicahl52ja006vv5cdndyxfsxp77l6nc3zc6ixna8"; depends=[]; }; bimetallic = derive { name="bimetallic"; version="1.0"; sha256="181qi4dr0zc7x6wziq7jdc1his20jmprfpq3hrfm56fr5n1sj8wl"; depends=[]; }; +bimixt = derive { name="bimixt"; version="1.0"; sha256="0nhszpzjqy8z3vngl5jdzqxzshnn92wgi0ci5n3n5kzi24xkfrzc"; depends=[pROC]; }; binGroup = derive { name="binGroup"; version="1.1-0"; sha256="1sf7prg2x1ryynf1kz7jr50svmga7kjgd5pi9qm3g2hyimz8mvs4"; depends=[]; }; binMto = derive { name="binMto"; version="0.0-6"; sha256="1h9s42wk848x15f4glhsh2iikpra64miwlia6xz5dqlzbs4vw86k"; depends=[mvtnorm]; }; binda = derive { name="binda"; version="1.0.3"; sha256="15rhxnlif7agblzd09gyllkqkf5d8cc75b4vmp7grx8a6y7w47g0"; depends=[entropy]; }; @@ -2699,18 +2804,18 @@ binomlogit = derive { name="binomlogit"; version="1.2"; sha256="1njz1g9sciwa8q6h binr = derive { name="binr"; version="1.1"; sha256="0kgk91zy7bdrhpkh9c5bi206y9hjwjwzb508i8qqmznqyxmza70r"; depends=[]; }; binseqtest = derive { name="binseqtest"; version="1.0.1"; sha256="0snlrwmmmwrl3fj8652rllgays737m020qc3fqv4sfp1vn6aayng"; depends=[clinfun]; }; bio_infer = derive { name="bio.infer"; version="1.3-3"; sha256="14pdv6yk0sk6v8g9p6bazbp7mr3wmxgfi6p6dj9n77lhqlvjcgm9"; depends=[]; }; -bio3d = derive { name="bio3d"; version="2.2-2"; sha256="0sqwl27n15sbablw4mcqgf0w2k28jc59wf8yqxrmqbg8cckfsh9j"; depends=[]; }; +bio3d = derive { name="bio3d"; version="2.2-3"; sha256="10aih6a8j83bl42vq0aah2mr37qmjgpkny9i52v5a8rcd3wxgbsq"; depends=[]; }; bioPN = derive { name="bioPN"; version="1.2.0"; sha256="0mvqgsfc7d4h6npgg728chyp5jcsf49xhnq8cgjxfzmdayr1fwr8"; depends=[]; }; biogas = derive { name="biogas"; version="1.1.0"; sha256="0cbz4vy6iah4qbxlk4dmvpvyj4by7mkmzac1xi5j14w8xjlw5h0y"; depends=[]; }; biogram = derive { name="biogram"; version="1.2"; sha256="1kklidp1nm9jb0nvlhlhxklh4fp86plfsslp4ajnv8i4rc6h0v19"; depends=[bit entropy slam]; }; biom = derive { name="biom"; version="0.3.12"; sha256="18fmzp2zqjk7wm39yjlln7mpw5vw01m5kmivjb26sd6725w7zlaa"; depends=[Matrix plyr RJSONIO]; }; -biomartr = derive { name="biomartr"; version="0.0.1"; sha256="10bi0vz9y2s7v41rkxifgf23w67ladpmmhhpfvnhbjqwwdk97snc"; depends=[biomaRt Biostrings data_table downloader dplyr httr RCurl stringr XML]; }; +biomartr = derive { name="biomartr"; version="0.0.2"; sha256="1a2a5jjb132a8ms21cdn9k0csbdypi9jww8j3vkgcr549n55lw0j"; depends=[biomaRt Biostrings data_table downloader dplyr httr RCurl stringr XML]; }; biomod2 = derive { name="biomod2"; version="3.1-64"; sha256="0ymqscsdp5plhnzyl256ws9namqdcdxq3w5g79ymfpymfav10h3a"; depends=[abind gbm ggplot2 MASS mda nnet pROC randomForest raster rasterVis reshape rpart sp]; }; bionetdata = derive { name="bionetdata"; version="1.0.1"; sha256="1l362zxgcvxln47b1vc46ad6ww8ibwhqr2myxnz1dnk2a8nj7r2q"; depends=[]; }; biorxivr = derive { name="biorxivr"; version="0.1.1"; sha256="0v2jmqpdcci3wwpcrakqcssahy3yx07s265axs14615w74dgd4kl"; depends=[XML]; }; bios2mds = derive { name="bios2mds"; version="1.2.2"; sha256="1avzkbk91b7ifjba5zby5r2yw5mibf2wv05a4nj27gwxfwrr21cd"; depends=[amap cluster e1071 rgl scales]; }; biosignalEMG = derive { name="biosignalEMG"; version="2.0.0"; sha256="0avn35r567crp3z4i1fvlfirvc085cf3g6znc6wgnm7mhxp3l1ss"; depends=[signal]; }; -biotools = derive { name="biotools"; version="2.1"; sha256="15ncx700v5ignr3gggz5zfspskzpj3kpzsy6rg2y4pnjm1vlndgj"; depends=[boot MASS rpanel tkrplot]; }; +biotools = derive { name="biotools"; version="2.2"; sha256="0wy8l22p5y8h25gfhq6gbirbd7yi51j8iw24f1jgxl8cv49mczmf"; depends=[boot MASS rpanel tkrplot]; }; bipartite = derive { name="bipartite"; version="2.05"; sha256="05w3ypdxy2lfygdlvg9xv88dpsf21i60rsbvvz058zwpfzr39hfh"; depends=[fields igraph MASS permute sna vegan]; }; biplotbootGUI = derive { name="biplotbootGUI"; version="1.1"; sha256="0k92z9iavvq5v56x2hgkmrf339xl7ns1pvpqb4ban8r1j8glzawi"; depends=[cluster dendroextras MASS rgl shapes tcltk2 tkrplot]; }; birdring = derive { name="birdring"; version="1.2"; sha256="1jhhvdipsx3kw8n6gw6amm1vq0m83l48dkark9vvi2hpd730ca1y"; depends=[geosphere ks lazyData raster rgdal rgeos rworldmap rworldxtra sp]; }; @@ -2729,16 +2834,16 @@ blighty = derive { name="blighty"; version="3.1-4"; sha256="1fkz3vfcnciy6rfybddc blkergm = derive { name="blkergm"; version="1.1"; sha256="0giknhcl14b4djn5k5v5n33b7bc3f8x6lx2h4jr25kpd89aynhq5"; depends=[ergm network statnet_common]; }; blm = derive { name="blm"; version="2013.2.4.4"; sha256="1w6c30cq38j4i1q4hjg12l70mhy5viw886l1lsnxyvniy113in4i"; depends=[]; }; blme = derive { name="blme"; version="1.0-4"; sha256="1ca2b0248k0fj3lczn9shfjplz1sl4ay4v6djldizp2ch2vwdgy2"; depends=[lme4]; }; -blmeco = derive { name="blmeco"; version="1.0"; sha256="0shhyvqq88i0nr6wdf78rlqk4c91jv26nrb19jcjcw2wxv1mnazq"; depends=[arm lme4 MASS MuMIn]; }; +blmeco = derive { name="blmeco"; version="1.1"; sha256="1hzg5dimzj1khygm9dv0y30mx1nf9vdhgicqdg1rvj7nf426h2ki"; depends=[arm lme4 MASS MuMIn]; }; blockTools = derive { name="blockTools"; version="0.6-2"; sha256="0h04179ybklwbs69rg73p5h09fi3vzagh845r00ivw4iv18anq40"; depends=[MASS]; }; blockcluster = derive { name="blockcluster"; version="3.0.2"; sha256="1qd92lj3ckrj7cvl9zs85igb0974wy5s4zwdnvfyvrsi2bqi3qp8"; depends=[Rcpp RcppEigen]; }; blockmatrix = derive { name="blockmatrix"; version="1.0"; sha256="14k69ly4i8pb8z59005kaf5rpv611kk1mk96q6piyn1gz1s6sk6r"; depends=[]; }; blockmodeling = derive { name="blockmodeling"; version="0.1.8"; sha256="0x71w1kysj9x6v6vsirq0nndsf6f3wzkf8pbsq3x68sf4cdji1xl"; depends=[]; }; blockmodels = derive { name="blockmodels"; version="1.1.1"; sha256="088629i4g63m8rnqmrv50dgpqbnxd1a4zl5wr3ga0pdpqhmd53wp"; depends=[digest Rcpp RcppArmadillo]; }; blockrand = derive { name="blockrand"; version="1.3"; sha256="1090vb26w6s7iqjcal0xbb3qb6p6j46a5w25f1wjdppd1spvh7f9"; depends=[]; }; -blocksdesign = derive { name="blocksdesign"; version="1.6"; sha256="1d188c1lyf5zvdffcw3w7imzjxxmr7nmr29zj9z1b64p1ddrryh4"; depends=[crossdes]; }; +blocksdesign = derive { name="blocksdesign"; version="1.7"; sha256="1rm0zdnpry0izhqbmdd549vk8sm911b171wayyjvij6w2kkq4ch7"; depends=[crossdes]; }; blowtorch = derive { name="blowtorch"; version="1.0.2"; sha256="0ymhkzfdrfcsq2qc5hbn9i0p58xqf90vwd46960cszxacyzzcnrb"; depends=[foreach ggplot2 iterators]; }; -blsAPI = derive { name="blsAPI"; version="0.1.1"; sha256="1d9mzhhr9yrx1kca6mzrq3gqqismv2q5wf1zx76srqvpaja2wszq"; depends=[RCurl rjson]; }; +blsAPI = derive { name="blsAPI"; version="0.1.2"; sha256="0i2x4dmqsqzfzavw2nrkfihr1pih9vqgcvkii27d81346drg7ys6"; depends=[RCurl rjson]; }; bmd = derive { name="bmd"; version="0.5"; sha256="0d4wxyymycb416sdn272292l70s1h2m5kv568vakx3rbvb8y6agy"; depends=[drc]; }; bmem = derive { name="bmem"; version="1.5"; sha256="1miiki743rraralk9dp12dsjjajj3iizcrfwmplf6xas6pl8sfk6"; depends=[Amelia lavaan MASS sem snowfall]; }; bmk = derive { name="bmk"; version="1.0"; sha256="1wxkrlrhmsxsiraj8nyiax9bqs834ln2swykmpf40wxspkykgfdq"; depends=[coda functional plyr]; }; @@ -2752,27 +2857,27 @@ bnpmr = derive { name="bnpmr"; version="1.1"; sha256="0hvwkdbs2p2l0iw0425nca614q bnstruct = derive { name="bnstruct"; version="1.0"; sha256="1bc4q5gk56xmmsiglg8434hpl3lvbyg9hgv5xx5b8law6hn5znz4"; depends=[bitops igraph Matrix]; }; boa = derive { name="boa"; version="1.1.8-1"; sha256="15nkr24hgv1286h9b6sdhlpljnm98fi5mmpsygl76h24dayy3854"; depends=[]; }; boilerpipeR = derive { name="boilerpipeR"; version="1.3"; sha256="0467bjqhdmi3p02fp0r7rgm00x9ry464f2hniav990qzsw8i16q6"; depends=[rJava]; }; -bold = derive { name="bold"; version="0.2.6"; sha256="15hnbspp5s293v2jykmirf9rvdgpkd71h431gizz71ssayanzp67"; depends=[assertthat httr jsonlite plyr reshape stringr XML]; }; +bold = derive { name="bold"; version="0.3.0"; sha256="11b5zqyhvg3cc47mk8r7h219abj12paxcdb23gxqgkyrhlykkbks"; depends=[assertthat httr jsonlite plyr reshape stringr XML]; }; boolean3 = derive { name="boolean3"; version="3.1.6"; sha256="00s6ljhqy8gpwa3kxfnm500r528iml53q364bjcl4dli2x85wa9p"; depends=[lattice mvtnorm numDeriv optimx rgenoud rlecuyer]; }; boostSeq = derive { name="boostSeq"; version="1.0"; sha256="0sikyzhn1i6f6n7jnk1kb82j0x72rj8g5cimp2qx3fxz33i0asx6"; depends=[genetics lpSolveAPI]; }; boostr = derive { name="boostr"; version="1.0.0"; sha256="123ag8m042i1dhd4i5pqayqxbkfdj4z0kq2fyhxfy92a7550gib2"; depends=[foreach iterators stringr]; }; boot = derive { name="boot"; version="1.3-17"; sha256="1lxjj0sbm9v21f34srrwkniiwbc59ibjh99yry9756ic55h6jyl5"; depends=[]; }; -bootES = derive { name="bootES"; version="1.01"; sha256="00y901d5cjdpzras5w6mv851h5zgp36m5ib6dazs4vqrfpqymva8"; depends=[boot]; }; +bootES = derive { name="bootES"; version="1.2"; sha256="0hcaw1v80zspdsy4wr464lmgq33807i2f6n2dc3r7qqwa80g4zz0"; depends=[boot]; }; bootLR = derive { name="bootLR"; version="1.0"; sha256="1asf4yxy3abfkgqqg89mv9r2iifc5bgcjipy5idni0lvwfjashnd"; depends=[boot]; }; bootRes = derive { name="bootRes"; version="1.2.3"; sha256="0bb7w6wyp9wjrrdcyd3wh44f5sgdj07p5sz5anhdnm97rn1ib6dz"; depends=[]; }; bootSVD = derive { name="bootSVD"; version="0.5"; sha256="14xwbrpqj3j1xpsppgjxpn9ggsns2n1kmni9vn30vgy68zwvs2wy"; depends=[ff]; }; bootStepAIC = derive { name="bootStepAIC"; version="1.2-0"; sha256="0p6v4zjsaj1p6c678010fazdh40lpv0rvhczd1halj8aic98avdx"; depends=[MASS]; }; bootnet = derive { name="bootnet"; version="0.1"; sha256="18bx0za81z8za0hswj1qwl7a721xbvfpjz0hsih7glf6n5hn0cyp"; depends=[corpcor dplyr ggplot2 gtools IsingFit qgraph]; }; bootruin = derive { name="bootruin"; version="1.2-1"; sha256="1ii1fcj8sn9x82w23yfzxkgngrgsncnyrik4gcqn6kv7sl58f4r3"; depends=[]; }; -bootsPLS = derive { name="bootsPLS"; version="1.0.2"; sha256="1d2jn3c74d31rp37qpr8j4rviwg1gmkqppx5pyw0mm37vdajffri"; depends=[mixOmics]; }; +bootsPLS = derive { name="bootsPLS"; version="1.0.3"; sha256="0jkpci97chbvlfkcbbj3gm2dnj5aiwfrh739kd4fa0zra4ac1adh"; depends=[mixOmics]; }; bootspecdens = derive { name="bootspecdens"; version="3.0"; sha256="0hnxhfsc3ac4153lrjlxan8xi4sg1glwb5947ps6pkkyhixm0kc1"; depends=[MASS]; }; bootstrap = derive { name="bootstrap"; version="2015.2"; sha256="1h068az4sz49ysb0wcas1hfj7jkn13zdmk087scqj5iyqzr459xf"; depends=[]; }; boottol = derive { name="boottol"; version="2.0"; sha256="01dps9rifzrlfm4lvi7w99phfi87b7khx940kpsr4m9s168a2dzv"; depends=[boot plyr]; }; -boral = derive { name="boral"; version="0.8"; sha256="19yami2k4b12g4xzvd774hpa5adnk2wszlys0qgygsjxazv4zan5"; depends=[coda fishMod MASS mvtnorm R2jags]; }; +boral = derive { name="boral"; version="0.9.1"; sha256="1ls6is60d7h4zg5dhbgksjznfsffgim2pn6zgcvln7l6zl5di52s"; depends=[coda fishMod MASS mvtnorm R2jags]; }; boss = derive { name="boss"; version="2.1"; sha256="1knsnf19b1xvvq20pjiv56anbnk0d51aq6z3ikhi8y92ijkzh0y8"; depends=[geepack lme4 Matrix ncdf]; }; boussinesq = derive { name="boussinesq"; version="1.0.3"; sha256="1j1jarc3j5rby1wvj1raj779c1ka5w68z7v3q8xhzjcaccrjhzxk"; depends=[]; }; boxplotdbl = derive { name="boxplotdbl"; version="1.2.2"; sha256="01bvp6vjnlhc4lndxwd705bzlsh7zq0i9v66mxszrcz6v8hb9rwi"; depends=[]; }; -boxr = derive { name="boxr"; version="0.2.6"; sha256="1b7xvblw2a1p8sr1gxrak404d43haa4kk7blnyir1pql8dcw24jd"; depends=[assertthat digest dplyr httpuv httr jsonlite stringr]; }; +boxr = derive { name="boxr"; version="0.2.9"; sha256="1ig4ygh5wgf2gv7yswjp7bw931sxwbwkir26ip2cl2zmc7sq9mix"; depends=[assertthat digest dplyr httpuv httr jsonlite stringr]; }; bpca = derive { name="bpca"; version="1.2-2"; sha256="05ldz6b2s379mymj8jzvia9x6gj047gwsxvnv3zj9x8b1hvndnd6"; depends=[rgl scatterplot3d]; }; bpcp = derive { name="bpcp"; version="1.2.6"; sha256="0yn1d2sjl53b1c4g6b91v8j8d0rymcn25547zi4c7rafz4ips1gl"; depends=[]; }; bpkde = derive { name="bpkde"; version="1.0-7"; sha256="1ls6rwmbgb2vzsjn34r87ab8rnz3ls61g6f4x3jpglbk0j91f0h8"; depends=[]; }; @@ -2786,32 +2891,35 @@ brew = derive { name="brew"; version="1.0-6"; sha256="1vghazbcha8gvkwwcdagjvzx6y brewdata = derive { name="brewdata"; version="0.4"; sha256="1i8i3yhyph212m6jjsij61hz65a5rplxw8y2xqf6daqiisam5q6i"; depends=[RCurl stringdist XML]; }; brglm = derive { name="brglm"; version="0.5-9"; sha256="14hxjamxyd0npak8wyfmmb17qclj5f86wz2y9qq3gbyi2s1bqw2v"; depends=[profileModel]; }; bride = derive { name="bride"; version="1.3"; sha256="03k9jwklg1l8sqyjfh914570880ii0qb5dd9l0bg0d0qrghbj0rk"; depends=[]; }; -brms = derive { name="brms"; version="0.4.1"; sha256="0kkkg2wp49f6iclbahxlrnz5cczv3qs2qb9jazflshgpnnn0vqqy"; depends=[abind ggmcmc ggplot2 gridExtra Rcpp reshape2 rstan]; }; +brms = derive { name="brms"; version="0.5.0"; sha256="1an16cgp006qvkgrsdn0gabqrvmzl5xpasvq9dfyxyb7jnk5jpj8"; depends=[abind ggplot2 gridExtra loo rstan shinystan]; }; brnn = derive { name="brnn"; version="0.5"; sha256="0kf2fdgshk8i3jlxjfgpdfq08kzlz3k9s7rdp4bg4lg3khmah9d1"; depends=[Formula]; }; broman = derive { name="broman"; version="0.59-5"; sha256="0sl7ppdy0d3mnnp7vz98ingv9irv58xjazf3rx473qw811ybcjdn"; depends=[assertthat ggplot2 jsonlite RPushbullet]; }; broom = derive { name="broom"; version="0.3.7"; sha256="00z4kwxdqp6g35g4x6js9rc96z8i40hzgvhf5frj9dwfpxclk145"; depends=[dplyr plyr psych stringr tidyr]; }; +brr = derive { name="brr"; version="1.0.0"; sha256="050ivnqcaxiyypd1sxfpy6ianhzzmvs6c77ga40g3440cvfigkgw"; depends=[gsl hypergeo pander stringr SuppDists TeachingDemos]; }; bshazard = derive { name="bshazard"; version="1.0"; sha256="151c63pyapddc4z77bgkhmd7rsa1jl47x8s2n2s8yc6alwmj6dvs"; depends=[Epi survival]; }; bspec = derive { name="bspec"; version="1.5"; sha256="0jynvir7z4q1vrvhdn6wijdrjfrkk4544nlawabw2fnfxss91a91"; depends=[]; }; bspmma = derive { name="bspmma"; version="0.1-1"; sha256="0bd6221rrbxjvabf1lqr9nl9s0qwav47gc56sxdw32pd99j9x5a9"; depends=[]; }; +bssn = derive { name="bssn"; version="0.6"; sha256="0ngxczmi5d83zi18s8qk67w5jhlly9jvgxy2xk0d306qda6pgqds"; depends=[sn]; }; bst = derive { name="bst"; version="0.3-4"; sha256="1s7qv2q9mcgg1c5mhblqg3nk9hary4pq6z0xgi3a6rs1929mgdyf"; depends=[gbm rpart]; }; bsts = derive { name="bsts"; version="0.6.2"; sha256="0m18yl9c12p19psx3iz7swlblgbkmyyvfls5g74gm8qbbhbxmdsk"; depends=[BH Boom BoomSpikeSlab xts zoo]; }; -btergm = derive { name="btergm"; version="1.5.2"; sha256="1llf9f9qkiw0pnbsnsybyxgch92dyzwdr77bcxqhipbmdb8fdckd"; depends=[boot coda ergm Matrix network ROCR sna speedglm statnet statnet_common texreg xergm_common]; }; +btergm = derive { name="btergm"; version="1.5.9"; sha256="032rdgik4gsd8wh50s9q6j88p50n76q8fhgs67x2j67rv7bli61b"; depends=[boot coda ergm Matrix network ROCR sna speedglm statnet statnet_common texreg xergm_common]; }; btf = derive { name="btf"; version="1.1"; sha256="0n1h4hmjpvj97mpvannh3s5l08m4zfv0w64hrgdv4s5808miwfzc"; depends=[coda Matrix Rcpp RcppEigen]; }; bujar = derive { name="bujar"; version="0.1-4"; sha256="0v48mkg78sy91z1z4xvy2r3xmay74615kzqxjqlclkk20999z56m"; depends=[earth elasticnet gbm mboost mda ncvreg rms]; }; bursts = derive { name="bursts"; version="1.0-1"; sha256="172g09d1vmwl83xs6gr4gfblqmx3apvblpzdr5d7fcw1ybsx0kj6"; depends=[]; }; bvarsv = derive { name="bvarsv"; version="1.0"; sha256="0ak4nsrcvhkg0145ax5ib9ljb5yc63zzfxlgvdbrdr4mlri4gsid"; depends=[Rcpp RcppArmadillo]; }; bvenn = derive { name="bvenn"; version="0.1"; sha256="1xrya49w5bd2b7plfxpqla60b2828rkm0rjmc4qnqzvrahsbal0y"; depends=[]; }; bvls = derive { name="bvls"; version="1.4"; sha256="18aaf7kk5mks3a59wwqhm1ckpn6s704l9m5nzy0x5iw0s98ijbm2"; depends=[]; }; -bvpSolve = derive { name="bvpSolve"; version="1.2.4"; sha256="1ss25md3q59cm40rxw29x9421xjc7gd964hx9xwvx4h8dis34rgd"; depends=[deSolve rootSolve]; }; +bvpSolve = derive { name="bvpSolve"; version="1.3.2"; sha256="1y6axzpbk7vnm2hsvihhci3cbbl61rlfc4kmfr335l77l6q2sd55"; depends=[deSolve rootSolve]; }; c060 = derive { name="c060"; version="0.2-4"; sha256="1yzy0p6041rygqfwzb8dpyc7jq12javmhlvdcmmc7p59bbk7wv3j"; depends=[glmnet lattice mlegp penalizedSVM peperr survival tgp]; }; c3net = derive { name="c3net"; version="1.1.1"; sha256="0m4nvrs41kmlakc6m203zlncqwgj94wns8kzcb31xngjcacmcq42"; depends=[igraph]; }; cAIC4 = derive { name="cAIC4"; version="0.2"; sha256="13sp3wywv82wgi1vsbxwn68v9xigy0fi3mcwyxjmmgmnsxns2fza"; depends=[lme4 Matrix]; }; cOde = derive { name="cOde"; version="0.2"; sha256="0741ghg0cqxvgwgvrvsgi75qlkirnm8cjc6bw6xbmkg97scrs5ck"; depends=[]; }; cSFM = derive { name="cSFM"; version="1.1"; sha256="1znxsqa8xdifmryg7jiqbpzm837n4n862kg5x1aki52crc4zyk3k"; depends=[MASS mgcv mnormt moments sn]; }; ca = derive { name="ca"; version="0.58"; sha256="10dp261sq56ixrrr8qq4filxpzszcinz5qv50g40dan0k75n7isb"; depends=[]; }; +caRpools = derive { name="caRpools"; version="0.82.3"; sha256="1czrcdkjln2m0r8h5rbqw86imkii17mssrc7qhxbkgwasymgi177"; depends=[biomaRt DESeq2 rmarkdown scatterplot3d seqinr sm VennDiagram xlsx]; }; caTools = derive { name="caTools"; version="1.17.1"; sha256="1x4szsn2qmbzpyjfdaiz2q7jwhap2gky9wq0riah74q0pzz76ank"; depends=[bitops]; }; cabootcrs = derive { name="cabootcrs"; version="1.0"; sha256="0a6y04jq837k1pk8b9nhgz7rima7s8jid6vdjyfvrqshgaiabg1q"; depends=[]; }; -cacIRT = derive { name="cacIRT"; version="1.3"; sha256="1qd9qw47d9dmxhnva3ik62q5rfcw0pd1ha1y689345nl05wysjkh"; depends=[]; }; +cacIRT = derive { name="cacIRT"; version="1.4"; sha256="145j6isqa8yj2nvlqkxagd076zs10ng3n44khi5p4jj77fjc8gh6"; depends=[]; }; cairoDevice = derive { name="cairoDevice"; version="2.22"; sha256="0j1fsfjzaz0mz6v33v8n2dcbskpafm3mhi5v85phpk3x4s2y84al"; depends=[]; }; calibrate = derive { name="calibrate"; version="1.7.2"; sha256="010nb1nb9y7zhw2k6d2i2drwy5brp7b83mjj2w7i3wjp9xb6l1kq"; depends=[MASS]; }; calibrator = derive { name="calibrator"; version="1.2-6"; sha256="1arprrqmczbhc1gl85fh37cwpcky8vvqdh6zfza3hy21pn21i4kh"; depends=[cubature emulator]; }; @@ -2826,9 +2934,10 @@ capm = derive { name="capm"; version="0.8.0"; sha256="1vz17x0v5cjs5kdqkbay08f91k captioner = derive { name="captioner"; version="2.2.3"; sha256="0xg72pmgm84f0v45phfwxpsslhf12nhn1swmrj1yifj7g9sjvybj"; depends=[]; }; capushe = derive { name="capushe"; version="1.0"; sha256="0dwxaiqnz0qbsk4icjapklaa9bpjfl4gqvk1f92livy97jmf1r44"; depends=[MASS]; }; capwire = derive { name="capwire"; version="1.1.4"; sha256="18a3dnbgr55yjdk6pd7agmb48lsiqjpd7fm64dr1si6rpgpl4i9c"; depends=[]; }; -car = derive { name="car"; version="2.0-25"; sha256="1h7fndsypg9jqfc4xlr8aszjgs477jsvvw4lkpgjxrlb4j779yyj"; depends=[MASS mgcv nnet pbkrtest quantreg]; }; +car = derive { name="car"; version="2.1-0"; sha256="0756fq8y6pp61hqlddnp0995cw3az7p978g59yljfdsj0c5qrydj"; depends=[MASS mgcv nnet pbkrtest quantreg]; }; carcass = derive { name="carcass"; version="1.4"; sha256="16apmiackw194p5n0fivkgd2ymca9bfajasypl82xqyfk6amh088"; depends=[arm expm lme4 MASS survival]; }; -cardidates = derive { name="cardidates"; version="0.4.6"; sha256="02ib56fvn2z63sbinhwnlw123y86h6xazbkzw68sa9klqaxv69yl"; depends=[boot lattice pastecs]; }; +cardidates = derive { name="cardidates"; version="0.4.7"; sha256="0dxb2941w56s479laf315hqh9iv3k2l1ds7k8hdl9akcacagjgs2"; depends=[boot lattice pastecs]; }; +cardioModel = derive { name="cardioModel"; version="1.2"; sha256="1fn56js9d1px9g0lvgcr5xlyzwiavj030dw90m8p02v4mb6f47a0"; depends=[nlme plyr]; }; care = derive { name="care"; version="1.1.9"; sha256="0fx5cbi1fx3hpyzghn1788rkh91i10z1ngryqc1v3iqqn3akbk4j"; depends=[corpcor]; }; caret = derive { name="caret"; version="6.0-52"; sha256="1z6z63q0dh5pjcl8nizs5jrfng9f34imkijfq5xc1m77r8m853dk"; depends=[BradleyTerry2 car foreach ggplot2 lattice nlme plyr reshape2]; }; caretEnsemble = derive { name="caretEnsemble"; version="1.0.0"; sha256="16qibyx034gi06rs8wnazfdicvrwpdsys3mvgwmb35qgzldqfizy"; depends=[caret caTools digest ggplot2 gridExtra lattice pbapply plyr]; }; @@ -2838,8 +2947,9 @@ caschrono = derive { name="caschrono"; version="1.4"; sha256="1l9hmsacynh73kh14j caseMatch = derive { name="caseMatch"; version="1.0.1"; sha256="0r8z0dfhaqc5wmcrd1mgq1bn71h41fhk5q3ihffg0s9qsix4pk7j"; depends=[]; }; cat = derive { name="cat"; version="0.0-6.5"; sha256="1gv7chqp6kccipkrxjwhsa7yizizsmk4pj8672rgjmpfcc64pqfm"; depends=[]; }; catIrt = derive { name="catIrt"; version="0.5-0"; sha256="09010z1q96nbnpys6mybspaqy57lvgd2cvwgnfijzgx3kl87pwnl"; depends=[numDeriv]; }; -catR = derive { name="catR"; version="3.4"; sha256="0rgzcnqp18wb8m7f3m8mm7pv04a1irlknkrsrr4hhnzs0phf06yz"; depends=[]; }; +catR = derive { name="catR"; version="3.5"; sha256="1anq0ampcjalbhckk5fh1nmf660cgqh5dhg279871vbbyjhg62n1"; depends=[]; }; catdata = derive { name="catdata"; version="1.2.1"; sha256="0fjylb55iw8w9sd3hbg895pzasliy68wcq95mgrh7af116ss637w"; depends=[MASS]; }; +cate = derive { name="cate"; version="1.0.3"; sha256="0qb5kmf2kl14sz5i6fir5v7bgsmf2gbgrbghakl8s7k7ny0h6n8m"; depends=[corpcor esaBcv leapp MASS ruv sva]; }; catenary = derive { name="catenary"; version="1.1"; sha256="0khdk61fh8ngr70qf9i2655h5nblj98r8zl724ljv1cjb5x1vphv"; depends=[boot ggplot2]; }; cati = derive { name="cati"; version="0.99"; sha256="1xghdqmqfwi0wnzvrd896z4snyjqqs9kw3whmkd3cph8zf0jl931"; depends=[ade4 ape e1071 FD geometry hypervolume mice nlme rasterVis vegan]; }; catnet = derive { name="catnet"; version="1.14.8"; sha256="03y7ddjyra3cjq7savdgickmw82ncx4k01rn752sks6rpl6bjslc"; depends=[]; }; @@ -2858,14 +2968,15 @@ cchs = derive { name="cchs"; version="0.1.0"; sha256="1x6pzwjdcklkbgr1yalijrcj3g cclust = derive { name="cclust"; version="0.6-20"; sha256="1davlnrikfriczdwlprqd46axs9acvz30hhni134cisy11snlq7s"; depends=[]; }; cda = derive { name="cda"; version="1.5.1"; sha256="09a2jb25219hq6if3bx03lsp94rp2ll9g73dhkdi665y7rlhgqwh"; depends=[dielectric plyr randtoolbox Rcpp RcppArmadillo reshape2 statmod]; }; cdb = derive { name="cdb"; version="0.0.1"; sha256="1rdb4lacjcw67apdyiv7cl1xvv9d1mrzck1qk605n6794k7wf2ys"; depends=[bitops]; }; +cdcfluview = derive { name="cdcfluview"; version="0.4.0"; sha256="1b0l6vqhks9mqpx3c94qip3dd8031rl4jjqjnmdpcvmfhg335yjf"; depends=[dplyr httr pbapply xml2]; }; cdcsis = derive { name="cdcsis"; version="1.0"; sha256="1fxdsaqpjhpffn2fxddfcrx8wxwyvfws6rxkpp57g25980xiyzkd"; depends=[ks]; }; -cds = derive { name="cds"; version="1.0.1"; sha256="1vw8ghvwsrpsq89yc4vjyfcw2wsz9dhqv1nlaqmv9b4wqm8gsb5h"; depends=[clue colorspace copula limSolve MASS]; }; +cds = derive { name="cds"; version="1.0.2"; sha256="03ypqdqja5jqfzxgqafaxbnznazjaw5jv87yd6sw915djbffna45"; depends=[clue colorspace copula limSolve MASS]; }; cec2005benchmark = derive { name="cec2005benchmark"; version="1.0.4"; sha256="0bwv63l31hiy63372nvnyfkpqp61cqjag0gczd2v2iwsy3hyivpd"; depends=[]; }; cec2013 = derive { name="cec2013"; version="0.1-5"; sha256="07i2vp1x3qaw5di5vr5z70d47hh9174pjckjlhgv0f2w97slwc1i"; depends=[]; }; celestial = derive { name="celestial"; version="1.3"; sha256="0icsrpw8y7r0ls8ch5b25fl4rnvs6x5y2wscmcmpp4fa4x64qqg6"; depends=[RANN]; }; cellVolumeDist = derive { name="cellVolumeDist"; version="1.3"; sha256="00hq3nbfbnmg2lhrqd0glkh5ld50fv54ll3q6v875d1lgs44sln1"; depends=[gplots minpack_lm]; }; cellranger = derive { name="cellranger"; version="1.0.0"; sha256="1zyf9hxhj1s660xyqp3klc11plfhyzv4fi03p7j2p5grw280cm2x"; depends=[]; }; -cem = derive { name="cem"; version="1.1.16"; sha256="1crljw5ry3hynmfg9xfnbm3ypy57m33885xg39m88gzi6ydrnsvk"; depends=[combinat lattice MatchIt nlme randomForest]; }; +cem = derive { name="cem"; version="1.1.17"; sha256="1jnhsrc1jhax3zlw9ynla7g9z5i4w01iar7f7hmv92kp1cwh8rbd"; depends=[combinat lattice MatchIt nlme randomForest]; }; censNID = derive { name="censNID"; version="0-0-1"; sha256="1ij5ci6nkqf0rq51vyh4jw5sr3y46yndfkjmwl78ppdj66axxir5"; depends=[]; }; censReg = derive { name="censReg"; version="0.5-20"; sha256="15k7iq4275dyah3r47vgxsx6g6mr7ma53lkv6d1n89bczzys72kx"; depends=[glmmML maxLik miscTools sandwich]; }; cents = derive { name="cents"; version="0.1-41"; sha256="03ycbd0c8b7danbblaixg6sm7msr9ixkanqswczqa8n2frhjfgj0"; depends=[]; }; @@ -2875,18 +2986,18 @@ cfa = derive { name="cfa"; version="0.9-3"; sha256="0pl1mxv6jxn3mvlh75gr8as0dakl cg = derive { name="cg"; version="1.0-2"; sha256="1rgbk4kvjaw4mbqa19hbnhlinqd4bw4fn2znlxr8wfhzj6648cl3"; depends=[Hmisc lattice MASS multcomp nlme survival VGAM]; }; cgAUC = derive { name="cgAUC"; version="1.2.1"; sha256="172f9rkfhv4xzwpw8izsnsdbcw9p3hvxhh0fd8hzlkil7vskr3k8"; depends=[Rcpp]; }; cgam = derive { name="cgam"; version="1.2"; sha256="14vl608bf223jclaxfb6i7irfn9g2dqp76fhw82j4h7w4l47i1c3"; depends=[coneproj]; }; -cgdsr = derive { name="cgdsr"; version="1.1.33"; sha256="0y8cn386jifg2ilml0cp9cafjxaa0xkvjnja1fgarlyf07k3cpcs"; depends=[R_methodsS3 R_oo]; }; +cgdsr = derive { name="cgdsr"; version="1.2.5"; sha256="1w5nd4hirlw8s9a8ysr6102pq9sbz4820qni06g98ykyg7yb32hx"; depends=[R_methodsS3 R_oo]; }; cggd = derive { name="cggd"; version="0.8"; sha256="06z0mrxxc02parn9vkjv89qq4yqmsccsy319fi6c5iarssyvin1r"; depends=[]; }; cgh = derive { name="cgh"; version="1.0-7.1"; sha256="1fgjz43bgnswlyvrm669x697lybq3jyzz4l8ppgxqwxp4p4d2yqn"; depends=[]; }; cghFLasso = derive { name="cghFLasso"; version="0.2-1"; sha256="0b1hnjf9g0v47hbz0dy9m6jhcl1ky20yyhhmm8myng2sndcpjsbf"; depends=[]; }; cghseg = derive { name="cghseg"; version="1.0.2"; sha256="1x7j62aq5c1xj8ss3pys5160y6vny4pa1wvf6xh59ak2zr4xjm9h"; depends=[]; }; cgwtools = derive { name="cgwtools"; version="3.0"; sha256="01888n056x4c8g0676jnbh6d89hamzxrh33aw6r28mzlnmfy5lmw"; depends=[]; }; -changepoint = derive { name="changepoint"; version="2.0.1"; sha256="13nqnp53rksafdybkvwg434j7cs5wv262qzqgzs77nvk0dzh6gch"; depends=[zoo]; }; +changepoint = derive { name="changepoint"; version="2.1.1"; sha256="1sxl85inv50dl06lw8mxf4694g5v0cx2wx0cvbfvgv4nfmxmlv62"; depends=[zoo]; }; cheb = derive { name="cheb"; version="0.3"; sha256="0vqkdx7i40w493vr7xywjypr398rjzdk5g410m1yi95cy1nk4mc7"; depends=[]; }; chebpol = derive { name="chebpol"; version="1.3-1367"; sha256="0w1yfnag0sjqjn7g5yn3wd19kkwzcchb491335h70rm360m1kr0y"; depends=[]; }; checkmate = derive { name="checkmate"; version="1.6.2"; sha256="1phw4amr3ck0kglgfsjf3zimlgiygij0dbx50hbxid003281hwxa"; depends=[]; }; -checkpoint = derive { name="checkpoint"; version="0.3.10"; sha256="147phhsv5g8k23fd355jqjqpjjj8n3s0bblm8mv5c3d0322li7ac"; depends=[]; }; -cheddar = derive { name="cheddar"; version="0.1-629"; sha256="13fmr37jj7dky5jrpr20z1iai9jbnpmwsh2pbzjwvib7561pyd6x"; depends=[]; }; +checkpoint = derive { name="checkpoint"; version="0.3.15"; sha256="1mzf5d2mxwc7l9149a0sbxamxnmq4xc1ia8n5sd412sv5gmzxw89"; depends=[]; }; +cheddar = derive { name="cheddar"; version="0.1-630"; sha256="15hx9pm4pwmzwb82qgbf4ryy7zbsv64zw4qm6v7xkkaw27rjl4vg"; depends=[]; }; chemCal = derive { name="chemCal"; version="0.1-34"; sha256="0sn0mhp2d9a9rddfpkiv1pkrmvnv4sy18c1x2ks0lwpaklg78fbs"; depends=[]; }; chemometrics = derive { name="chemometrics"; version="1.3.9"; sha256="089zlp4ba6yyxjh2p7fcph29lnxyk1gifb44fw7lsslvg19xlgjm"; depends=[class e1071 lars MASS mclust nnet pcaPP pls robustbase rpart som]; }; chemosensors = derive { name="chemosensors"; version="0.7.8"; sha256="0zphfag0q6zskd301z1dldazzxr2fam6h41cpyivphaxpaljiv0m"; depends=[ggplot2 LearnBayes pls plyr quadprog RColorBrewer reshape2]; }; @@ -2894,19 +3005,19 @@ cherry = derive { name="cherry"; version="0.6-11"; sha256="0ixrzbzg559h0qb33b915 childsds = derive { name="childsds"; version="0.5"; sha256="1fmisp6k375harjxsyzpwnd8zh3kd7vlhin18q1svfwdjyy9k3xh"; depends=[]; }; chillR = derive { name="chillR"; version="0.55"; sha256="1b8lp4dfr3366ism7q2pddqpps3zmsyv5xg9rpyyh9yyl9ga1xhy"; depends=[fields Kendall pls]; }; chipPCR = derive { name="chipPCR"; version="0.0.8-10"; sha256="1mff7n7ga4sfwvcq7zkjkrl68nybnm2zkn37hmxvnw9yl3ls9lnw"; depends=[lmtest MASS outliers ptw quantreg Rfit robustbase shiny signal]; }; -chngpt = derive { name="chngpt"; version="2014.12-2"; sha256="1bg2hm5clvq1rj1mnj5fasbwmq0xayj327kwclajami4zcwjwqj5"; depends=[kyotil MASS]; }; +chngpt = derive { name="chngpt"; version="2015.9-5"; sha256="0yqapf9fq0arh1hgwd5lklp6fklia926n0h1980731hqxd362bpq"; depends=[kyotil MASS survival]; }; choiceDes = derive { name="choiceDes"; version="0.9-1"; sha256="07nnqqczi9p3cffdijzx14sxhqv1imdakj7y94brlr5mbf5i4fl4"; depends=[AlgDesign]; }; choplump = derive { name="choplump"; version="1.0-0.4"; sha256="0fn6m3n81jb7wjdji4v04m53gakjfsj3ksm546xxz5zm7prk237s"; depends=[]; }; chopthin = derive { name="chopthin"; version="0.1"; sha256="1xnyd5mvgqksk7c0mf4irrnshkjgih2h19b55yi4finxh6wrn8l4"; depends=[Rcpp]; }; chords = derive { name="chords"; version="0.90"; sha256="0wz5glm15615xb3cicc0m34zg78qzng3lpmysswbrfhc8x4kkchh"; depends=[MASS]; }; -choroplethr = derive { name="choroplethr"; version="3.1.0"; sha256="0nv47hx8z06xh58a1ff63zncl1776pakxa6dbf1skhc23wfafi86"; depends=[acs dplyr ggplot2 Hmisc R6 scales stringr WDI]; }; +choroplethr = derive { name="choroplethr"; version="3.3.0"; sha256="1r5h7vb721z9y73vf74p678mzhq5rb985b0zgn4ryh8mib4xdcl3"; depends=[acs dplyr ggmap ggplot2 Hmisc R6 RgoogleMaps scales stringr WDI]; }; choroplethrAdmin1 = derive { name="choroplethrAdmin1"; version="1.0.0"; sha256="1pnj5155h809sh9mp703y72348mi7mxnwid07kp1s489512ysfwr"; depends=[ggplot2]; }; choroplethrMaps = derive { name="choroplethrMaps"; version="1.0"; sha256="00dgwikfxm1p1dqz1ybsxj1j8jcmrwa08m2d3zsww2invd55pk7g"; depends=[]; }; chromer = derive { name="chromer"; version="0.1"; sha256="0fzl2ahvzyylrh4247w9yjmwib42q96iyhdlldchj97sld66c817"; depends=[data_table dplyr httr]; }; chromoR = derive { name="chromoR"; version="1.0"; sha256="1x11byr6i89sdk405h6jd2rbvgwrcvqvb112bndv2rh9jnrvcw4z"; depends=[gdata haarfisz]; }; chron = derive { name="chron"; version="2.3-47"; sha256="1xj50kk8b8mbjpszp8i0wbripb5a4b36jcscwlbyap8n4487g34s"; depends=[]; }; cin = derive { name="cin"; version="0.1"; sha256="1pwvy5nh5nrnysfqrzllb9fcrpddqg02c7iw3w9fij2h8s2v6kq5"; depends=[]; }; -circlize = derive { name="circlize"; version="0.3.0"; sha256="0hd74fss5f3nr0m7vdb6apkgplydhqkknad4ng4frfyf03pnxkpx"; depends=[GlobalOptions shape]; }; +circlize = derive { name="circlize"; version="0.3.1"; sha256="1c3plpcid0vq5qwfxp485zlnm2nfk9vymmars4m619mallf0cn16"; depends=[colorspace GlobalOptions shape]; }; circular = derive { name="circular"; version="0.4-7"; sha256="1kgis2515c931ir76kpxnjx0cscw4n09a5qz1rbrhf34gv81pzqw"; depends=[boot]; }; cit = derive { name="cit"; version="1.4"; sha256="0axmi41bydkj512jscil9mqz9g6f11khl8hi6fci96wnm9x8gw7s"; depends=[]; }; citbcmst = derive { name="citbcmst"; version="1.0.4"; sha256="1zkd117h9nahwbg5z6byw2grg5n3l0kyvv2ifrkww7ar30a2yikl"; depends=[]; }; @@ -2914,32 +3025,36 @@ citccmst = derive { name="citccmst"; version="1.0.2"; sha256="1b7awn1hjckxisfdi4 cjoint = derive { name="cjoint"; version="2.0.0"; sha256="02jsdlqpcg5xjnpbnw658fsyhym0ssmhhm69z9ij8vm65qxi47f8"; depends=[ggplot2 lmtest sandwich survey]; }; clValid = derive { name="clValid"; version="0.6-6"; sha256="1l9q7684vv75jnbymaa10md13qri2wjjg7chr1z1m0rai8iq3xxw"; depends=[class cluster]; }; cladoRcpp = derive { name="cladoRcpp"; version="0.14.4"; sha256="0d4vl7xrrwbhhx56ymw52rb5svw9nskxdya4dl04lw1qxc45p4jy"; depends=[Rcpp RcppArmadillo]; }; -class = derive { name="class"; version="7.3-13"; sha256="0y6gms2hbzx45a10n86899hfaxjg3bjn6gfd5jhqzan5dalnp5w1"; depends=[MASS]; }; -classGraph = derive { name="classGraph"; version="0.7-4"; sha256="08cid5bdbciyijlzkx3684gx0cyzcj8myawf4dhcrz00jqrg8v60"; depends=[graph Rgraphviz]; }; -classInt = derive { name="classInt"; version="0.1-22"; sha256="0r9940bv6n43i6vlcgc19bvmcv3zlw0bi9zfs3scvah68rdb7v7l"; depends=[class e1071]; }; +class = derive { name="class"; version="7.3-14"; sha256="173b8a16lh1i0zjmr784l0xr0azp9v8bgslh12hfdswbq7dpdf0q"; depends=[MASS]; }; +classGraph = derive { name="classGraph"; version="0.7-5"; sha256="19jb9jr1gfg4karymrbilh0zjrlsczhy2q03x5b0jxnh4ykhxfj8"; depends=[graph Rgraphviz]; }; +classInt = derive { name="classInt"; version="0.1-23"; sha256="07anmwmchri4ppl01y041zh3xdqsdwzv4n5jpr3crmpk39qwwhzq"; depends=[class e1071]; }; classifly = derive { name="classifly"; version="0.4"; sha256="0mw1vcas0gr1r4yvh0j02zhk7kp5342r0bhhg776hqgqdczgh5zj"; depends=[class plyr]; }; classify = derive { name="classify"; version="1.3"; sha256="0134h12h6v06d7ldj9qgqjhh5f5ap98pvr0v6d4k8dqndnn0pggy"; depends=[ggplot2 lattice plyr R2jags Rcpp reshape2]; }; classyfire = derive { name="classyfire"; version="0.1-2"; sha256="0rar3mi2m1wf14lmahjbpdh1jlnisvgsbx86xbqlb8c0f8zfzxq3"; depends=[boot e1071 ggplot2 neldermead optimbase snowfall]; }; +cleangeo = derive { name="cleangeo"; version="0.1-0"; sha256="090zpjbnkyvh508q58h58qr4f30scg899g04drck6aqpw5xv6dbg"; depends=[maptools rgeos sp]; }; clere = derive { name="clere"; version="1.1"; sha256="1jna5dqy47mldd557qxl7vr59v5lalhligvm3c4k6b2dfararhfr"; depends=[Rcpp RcppEigen]; }; clhs = derive { name="clhs"; version="0.5-4"; sha256="0535mpl1dbm9ij1dvj8dsmv4fickdg47by1mvf71lgfk5mjxy5nc"; depends=[ggplot2 plyr raster reshape2 scales sp]; }; clickstream = derive { name="clickstream"; version="1.1.5"; sha256="010bf7rxicv43z33zrbmc1j0d0wz52kk7z4czxmljqs3qs6syfn2"; depends=[arules data_table igraph linprog plyr Rsolnp]; }; clifro = derive { name="clifro"; version="2.4-0"; sha256="1bjsfk4m7hgq8k1mw07zx34ibgmpxjw8sig9jjzsr5mp3v13kwp8"; depends=[ggplot2 lubridate RColorBrewer RCurl reshape2 scales selectr XML]; }; climdex_pcic = derive { name="climdex.pcic"; version="1.1-6"; sha256="0dyhqxrma8g4ny4afv6drr885m88q2b8g1n19yy3yjbrbddyz8yl"; depends=[caTools PCICt Rcpp]; }; clime = derive { name="clime"; version="0.4.1"; sha256="0qs9i7cprxddg1cmxhnmcfhl7v7g1r519ff2zfipxbs59m5xk9sf"; depends=[lpSolve]; }; -climwin = derive { name="climwin"; version="0.1.1"; sha256="0idn3nlnlgm81npxkszgk5fph32z35hcs24a9qkam4j95nk7jfyn"; depends=[evd ggplot2 gridExtra lme4 lubridate MuMIn reshape]; }; +climtrends = derive { name="climtrends"; version="1.0.5"; sha256="0pgdx0hhrqpnj3qf37ms7z9fhy4vvgichrpi4vvmin5xksmaczxa"; depends=[]; }; +climwin = derive { name="climwin"; version="0.1.2"; sha256="0nin43pi0q62ga710k1b6y5llrmf8aw4xhw5vrl6w01iqmz25v0g"; depends=[evd ggplot2 gridExtra lme4 lubridate MuMIn reshape]; }; clinUtiDNA = derive { name="clinUtiDNA"; version="1.0"; sha256="0x3hb09073gkh60fc8ia0sfk948sm6z6j8sqkz275k4m8ryrabas"; depends=[]; }; -clinfun = derive { name="clinfun"; version="1.0.10"; sha256="1q69qn7ib0mzpx5cv69fcgflp9rfmys5j33lqdj4b3g1z036bqrr"; depends=[mvtnorm]; }; +clinfun = derive { name="clinfun"; version="1.0.11"; sha256="13qc1kxbxbj9zpxb823vx0nl54pznyna8y0i167h43nvya2lf41l"; depends=[mvtnorm]; }; clinsig = derive { name="clinsig"; version="1.0-5"; sha256="1jb2qk6hfvms85whymrfpgvjp8pv33fbllpl8jg80yg1ppmg2jcg"; depends=[]; }; +clipr = derive { name="clipr"; version="0.1.1"; sha256="0qrd5k7wxcz2f9cn1v74jpw5i502ip5rwypwcypnn65b7j3cjidg"; depends=[]; }; clisymbols = derive { name="clisymbols"; version="1.0.0"; sha256="1g68kh1js6nssyzw4lpxp4d2h4rhlayhahaykxw4a4bd67fkw20p"; depends=[]; }; clogitL1 = derive { name="clogitL1"; version="1.4"; sha256="0m9yrg9mzzfv5qkdf6w55xyrjdghyrf27kk7b4x2gyvwvi5b7dkm"; depends=[Rcpp]; }; cloudUtil = derive { name="cloudUtil"; version="0.1.10"; sha256="1j86vpd4ngrdpfjk44wb1mp0l88dxia64pjd2idfcd276giplh6s"; depends=[]; }; clpAPI = derive { name="clpAPI"; version="1.2.6"; sha256="1kgzmzf87b0j43ch21anmm2d73bj2d16slmyavpbkdwg72dg1sjb"; depends=[]; }; +clttools = derive { name="clttools"; version="1.1"; sha256="0av5h3835rqwfz7xcdg6vb6qbnr74ygsikhb0wppmpc0zdp0vwdc"; depends=[]; }; clue = derive { name="clue"; version="0.3-50"; sha256="0r3lb625a6vhxr7im2slz279zav9i74s0b9srkarqmz1bhaf6ly2"; depends=[cluster]; }; clues = derive { name="clues"; version="0.5.6"; sha256="1g0pjj4as5wfc7qr3nwkzgxxxp3mrdq7djn8p8qjba6kcdjxak1i"; depends=[]; }; clustMD = derive { name="clustMD"; version="1.1"; sha256="192li0nx2hwhh5y21xs70vrnzw3wxbzr95f06makaxcrwf4xlp16"; depends=[MASS mclust msm mvtnorm tmvtnorm truncnorm]; }; cluster = derive { name="cluster"; version="2.0.3"; sha256="03jfczb3dwg57f164pya0b762xgyswyb9a7s33lw9i0s5dq72ri8"; depends=[]; }; cluster_datasets = derive { name="cluster.datasets"; version="1.0-1"; sha256="0i68s9305q08fhynpq24qnlw03gg4hbk4184z3q3ycbi8njpr4il"; depends=[]; }; -clusterCrit = derive { name="clusterCrit"; version="1.2.5"; sha256="1xwbvvzrh2dz47y4snmhb96mriblk3czy7dp5bmyvckh5papr2xv"; depends=[]; }; +clusterCrit = derive { name="clusterCrit"; version="1.2.6"; sha256="1jy2xxh9i4dsdiqmkl35xpdmq6vyf3alh4d0npzgrwmjl7516pd3"; depends=[]; }; clusterGeneration = derive { name="clusterGeneration"; version="1.3.4"; sha256="1ak8p2sxz3y9scyva7niywyadmppg3yhvn6mwjq7z7cabbcilnbw"; depends=[MASS]; }; clusterGenomics = derive { name="clusterGenomics"; version="1.0"; sha256="127hvpg06is4x486g1d5x7dfkrbk7dj35qkds0pggnqxkq3wsc1c"; depends=[]; }; clusterPower = derive { name="clusterPower"; version="0.5"; sha256="1g2qpvizyk4q3qlgvar436nrfqxwp5y8yi2y6rch9ak5mbg3yzqb"; depends=[lme4]; }; @@ -2958,7 +3073,7 @@ clv = derive { name="clv"; version="0.3-2.1"; sha256="1qgp2qhblg6ysyrlg0ad169ahw cmaes = derive { name="cmaes"; version="1.0-11"; sha256="1hwf49d1m660jdngqak9pqasysmpc4jcgr8m04szwbyzyy6xrm5k"; depends=[]; }; cmm = derive { name="cmm"; version="0.8"; sha256="1661v2lzxgf4s37wdsrnbsvqwppcr7mbp70i1xsysfzki1z6xr19"; depends=[]; }; cmprsk = derive { name="cmprsk"; version="2.2-7"; sha256="1imr3wpnj4g57n2x4ryahl4lk8lvq9y2r7319zv3k82mznha8bcm"; depends=[survival]; }; -cmrutils = derive { name="cmrutils"; version="1.2-2"; sha256="0gc4sx8g9364sybmrqdjdvddqjd9ps6v205kaw0nqdx30xn96hmm"; depends=[chron]; }; +cmrutils = derive { name="cmrutils"; version="1.3"; sha256="0zjc0bwp2p03hmnj3zjw7800pcdw8b8161y68npyp3hya0s4i9x0"; depends=[chron]; }; cmsaf = derive { name="cmsaf"; version="1.5"; sha256="06gmdxiss71qn3gaw4cs3wp0mizyny1ln3ymjlnp6kh3v9vzkjkw"; depends=[fields ncdf4 raster sp]; }; cmvnorm = derive { name="cmvnorm"; version="1.0-1"; sha256="00cm7zfxbc5md3p6sakan64a6rzz7nbq0bqq9ys2iyxpilxalj3m"; depends=[elliptic emulator]; }; cna = derive { name="cna"; version="1.0-3"; sha256="1iy0ispazhib30kh5wp3jziiyf0992nrdklrq80n0w3zhjyi21rh"; depends=[]; }; @@ -2966,7 +3081,7 @@ cncaGUI = derive { name="cncaGUI"; version="1.0"; sha256="1v55kvrc05bsm1qdyfw3r3 coala = derive { name="coala"; version="0.1.1"; sha256="04w1h1v8l4by4wqjhb2qlvkmp7nr5yklq20a2krym9x1frgcqw7m"; depends=[assertthat R6 Rcpp RcppArmadillo rehh scrm]; }; coalescentMCMC = derive { name="coalescentMCMC"; version="0.4-1"; sha256="0xxv1sw5byf84wdypg5sfazrmj75h4xpv7wh4x5cr9k0vgf80b3s"; depends=[ape coda lattice Matrix phangorn]; }; coarseDataTools = derive { name="coarseDataTools"; version="0.6-2"; sha256="1nnh61kfw294cxawz9i8yf37ddzsn5s532vvkaz0ychk0390wmi5"; depends=[MCMCpack]; }; -cobs = derive { name="cobs"; version="1.3-0"; sha256="1aly7ir7vzir9wnbhyfbrkl7dbq68f79jwxhqrfpf0v2m5kxhz88"; depends=[quantreg SparseM]; }; +cobs = derive { name="cobs"; version="1.3-1"; sha256="18dfc767zfipp4h4q7lgk5yp1c63lb9myc6bg3jkzr1v1xwbhwqk"; depends=[quantreg SparseM]; }; cocor = derive { name="cocor"; version="1.1-1"; sha256="1w6v9499jj727iznap66hlv9lr4r3s9pr5jnsin9zi8hjb2vhj4h"; depends=[]; }; cocorresp = derive { name="cocorresp"; version="0.2-3"; sha256="0r1kmcwnf476xbw7r40r3vbn6l1zgmaiq6cpgrvnyss7i5313q8s"; depends=[vegan]; }; cocron = derive { name="cocron"; version="1.0-0"; sha256="190kfv7haybi7s33bqf8dd3pcj8r6da20781583rrq6585yqh4g6"; depends=[]; }; @@ -2978,7 +3093,7 @@ coefficientalpha = derive { name="coefficientalpha"; version="0.5"; sha256="0pfw coefplot = derive { name="coefplot"; version="1.2.0"; sha256="1v6c3fk2wrjgs3b31vajmig6dvmp5acfm72wh0iffpg0qgvf5hh7"; depends=[ggplot2 plyr proto reshape2 scales useful]; }; coenocliner = derive { name="coenocliner"; version="0.2-0"; sha256="1ndz7nhkzb8y0akyf1ja39m60c1afk4sb8qk7m4xd3srd71wb35z"; depends=[]; }; coexist = derive { name="coexist"; version="1.0"; sha256="15ydhrx996i6caa0360c2bgn2zvgwfg5wdhsqq1gvrggs15w7nml"; depends=[]; }; -coin = derive { name="coin"; version="1.0-24"; sha256="1h1d6pi957qkmlk2j8f280sc6jkg328wnyxjk43yxj2zwmdnmgpd"; depends=[modeltools mvtnorm survival]; }; +coin = derive { name="coin"; version="1.1-0"; sha256="1hizvy02dikw8d4idc7xl9hc2h78frb3r4jhwr3njzn0kli302yf"; depends=[modeltools multcomp mvtnorm survival]; }; cold = derive { name="cold"; version="1.0-4"; sha256="00rl2h4pirzvgwi28pr94kkn233wvm2z8yyfsz6andbkjsihp6jw"; depends=[]; }; coloc = derive { name="coloc"; version="2.3-1"; sha256="1j3m9afpkm0bzib38yqvk85b6s6l56s6j2ni96gii4a06r87ig60"; depends=[BMA colorspace MASS]; }; colorRamps = derive { name="colorRamps"; version="2.3"; sha256="0shbjh83x1axv4drm5r3dwgbyv70idih8z4wlzjs4hiac2qfl41z"; depends=[]; }; @@ -2993,13 +3108,13 @@ combinat = derive { name="combinat"; version="0.0-8"; sha256="1h9hr88gigihc4na7l comclim = derive { name="comclim"; version="0.9.4"; sha256="0m6ynccscsrrq70p0drwrwxp4skc630kv1l5smh48pi8kagahj1g"; depends=[]; }; cometExactTest = derive { name="cometExactTest"; version="0.1.2"; sha256="0d0ccl09vcgj683p0i4g1dhnqnk61smdva4cbw6s6jdr7nqm6xa8"; depends=[]; }; commandr = derive { name="commandr"; version="1.0.1"; sha256="1d6cha5wc1nx6jm8jscl7kgvn33xv0yxwjf6h3ar3dfbvi4pp5fk"; depends=[]; }; -commentr = derive { name="commentr"; version="0.1"; sha256="0kyi7xd2f2b1avk78bmkbagyjqwwx21hca670n38k1a28kvnjpix"; depends=[stringr]; }; -commonmark = derive { name="commonmark"; version="0.4"; sha256="0canhzzc91fpcg53zms12k382zj4db652vh5cn74xrp73z8yvabk"; depends=[]; }; +commentr = derive { name="commentr"; version="1.0.1"; sha256="00p2v2kn3j6m34rr8ff7bb54ixz6zghv8h5c0yw5idi9x16rsj04"; depends=[stringr]; }; +commonmark = derive { name="commonmark"; version="0.5"; sha256="1mjqb88z7rzr2f0mlhzfrg24x6jhrj36qw2licmm5b8gsb70gzcr"; depends=[]; }; compHclust = derive { name="compHclust"; version="1.0-2"; sha256="1h39krvz516xwsvn5987i1zbzan8vx2411qz6dad112hpss0vyk9"; depends=[]; }; compactr = derive { name="compactr"; version="0.1"; sha256="0f2yds6inmx0lixj08ibqyd2i61l2cbg1ckgpb8dl2q7kcyyd6mx"; depends=[]; }; -compare = derive { name="compare"; version="0.2-5"; sha256="073apjmw5hwslhnjwhff0m8lwszv29n6vbqy0wxl39pyzg7q2x41"; depends=[]; }; +compare = derive { name="compare"; version="0.2-6"; sha256="0k9zms930b5dz9gy8414li21wy0zg9x9vp7301v5cvyfi0g7xzgw"; depends=[]; }; compareC = derive { name="compareC"; version="1.3.1"; sha256="0dachfr23lps2jj1y5gc958k54vskmww84gdgk4amihsdgjsnphg"; depends=[]; }; -compareGroups = derive { name="compareGroups"; version="3.0.1"; sha256="185lz69al72p4s354vn6gvha3zbhyvf2fsfym0knyspgl08q3m2g"; depends=[epitools gdata HardyWeinberg Hmisc SNPassoc survival xtable]; }; +compareGroups = derive { name="compareGroups"; version="3.1"; sha256="1cdvcpjcbxfzc06j3v8pvd0nd89r7ljss749vbwwns7kjxqkpbfn"; depends=[epitools gdata HardyWeinberg Hmisc knitr rmarkdown SNPassoc survival xlsx xtable]; }; compareODM = derive { name="compareODM"; version="1.2"; sha256="019hq8j56asjvh4x1p65785mf38xr05j3by0749gl9k9yl8645da"; depends=[XML]; }; comparison = derive { name="comparison"; version="1.0-4"; sha256="0pc462rhk8gr8zrf08ksi315kmhydlp027q5gd40ap5mmhk7rd82"; depends=[isotone]; }; compeir = derive { name="compeir"; version="1.0"; sha256="1bb5459wcqpjic2b9kjn0l0qdn7sqmmx34hdb2aqg80q22mhx5dv"; depends=[etm lattice]; }; @@ -3015,23 +3130,25 @@ cond = derive { name="cond"; version="1.2-3"; sha256="0y7m7valk7zn40y62348czmdvf condGEE = derive { name="condGEE"; version="0.1-4"; sha256="0mqj2pc91n8h3arpd4b9f7ndbcnai21c67is22qg22wj7vhhs87h"; depends=[numDeriv rootSolve]; }; condMVNorm = derive { name="condMVNorm"; version="2015.2-1"; sha256="04563jljnjhbiaiq33gn5dxjfvv05xp3lhl3w942v0smy0cdhrh4"; depends=[mvtnorm]; }; condmixt = derive { name="condmixt"; version="1.0"; sha256="05q1fj7akf6lsq9rbcqqkzlx82jvk6mlvmwx6jzk8j228fwqmg90"; depends=[evd]; }; -coneproj = derive { name="coneproj"; version="1.6"; sha256="1bx0j9r83c944aklyq4lxdhmskyiwh4f6i2fim5fi6hpf6n9ajds"; depends=[Rcpp RcppArmadillo]; }; +coneproj = derive { name="coneproj"; version="1.7"; sha256="11gwph2hyg3bzspciybn81gqg8qbp4mfs5b5b1y2aabnq4l0vxyq"; depends=[Rcpp RcppArmadillo]; }; conf_design = derive { name="conf.design"; version="2.0.0"; sha256="06vdxljkjq1x56xkg041l271an1xv9wq79swxvzzk64dqqnmay51"; depends=[]; }; confidence = derive { name="confidence"; version="1.1-0"; sha256="11y2mjh9ykmsgf6km6f2w5rql1vqwick4jzmxg5gkfkiisvsq1cp"; depends=[ggplot2 knitr markdown plyr xtable]; }; conformal = derive { name="conformal"; version="0.1"; sha256="0syb1p35r6fir7qimp2k51hpvl3xw45ma2hi7qz2xzw8cwhlii3a"; depends=[caret e1071 ggplot2 randomForest]; }; confreq = derive { name="confreq"; version="1.3-1"; sha256="1d4ianimksnfwkld7cg9mkhbpwiaqy5bcilwfy45dwby5bai6cjx"; depends=[gmp]; }; conics = derive { name="conics"; version="0.3"; sha256="06p6dj5dkkcy7hg1aa7spi9py45296dk0m6n8s2n3bzh3aal5nzq"; depends=[]; }; conjoint = derive { name="conjoint"; version="1.39"; sha256="0f8fwf419js9c292i3ac89rlrwxs2idhwxml1qd8xd2ggwfh6w5m"; depends=[AlgDesign clusterSim]; }; +conover_test = derive { name="conover.test"; version="1.1.0"; sha256="0jg8bcqf3zbzabj5dr76js8hwkgp80428sx2rm8bxapgkcwaqz1k"; depends=[]; }; constrainedKriging = derive { name="constrainedKriging"; version="0.2.4"; sha256="1a91s0b7yka37fb5pm172fmlqrhm6da370cqb9knvkg5n8vi4hys"; depends=[RandomFields rgeos sp spatialCovariance]; }; contfrac = derive { name="contfrac"; version="1.1-9"; sha256="16yl96bmr16a18qfz6y5zf7p02ky1jy2iimcb1wp50g7imlcq840"; depends=[]; }; conting = derive { name="conting"; version="1.5"; sha256="02vkpzdcwsny40jdcxgjfrx89lw1gq864s3fgswa9bfxfps9p58h"; depends=[BMS coda gtools mvtnorm tseries]; }; +contoureR = derive { name="contoureR"; version="1.0.5"; sha256="1izq1alkf24zd2sf2ir2adyrkwhdj7n89cv6z0dfh5mfqld5bkdn"; depends=[geometry plyr Rcpp reshape]; }; contrast = derive { name="contrast"; version="0.19"; sha256="1kc3scz3msa52lplc79mmn4z99kq1p2vlb18wqxa9q2ma133x6pl"; depends=[rms]; }; controlTest = derive { name="controlTest"; version="1.0"; sha256="0gzhd92qy3dykwdfwckw6x46bd9m044hcn4bqwpv16af1xbrj963"; depends=[survival]; }; convevol = derive { name="convevol"; version="1.0"; sha256="05nhpndixvrmiq5paswj7qwsq3k3al34q3j751bic4kb8zhby3fk"; depends=[ape cluster geiger MASS phytools]; }; -convoSPAT = derive { name="convoSPAT"; version="0.1"; sha256="1vm6ghxbdbhgjr744mffnyrsz0a7x37k9ckm7n1mn862fdvsb2w3"; depends=[ellipse fields geoR MASS plotrix StatMatch]; }; +convoSPAT = derive { name="convoSPAT"; version="1.0"; sha256="0awax173csyj705nh48nfk1f4w00yjkm00xfglkphccpny1bkqyq"; depends=[ellipse fields geoR MASS plotrix StatMatch]; }; cooccur = derive { name="cooccur"; version="1.2"; sha256="0v26aa6j77dmm7pdij4qaz03mxn69aa71rw6n5yl3b9qb0w4k81z"; depends=[ggplot2 gmp reshape2]; }; cooptrees = derive { name="cooptrees"; version="1.0"; sha256="0izvwna1jsqik3v5fz1r4c86irvma42clw0p4rdvwswv5pk698i1"; depends=[gtools igraph optrees]; }; -copBasic = derive { name="copBasic"; version="1.7.1"; sha256="0qhrazzsrc429z9fsbqklvwdfgn65adck51vp74jijjd0p6pki4s"; depends=[lmomco]; }; +copBasic = derive { name="copBasic"; version="2.0.1"; sha256="1jmjyz70hw8sbihxf74ir6sxrlcxwv0c1fhw1ph0raasbyxrxml6"; depends=[lmomco]; }; copCAR = derive { name="copCAR"; version="1.0-1"; sha256="173jv69n4g68yfrz03sg23qzlyvvlw988axgj5knq3l2cq6pjpb2"; depends=[numDeriv Rcpp RcppArmadillo spam]; }; cope = derive { name="cope"; version="0.1"; sha256="1g00dzy99m4212wrkhmqf8ibmilhp75hd2yv7yfzi28nr5jgir3m"; depends=[fields maps MASS mvtnorm]; }; copula = derive { name="copula"; version="0.999-13"; sha256="0yjy03wn6lsiacfh7qblspklxc9kfwd3g7bz2fx2ldkd90rwhmqp"; depends=[ADGofTest gsl lattice Matrix mvtnorm pspline stabledist]; }; @@ -3040,10 +3157,12 @@ corHMM = derive { name="corHMM"; version="1.16"; sha256="048bvnw2ib9x7yijlgp4d1l corTools = derive { name="corTools"; version="1.0"; sha256="0arvqk2xp19ap73zmdk0kb1fycb3v2mf65b4bhanvcqwr4kg4vdk"; depends=[]; }; corclass = derive { name="corclass"; version="0.1"; sha256="02mxypdrjwf8psk0j9ggbw14889a87c6lw11qki3s3biq52qsx3y"; depends=[igraph]; }; corcounts = derive { name="corcounts"; version="1.4"; sha256="0irlx62ql5rp5s7nnjdy6jh723wl4039wn10zxri8ihxwqsyyz3f"; depends=[]; }; +cord = derive { name="cord"; version="0.1.1"; sha256="18xj6cwmx1a7p3vqx5img8qf8s75nc6pcv78v15j081pgn786ma5"; depends=[Rcpp RcppArmadillo]; }; coreNLP = derive { name="coreNLP"; version="0.4-1"; sha256="0a6pc588ddi9qyi5gsnzzvm4k0p5sp5bnjrlsskaymzdq4rp6miz"; depends=[plotrix rJava XML]; }; coreTDT = derive { name="coreTDT"; version="1.0"; sha256="14rnh61gk3m6g8rq77hm9ybds0px15di2mxm3jiyfdfynx5ng58f"; depends=[]; }; corpcor = derive { name="corpcor"; version="1.6.8"; sha256="0gnwqzfhxhxy7zxjzgga9l2npn588jjavqlmv9dag7ciq1kxmzk9"; depends=[]; }; corpora = derive { name="corpora"; version="0.4-3"; sha256="0zh8mabfy9yqgx7asi4yqv4c0kj59yvyxxaxjgdjy5kkr17zd4g4"; depends=[]; }; +corregp = derive { name="corregp"; version="0.1.3"; sha256="1y59c3w3a06laydbwisyca42j01wihrx78chmm77awq0cxw1glyb"; depends=[ellipse gplots rgl]; }; correlate = derive { name="correlate"; version="1.0"; sha256="0hv0i928f49p8n78hd3bcx923l2x0zcs4kwj71ph8gm7s8540fhc"; depends=[]; }; corrgram = derive { name="corrgram"; version="1.8"; sha256="0myaf0j2sa895xiczhn6r97j988jxc1bv8wnh9cw2ppxzxqly4rg"; depends=[seriation]; }; corrplot = derive { name="corrplot"; version="0.73"; sha256="0xnlkb8lhdjcc10drym9ymqzvfwa3kvf955y0k66z5jvabzyjkck"; depends=[]; }; @@ -3059,6 +3178,7 @@ countrycode = derive { name="countrycode"; version="0.18"; sha256="1by3xws2c43ry covLCA = derive { name="covLCA"; version="1.0"; sha256="15jsjrlaws1cqyrwvh4lzbhxkb11jmgpmddg98nfrzmjpczn2iw3"; depends=[Matrix mlogit poLCA]; }; covRobust = derive { name="covRobust"; version="1.1-0"; sha256="1nvy5cqs4g565qj2hhgk5spr58ps2bhas3i752rf7wvrskb89fk7"; depends=[]; }; covTest = derive { name="covTest"; version="1.02"; sha256="0p4di8bdjghsq5jd678dprlhiwnxr5piqlx2z7hi2bjjpvvl5657"; depends=[glmnet glmpath lars MASS]; }; +covmat = derive { name="covmat"; version="1.0"; sha256="00y966897x83v471yarfikpr794b7adhgn5c9hgh0j1j4yfdc3b8"; depends=[DEoptim doParallel fGarch foreach ggplot2 gridExtra lhs Matrix mvtnorm optimx reshape2 RMTstat robust robustbase scales VIM xts zoo]; }; covr = derive { name="covr"; version="1.2.0"; sha256="1gavcqqbg211sv52sicrh87vif71dl6n9xfcb6b3giqw897w7vrc"; depends=[crayon devtools htmltools httr jsonlite rex]; }; covreg = derive { name="covreg"; version="1.0"; sha256="0v19yhknklmgl58zhvg4szznb374cdh65i7s8pcj2nwrarycwzaq"; depends=[]; }; cowplot = derive { name="cowplot"; version="0.5.0"; sha256="1syldi47xl2fbdn3dbclc2xyp2la8xs3hp45qmg9565g4m3ixm14"; depends=[ggplot2 gtable plyr]; }; @@ -3068,27 +3188,29 @@ coxphf = derive { name="coxphf"; version="1.11"; sha256="0494szmhc7qp1qynrqf3kmn coxphw = derive { name="coxphw"; version="3.0.0"; sha256="11pyd09dwkbixjz1riv8rz3jrp1ix6cbn1fw9nm8vnrc19x5lkz5"; depends=[survival]; }; coxrobust = derive { name="coxrobust"; version="1.0"; sha256="08hp0fz5gfxgs3ipglj6qfr6v63kzxkrzg650bmzabq8dvrxd97q"; depends=[survival]; }; coxsei = derive { name="coxsei"; version="0.1"; sha256="1agr0gmyy1f2x6yspj04skgpi1drpbc1fcbwhhhjsz1j6c64xagy"; depends=[]; }; -cp4p = derive { name="cp4p"; version="0.3"; sha256="10jr3hkqqq305ic3f166zza3zsgsxgh253qm4p700gwgk5z57sqc"; depends=[limma MESS multtest qvalue]; }; +cp4p = derive { name="cp4p"; version="0.3.1"; sha256="0rzjfdwjqm0i6dzzh4x2zrd3hncc8hyc6anbbsjflamxb5i4pixk"; depends=[limma MESS multtest qvalue]; }; cpa = derive { name="cpa"; version="1.0"; sha256="14kcxayw4cdbjfa6bvfzqp8flwc0sr3hmh2dnr1dfax0hnccd71m"; depends=[]; }; cpca = derive { name="cpca"; version="0.1.2"; sha256="1pccsjahb1qynnxa0akhfpcmhfmdg4rd1s6pfqrdl7bwbcmq4lqf"; depends=[]; }; +cpgen = derive { name="cpgen"; version="0.1"; sha256="1cp3d6riy65lc1mfrxh92lc6f1qal7amhjilfzz0r529j5fipd2v"; depends=[Matrix pedigreemm Rcpp RcppEigen RcppProgress]; }; cpk = derive { name="cpk"; version="1.3-1"; sha256="1njmk2w6zbp6j373v5nd1b6b8ni4slgzpf9qxn5wnqlws8801n73"; depends=[]; }; cplexAPI = derive { name="cplexAPI"; version="1.2.11"; sha256="1rfvq2a561dz3szvrs9s5gsizwwp0b5rn4059v9divzw23clr2a9"; depends=[]; }; -cplm = derive { name="cplm"; version="0.7-3"; sha256="17h7wnwym49pm56ifi31lnjzja3bqgd4nkla6hbqk338a56lqspl"; depends=[biglm coda ggplot2 Matrix minqa nlme reshape2 statmod tweedie]; }; +cplm = derive { name="cplm"; version="0.7-4"; sha256="156w3yiazx79133rmxmgz9v4im8g7h37fj4gq5ymy5255ws07m8m"; depends=[biglm coda ggplot2 Matrix minqa nlme reshape2 statmod tweedie]; }; cpm = derive { name="cpm"; version="2.2"; sha256="1n1iqhalp99mbh8jha0pv759fb97sqxdiiq9bxy3wm6aqmssvdb1"; depends=[]; }; cqrReg = derive { name="cqrReg"; version="1.2"; sha256="1sn8pkbqb058lbysdf2y1s734351a91kwbanplyzv3makbbdm4ca"; depends=[quantreg Rcpp RcppArmadillo]; }; -cquad = derive { name="cquad"; version="1.2"; sha256="1ygq1z9mkrfvjq5yipfg6wpd0gmwh8h40ykp0hv06hvn40aqkw4h"; depends=[MASS]; }; +cquad = derive { name="cquad"; version="1.3"; sha256="1r6g3yp3vvm8d5351lan4im1bmir38d4l9cf8bw0ay7as33ny3x9"; depends=[MASS plm]; }; crackR = derive { name="crackR"; version="0.3-9"; sha256="18fr3d6ywcvmdbisqbrbqsr92v33paigxfbslcxf7pk26nzn2lly"; depends=[evd Hmisc]; }; cramer = derive { name="cramer"; version="0.9-1"; sha256="1dlapmqizff911v3jv8064ddg8viw28nq05hs77y5p4pi36gpyw4"; depends=[boot]; }; crank = derive { name="crank"; version="1.0-7"; sha256="1ni5icg1c9ypvcvcxrr7dcp1zbk4iwyns421rrqsgmpns06s59w6"; depends=[]; }; cranlogs = derive { name="cranlogs"; version="2.0.0"; sha256="13c8sa3s1xvb5naj4cy7d5azcbf716l0gp4x086sqd5dg1hqdy8b"; depends=[httr jsonlite]; }; crantastic = derive { name="crantastic"; version="0.1"; sha256="0y2w9g100llnyw2qwjrib17k2r2q9yws77mf6999c93r8ygzn4f5"; depends=[]; }; -crawl = derive { name="crawl"; version="1.4-1"; sha256="175w5933h5hhhjnrc0l1kg5q24b8pclnf5sf36gj1pmg8s58d1gp"; depends=[mvtnorm raster sp]; }; +crawl = derive { name="crawl"; version="1.5"; sha256="19iqikq5japqpzy82lmswivfi7swap5g5rdpl9ixw7kbgjaxh535"; depends=[mvtnorm raster sp]; }; crayon = derive { name="crayon"; version="1.3.1"; sha256="0d38fm06h272a8iqlc0d45m2rh36giwqw7mwq4z8hkp4vs975fmm"; depends=[memoise]; }; crblocks = derive { name="crblocks"; version="0.9-1"; sha256="1m6yy6jb1dld7m9jaasms5ps8sn3v039jvlk8b0c08hmm7y0rm3z"; depends=[]; }; -crch = derive { name="crch"; version="0.9-0"; sha256="0kd71lv239sn08f3v63k18dxxn6zbk3m0znx2xrmd4a2akrqwjsj"; depends=[Formula ordinal]; }; +crch = derive { name="crch"; version="0.9-1"; sha256="0lzarmz8f2rw5q28kfsbdzg037iskgxayyhgq9dnrpbyz1726clp"; depends=[Formula ordinal]; }; +creditr = derive { name="creditr"; version="0.6.1"; sha256="1dhjl99gjc97bdsdg29mq6xifivjn9kr0y7m2jzvrzb26x856z97"; depends=[devtools quantmod Rcpp RCurl XML xts zoo]; }; credule = derive { name="credule"; version="0.1.3"; sha256="1vciqkxkf93z067plipvhbks9k9sfqink5rhifzbnwc2c5gxp5mx"; depends=[]; }; crimCV = derive { name="crimCV"; version="0.9.3"; sha256="1p2cma78fb9a2ckmwdvpb6fc0818xw2mvq565dgiimgkdmmr0iid"; depends=[]; }; -crimelinkage = derive { name="crimelinkage"; version="0.0.3"; sha256="018ni9jgnm4k8vybz99drsx8phb0ar3x0raa5ydkfpgqp525sayi"; depends=[geosphere igraph]; }; +crimelinkage = derive { name="crimelinkage"; version="0.0.4"; sha256="1zzk50kyccvnp51vzp28c9yi23hsp25arrgdn88lwfwa0m43rlar"; depends=[geosphere igraph]; }; crmn = derive { name="crmn"; version="0.0.20"; sha256="1kl1k1s2gm63f9768cg8w4j6y1gq4hws3i7hdfhj7k9015s0a25p"; depends=[Biobase pcaMethods]; }; crn = derive { name="crn"; version="1.1"; sha256="1fw0cwx478bs6hxidisykz444jj5g136zld1i8cv859lf44fvx2d"; depends=[chron RCurl]; }; crossReg = derive { name="crossReg"; version="1.0"; sha256="1866jhfnksv9rk89vw7w4gaxi76bxfjvqxx7cfa8nlrcsmaqd7rf"; depends=[]; }; @@ -3111,8 +3233,9 @@ csn = derive { name="csn"; version="1.1.3"; sha256="102w1qh9hgz4j9lh5hnbw1z3b7p0 csrplus = derive { name="csrplus"; version="1.03-0"; sha256="0kljndmiwblsvvdnxfywida9k0dmdwjq63d934l5yl6z7k4zd0xa"; depends=[sp]; }; cstar = derive { name="cstar"; version="1.0"; sha256="1zws4cq5d37hqdxdk86g85p2wwihbqnkdsg48vx66sgffsf1fgxd"; depends=[]; }; csvread = derive { name="csvread"; version="1.2"; sha256="1zx43g4f4kr7jcmiplzjqk2nw1g5kmmfap85wk88phf6fp0w8l5p"; depends=[]; }; -ctmm = derive { name="ctmm"; version="0.2.7"; sha256="07dh6ginqp4xj7g2sd27xsxiwwbvdvkpz65kv9kasv6flk9fwy0a"; depends=[expm manipulate MASS Matrix numDeriv raster rgdal sp]; }; +ctmm = derive { name="ctmm"; version="0.2.8"; sha256="1wgmlh22bvilvb3scpspnf4hzz8y00bncfi0x2bdmwhdxq9r5xx7"; depends=[expm manipulate MASS Matrix numDeriv raster rgdal sp]; }; cts = derive { name="cts"; version="1.0-19"; sha256="16f6nah3w63bz8b9xlhi3a7mpkiywq6gqkxgm5am90g0bqg5j3py"; depends=[]; }; +ctsem = derive { name="ctsem"; version="1.1.1"; sha256="0wlkj77xzrlh8h9r9nwwqjjrv1q6pwpw3zd4ciqfbgwhi80k8jwj"; depends=[MASS Matrix OpenMx]; }; ctv = derive { name="ctv"; version="0.8-1"; sha256="1fmjhh4vr4vcvqg76dzp1avqappsap5piki1ixahikwbwirxcwvw"; depends=[]; }; cubature = derive { name="cubature"; version="1.1-2"; sha256="1vgyvygg37b6yhy8nkly4w6p01jsqg2kyam4cn0vvml5vjdlc18a"; depends=[]; }; cubfits = derive { name="cubfits"; version="0.1-0"; sha256="0iylwxzz2aa70q1xqk8r1rkfiiscj3blwq7dshkwshh91l2fgzfw"; depends=[]; }; @@ -3121,11 +3244,11 @@ cudaBayesregData = derive { name="cudaBayesregData"; version="0.3-11"; sha256="1 cudia = derive { name="cudia"; version="0.1"; sha256="1ms3bc8sp6l3bm75j418mmb707sy3gyvxznhfias3nd4sw7i074x"; depends=[MCMCpack mvtnorm]; }; cumSeg = derive { name="cumSeg"; version="1.1"; sha256="01hn3j1i7bi2r9vsqwbgy1f1alcisxyf4316xx57bg82lb34d0s5"; depends=[lars]; }; cumplyr = derive { name="cumplyr"; version="0.1-1"; sha256="07sz1wryl3kxbk67qyvnkrkdrp4virlsaia0y6rf9bqdw7rc6vi2"; depends=[]; }; -curl = derive { name="curl"; version="0.9.1"; sha256="0kz7c6cyhan2c9snizzf1b8ppipxb9hnkfsfkik86y8sw7yhw4jp"; depends=[]; }; +curl = derive { name="curl"; version="0.9.3"; sha256="02p9s1jlk8dcbvn71ivn4xnrqh9dwqyhgn4s1fzcfmnmfxhl5gld"; depends=[]; }; currentSurvival = derive { name="currentSurvival"; version="1.0"; sha256="0bqpfwf4v4pb024a98qwg81m6zd7ljg1ps42ifhxpqx7b9gdyi6c"; depends=[cmprsk survival]; }; curvHDR = derive { name="curvHDR"; version="1.0-3"; sha256="0rq72prxv2r5nicss9mh4wpkfjvlbb885w85ag4qrqijzq6y8q04"; depends=[feature flowCore geometry hdrcde ks misc3d ptinpoly rgl]; }; curvetest = derive { name="curvetest"; version="2.2"; sha256="1lz6rx9fmgyrlci1dyanscp2a18ki9lhrwnrzhp062flysffimg6"; depends=[locfit R_methodsS3 R_oo]; }; -cusp = derive { name="cusp"; version="2.3.1"; sha256="0fs5zwxh2wrhyqcycz09qskbv57hfw1ag32jk9q12lqxpsxkws8v"; depends=[]; }; +cusp = derive { name="cusp"; version="2.3.3"; sha256="130m0is48bp11p5fpg17lwqwlavsa8fzfxjs0z62vl6lm006aahw"; depends=[]; }; cutoffR = derive { name="cutoffR"; version="1.0"; sha256="1801jylmpp4msyf07rhg4153kky1zvi4v0kkjb9d51dc7zkhh531"; depends=[ggplot2 reshape2]; }; cuttlefish_model = derive { name="cuttlefish.model"; version="1.0"; sha256="1rmkfyfd1323g2ymd5gi1aksp160cwy5ha5cjqh5r6fzd8hhqjxs"; depends=[]; }; cvAUC = derive { name="cvAUC"; version="1.1.0"; sha256="13bk97l5nn97h85iz93zxazhr63n21nwyrpnl856as9qp59yvn64"; depends=[data_table ROCR]; }; @@ -3137,6 +3260,7 @@ cvxclustr = derive { name="cvxclustr"; version="1.1.1"; sha256="0idmx4wgz4d0b1xz cwhmisc = derive { name="cwhmisc"; version="6.0"; sha256="13lgpxl957lbf333m1a17ad8iy3kjfrzav0sxx7w3vnsj98aqa43"; depends=[lattice]; }; cwm = derive { name="cwm"; version="0.0.3"; sha256="1ln2l12whjhc2gx38hkf3xx26w5vz7m377kv67irh6rrywqqsyxn"; depends=[MASS matlab permute]; }; cxxfunplus = derive { name="cxxfunplus"; version="1.0"; sha256="0kyy5shgkn7wikjdqrxlbpfl3zkkv4v1p8a1vv0xkncwarjs4n8d"; depends=[inline]; }; +cycleRtools = derive { name="cycleRtools"; version="1.0.1"; sha256="1x6k588m4lbvkwnc5gs3aw8kiswc7xfiflghhxm13kcv2i6pqfzw"; depends=[Rcpp]; }; cycloids = derive { name="cycloids"; version="1.0"; sha256="00pdxny11mhfi8hf76bfyhd1d53557wcbl2bqwjzlpw5x3vdnsan"; depends=[]; }; cymruservices = derive { name="cymruservices"; version="0.1.1"; sha256="1pqqqmsgicp87r9axv96qj61mmxrn50d8xnhfhjf7sklxkh57482"; depends=[stringr]; }; cyphid = derive { name="cyphid"; version="1.1"; sha256="0ya9w8aw27n0mvvjvni4hxsr4xc8dd08pjxx7zkfl1ynfn5b08am"; depends=[fda]; }; @@ -3154,29 +3278,30 @@ dams = derive { name="dams"; version="0.1"; sha256="0h0chh9ahsfvqhv1a0dfw88q7gdl darch = derive { name="darch"; version="0.9.1"; sha256="0syrzmmz43msd51whkb4xy5n0kgcl50yw4w3i9sdd9k20glvwpsx"; depends=[ff futile_logger]; }; darts = derive { name="darts"; version="1.0"; sha256="07i5349s335jaags352mdx8chf47ay41q7b0mh2xjwn2h9kzgqib"; depends=[]; }; dashboard = derive { name="dashboard"; version="0.1.0"; sha256="1znqwvz49r47lp6q48qaas0s63wclgybav82a247qvcavzns3kip"; depends=[Rook]; }; -data_table = derive { name="data.table"; version="1.9.4"; sha256="0gsnjjly3mxwfs6q0kjr42vr234mprp8kcyzcsa4dqf2ya2gs1s6"; depends=[chron reshape2]; }; -data_tree = derive { name="data.tree"; version="0.1.6"; sha256="09pk4c5jkj69m6sxa2pbs1wh1w4rsg799w72fx9ib4jv22hjvrhc"; depends=[R6]; }; +data_table = derive { name="data.table"; version="1.9.6"; sha256="0vi3zplpxqbg78z9ifjfs1kl2i8qhkqxr7l9ysp2663kq54w6x3g"; depends=[chron]; }; +data_tree = derive { name="data.tree"; version="0.2.1"; sha256="1j5g6fhmbxx3pb4zvb7pxh4g03pd28dpkxb4r889hr8hjxb1ppz9"; depends=[R6 stringr]; }; dataQualityR = derive { name="dataQualityR"; version="1.0"; sha256="0f2410sd6kldv7zkqsmbz1js0p5iq7zwlnfwmmnlbrd303p35p3j"; depends=[]; }; -dataRetrieval = derive { name="dataRetrieval"; version="2.3.0"; sha256="0a9v2k473g4a49w9a1xk1x3xd9hdmc5m5xsqh3790vfx89drza69"; depends=[lubridate plyr RCurl reshape2 XML]; }; +dataRetrieval = derive { name="dataRetrieval"; version="2.3.1"; sha256="03f2mvxf1l3p6xx9d2l8yz8mib0p24j80bf02ws9yqsjn9gmcly2"; depends=[lubridate plyr RCurl reshape2 XML]; }; datacheck = derive { name="datacheck"; version="1.2.2"; sha256="1i3n5g1b6ix8gpn4c74s7ll1dbrllrzgpb1f3hk449d6p4kmisq6"; depends=[Hmisc shiny stringr]; }; dataframes2xls = derive { name="dataframes2xls"; version="0.4.6"; sha256="18m4cbr3pxdn5ynxwd8klwwli3cyfjcn83pl17sn1rbavqlnkq5c"; depends=[]; }; -datalist = derive { name="datalist"; version="0.2"; sha256="0q82wira0sfi63cn66f5cfyd15f19ig7pbmpk56j38a3115l2fmn"; depends=[assertthat]; }; +datafsm = derive { name="datafsm"; version="0.1.0"; sha256="1xnv55ls64b7b0ipr2zn5g6kg7f50bb5pnaxh3nz79yhawdr74fz"; depends=[caret GA Rcpp]; }; datamap = derive { name="datamap"; version="0.1-1"; sha256="0qm4zb9ldg4wz1a7paj5ilr1dhyagq81rk9l2v43hmkv52sssgkv"; depends=[DBI]; }; datamart = derive { name="datamart"; version="0.5.2"; sha256="0c0l157fzkcp30ch4ymaalcx18zhz6sa5srr50w9izhbx3pmldxp"; depends=[base64 gsubfn markdown RCurl RJSONIO XML]; }; +dataonderivatives = derive { name="dataonderivatives"; version="0.2.1"; sha256="0hlvnnn3gs73m6gryr6ngmd9sdlamwmdmac3fawbbyna2if5b77n"; depends=[assertthat downloader dplyr httr jsonlite lubridate readr]; }; datastepr = derive { name="datastepr"; version="0.0.1"; sha256="1dzx7mw9hl2f8q638m3vwva7mdlb59bgjc5rmpcjb5nxmylpx0vk"; depends=[dplyr lazyeval magrittr R6 rlist]; }; datautils = derive { name="datautils"; version="0.1.4"; sha256="0adg87p9rzz62cm0s80x71mhsg3yfg93gskv1hs1l8gaj78zd1y1"; depends=[deldir gplots gtools]; }; dataview = derive { name="dataview"; version="2.1.1"; sha256="1nn33h5c1h4a3zm1xm7sdz4s6sy0f3r53jhm7bv6qk7aiylwqf6v"; depends=[data_table xtermStyle]; }; date = derive { name="date"; version="1.2-34"; sha256="066zsddpw87x1bhl3479k6fd1wrl3x91n5rd454diwmwq2s8i5qb"; depends=[]; }; dave = derive { name="dave"; version="1.5"; sha256="0sw9hc4y9wdfbnnk6isg7z7sky6ni68pkjxdlrph5m7jcyqphz96"; depends=[labdsv vegan]; }; -dawai = derive { name="dawai"; version="1.1"; sha256="0icf8iys980z0agyba94xa16400p2vdvg8hg52vvlgfc85ikqfkx"; depends=[boot ibdreg mvtnorm]; }; +dawai = derive { name="dawai"; version="1.2.1"; sha256="0i0vgd4kia2hgx88rjdyi0y8hikzii4mwgal46c9iiqb6gmf8vrj"; depends=[boot ibdreg mvtnorm]; }; db_r = derive { name="db.r"; version="0.1.3"; sha256="1zjsj0rxg9wysl1gzm7ggphd5mi02mj0bn80kmbx1vb7aa7bnxxh"; depends=[DBI rjson RSQLite stringr]; }; dbConnect = derive { name="dbConnect"; version="1.0"; sha256="1vab5l4cah5vgq6a1b9ywx7abwlsk0kjx8vb3ha03hylcx546w42"; depends=[gWidgets RMySQL]; }; dbEmpLikeGOF = derive { name="dbEmpLikeGOF"; version="1.2.4"; sha256="0vhpcxy702cp3lvlif2fzmvccys8iy7bv1fbg6ki2l8bvn2f7c5p"; depends=[]; }; dbEmpLikeNorm = derive { name="dbEmpLikeNorm"; version="1.0.0"; sha256="0h5r2mqgallxf9hin64771qqn9ilgk1kpsjsdj2dqfl3m8zg967l"; depends=[dbEmpLikeGOF]; }; dbarts = derive { name="dbarts"; version="0.8-5"; sha256="1w170mdfl5qz7dv1p2kqx0wnkmbz2gxh2a4p7vak1nckhz2sgpgn"; depends=[]; }; dblcens = derive { name="dblcens"; version="1.1.7"; sha256="02639vyaqg7jpxih8cljc8snijb78bb084f4j3ns6byd09xbdwcw"; depends=[]; }; -dbmss = derive { name="dbmss"; version="2.2.1"; sha256="0maz8zhz8c8xjdcmkhsaxz6149mh4mkcwmmd01saqsy57ncy7qhq"; depends=[cubature Rcpp spatstat]; }; -dbscan = derive { name="dbscan"; version="0.9-1"; sha256="1i8iq5y93f6cmd20h4nnwkj902d967m6d9crxnj76vbnwgilbjgw"; depends=[Rcpp]; }; +dbmss = derive { name="dbmss"; version="2.2.2"; sha256="1hifjszy3p6xlja13vk3y1rsazdzlwwi1wxwj24hvxf3n513zj2f"; depends=[cubature Rcpp spatstat]; }; +dbscan = derive { name="dbscan"; version="0.9-4"; sha256="0xciig30k8wdp3zj80vn4nbvwvk1h89d4p8xj1pdgg2716sqi2n3"; depends=[Rcpp]; }; dbstats = derive { name="dbstats"; version="1.0.4"; sha256="1miba5h5hkpb79kv9v9hqb5p66sinxpqvrw9hy9l5z4li6849yy1"; depends=[cluster pls]; }; dcGOR = derive { name="dcGOR"; version="1.0.6"; sha256="0rvwa25r23yayx1i6xhkfaw2z85d2iyfx3slg3aq1m0fa7kj380p"; depends=[dnet igraph Matrix]; }; dcemriS4 = derive { name="dcemriS4"; version="0.55"; sha256="15x4hjc5fwpn80h90q5x9a3p84pp3mxsmcx4hq5l0j52l9dy9nv3"; depends=[oro_nifti]; }; @@ -3224,17 +3349,19 @@ depthTools = derive { name="depthTools"; version="0.4"; sha256="1699r0h1ksgrlz9x dequer = derive { name="dequer"; version="1.0"; sha256="1xf2kl6ppgsplqwhxxyak39575bjijh81snq534yndf31pdqqhd7"; depends=[]; }; descomponer = derive { name="descomponer"; version="1.2"; sha256="08hc3p4l8dy1h2z8ijifwlgidmac9b29g1k725yzwzbdr5jzvnzl"; depends=[taRifx]; }; descr = derive { name="descr"; version="1.1.2"; sha256="1bqr63s2w0gak117506f5v7k9wfj08cn6jy6idw5ii7x6jjh6xx7"; depends=[xtable]; }; +describer = derive { name="describer"; version="0.2.0"; sha256="1pjyihmn4gkaamixsc3qwynsc02pwv9bgn6s7z7acmmsybhhs6xn"; depends=[]; }; deseasonalize = derive { name="deseasonalize"; version="1.35"; sha256="1fjsa7g34dckjs6mx9b10m99byxagggm0p9pw2f1vmpjqlasin0l"; depends=[FitAR lattice]; }; -desiR = derive { name="desiR"; version="1.0"; sha256="10c9ld918yg5zgvf40bhlsj2i7w6i08ws26q799w9ma9splgq8sk"; depends=[]; }; +desiR = derive { name="desiR"; version="1.1"; sha256="0f3inw0ndwbjbhbyrnfcjz828mk4n7nb5gq10v6jywcj6v1hx3sl"; depends=[]; }; designGG = derive { name="designGG"; version="1.1"; sha256="1x043j36llwd7kd4skbpl2smz2ybsxjqf5yd1xwqmardq60gdv2w"; depends=[]; }; desirability = derive { name="desirability"; version="1.9"; sha256="1p3w4xk4is22gqgy2gyxj80vib8s40lgllqc2fnz66kb2cln10n6"; depends=[]; }; desire = derive { name="desire"; version="1.0.7"; sha256="0jmj644nj6ck0gsk7c30af9wbg3asf0pqv1fny98irndqv508kf6"; depends=[loglognorm]; }; detect = derive { name="detect"; version="0.3-2"; sha256="1mjc8h3xb2zbj4dxala8yqbdl94knf9q0qvkc37ag1b2w4y2d2b0"; depends=[Formula]; }; +detector = derive { name="detector"; version="0.1.0"; sha256="010i063b94hzx7qac8gpl67gmk7hzgqm9i1c7pbbw4la3wcd9lz7"; depends=[stringr]; }; detrendeR = derive { name="detrendeR"; version="1.0.4"; sha256="1z10gf6mgqybb9ml6z3drq65n7g28h2pqpilc2h84l6y76sy909c"; depends=[dplR]; }; devEMF = derive { name="devEMF"; version="2.0"; sha256="19wraakvf7xsf1i108dz3ipl1hdixgwa6h0bizxfyajw5yqmw8mw"; depends=[]; }; -devtools = derive { name="devtools"; version="1.8.0"; sha256="14q1c6jfnvljn50ccl2irfq8awa03z8fni3n5fdsdv4l9cdwj29p"; depends=[digest evaluate git2r httr jsonlite memoise RCurl roxygen2 rstudioapi rversions whisker]; }; +devtools = derive { name="devtools"; version="1.9.1"; sha256="10ycx3kkiz5x8nmgw31d9wa5hhlx2fhda2nqzxfrczqpz1jik6ci"; depends=[curl digest evaluate git2r httr jsonlite memoise roxygen2 rstudioapi rversions whisker]; }; df2json = derive { name="df2json"; version="0.0.2"; sha256="10m7xn7rm4aql1bzpckjcx5kvdw44m1pxgzqkgkd40lzqb1cwk18"; depends=[rjson]; }; -dfcomb = derive { name="dfcomb"; version="2.1-3"; sha256="0mjvk0yc229x80z97dmnmbph9lpgfxpqagwdf57369mkwzms5kx2"; depends=[BH Rcpp RcppArmadillo RcppProgress]; }; +dfcomb = derive { name="dfcomb"; version="2.1-4"; sha256="1mwraj7j61sbw1sn91wy6yr8j885y5rglikixr0lrvl4zmm1c2y4"; depends=[BH Rcpp RcppArmadillo RcppProgress]; }; dfcrm = derive { name="dfcrm"; version="0.2-2"; sha256="1kwgxfqnz2bcicyb27lp6bnvrj30lqjpn5fg7kaqshgkj53g0s4f"; depends=[]; }; dfexplore = derive { name="dfexplore"; version="0.2.1"; sha256="04nbhn59l1kas26nwj4qflkjvvr33sj1mm7zg7fhvya85gvlhrbf"; depends=[ggplot2]; }; dfmta = derive { name="dfmta"; version="1.3-2"; sha256="1x3hz6by82mjcs8y6h7n380wr884dlx2pjpfsbz84zrk78hhnh5g"; depends=[BH Rcpp RcppArmadillo RcppProgress]; }; @@ -3244,7 +3371,7 @@ dglars = derive { name="dglars"; version="1.0.5"; sha256="02g8x4p98jv3cfwfxvh68a dglm = derive { name="dglm"; version="1.8.1"; sha256="12q49nf30ji4c7vysf2s48bif7crwlmqn8cx0wy23xlhj5x2p4b3"; depends=[statmod]; }; dgmb = derive { name="dgmb"; version="1.1"; sha256="134ckgq7rsdypg3c586kkhr9rx5ya34smp38i9lzvbdanzrpf33w"; depends=[abind MASS]; }; dgof = derive { name="dgof"; version="1.2"; sha256="02qnb3i131hx05k8l5n3xbl5sqmmc2fh19bsgcacgj8ixs4wyjvi"; depends=[]; }; -dhglm = derive { name="dhglm"; version="1.2"; sha256="14wa0xkwb1qvkynk95aw6y4rx3jjdki19wdydg3wv5nfagcc4vdz"; depends=[boot Matrix numDeriv]; }; +dhglm = derive { name="dhglm"; version="1.5"; sha256="0n3878bx8vwf7na6plvdg9m1rd9qg7450g6mpx955d3s2bg320x0"; depends=[boot Matrix numDeriv]; }; diagonals = derive { name="diagonals"; version="0.3.0"; sha256="066v1n1l7qkc8m5m9057n3gphiz5054b5h30ik3iwhfkk536364q"; depends=[]; }; diagram = derive { name="diagram"; version="1.6.3"; sha256="1iga574r31hz7g50nmicbah4rj4l46w6lgw3sz1b69iv6hpp7sq1"; depends=[shape]; }; diaplt = derive { name="diaplt"; version="1.2.1"; sha256="0pya6rqzsvc5nd3smhydvabarglc4nn04q605vbllmbhq9rv00pa"; depends=[]; }; @@ -3254,7 +3381,7 @@ dicionariosIBGE = derive { name="dicionariosIBGE"; version="1.6"; sha256="1rss1y dielectric = derive { name="dielectric"; version="0.2.3"; sha256="1p1c0w7a67zxp1cb99yinylk5r1v89mmpfybcy94ydydhydbhivk"; depends=[]; }; difR = derive { name="difR"; version="4.6"; sha256="1803j0ql1g8gdy9i0wy4sz9sbl52dqjqcwbnknyrb34r51jmij5k"; depends=[lme4 ltm]; }; diffEq = derive { name="diffEq"; version="1.0-1"; sha256="1xmb19hs0x913g45szmm26xx5xp85v182wqf0lnl4raxaf47yhkm"; depends=[bvpSolve deSolve deTestSet ReacTran rootSolve shape]; }; -diffIRT = derive { name="diffIRT"; version="1.4"; sha256="13axwzsrlr1akj4viwsyaplh11krixg3l07qi58c81jrcrmqpgv1"; depends=[statmod]; }; +diffIRT = derive { name="diffIRT"; version="1.5"; sha256="0kip6wz9l9q80qsqwf32pwz7d9vqin6dgfwf0nxlrlzf8xjsxgim"; depends=[statmod]; }; diffdepprop = derive { name="diffdepprop"; version="0.1-9"; sha256="0mgrm1isr26v2mcm6fkzc7443ji00vpnqmw4zngx81n7442b3cl2"; depends=[gee PropCIs rootSolve]; }; diffeR = derive { name="diffeR"; version="0.0-3"; sha256="0r1f39jh0jmlfvvzfvwr84g7xh9d6nkgqaq3kxdf66cggsxwnag4"; depends=[ggplot2 raster rgdal]; }; diffractometry = derive { name="diffractometry"; version="0.1-8"; sha256="1m6cyf1kxm9xf1z4mn4iz0ggiy9wcyi8ysbgcsk7l78y7nqh1h99"; depends=[]; }; @@ -3269,9 +3396,9 @@ directlabels = derive { name="directlabels"; version="2013.6.15"; sha256="083cwa dirmult = derive { name="dirmult"; version="0.1.3-4"; sha256="1r9bhw1z0c1cgfv7jc0pvdx3fpnwplkxwz8j8jjvw14zyx803rnz"; depends=[]; }; discSurv = derive { name="discSurv"; version="1.1.0"; sha256="0jj055w0m749fdd90cqlyklxnjxfjhly179lmg9xfl69w4xrjc2l"; depends=[caret functional Matrix matrixcalc mgcv mvtnorm numDeriv]; }; disclap = derive { name="disclap"; version="1.5"; sha256="0piv9gxhxcd4pbh5qjn9c3199f32y3qiw5vy8cr77ki70dnmr66n"; depends=[]; }; -disclapmix = derive { name="disclapmix"; version="1.6.1"; sha256="1sjmw9yb7py8nk4w73qdjwiwmrjs387x6lhh711sgf87p5834fxp"; depends=[cluster disclap Rcpp]; }; +disclapmix = derive { name="disclapmix"; version="1.6.2"; sha256="01pn8hy3xbf1b1fbbsd4n2hv7gs97zalgq858xsrr4a0nqrvxmn5"; depends=[cluster disclap Rcpp]; }; discreteMTP = derive { name="discreteMTP"; version="0.1-2"; sha256="13qsf1kc3rph0kkdkz31qj072www5dwjyk73lfpy141rzhcn1v1x"; depends=[]; }; -discreteRV = derive { name="discreteRV"; version="1.2.1"; sha256="06gvfn5v54gbal7kpnfcxwaacbq8354yvc47kjipn29bqpw9b6mb"; depends=[MASS plyr]; }; +discreteRV = derive { name="discreteRV"; version="1.2.2"; sha256="1lhf67cccr96zl3j1sysh2bv0pbgvkbgjdzm35fvrdm7k74ypjsi"; depends=[MASS plyr]; }; discretization = derive { name="discretization"; version="1.0-1"; sha256="00vq2qsssnvgpx7ihbi9wcafpb29rgv01r06fwqf9nmv5hpwqbmp"; depends=[]; }; discrimARTs = derive { name="discrimARTs"; version="0.2"; sha256="088v4awic4bhzqcr7nvk2nldf8cm1jqshg2pzjd2l2p1cgwmlxib"; depends=[RUnit]; }; diseasemapping = derive { name="diseasemapping"; version="1.2.3"; sha256="151z5w8k0s22hhp5795jf7lx1mhfxhqqg5skwxjrlkbn9yszjxpl"; depends=[sp]; }; @@ -3295,9 +3422,9 @@ distrRmetrics = derive { name="distrRmetrics"; version="2.5"; sha256="0c7fhckw7h distrSim = derive { name="distrSim"; version="2.5.2"; sha256="0ipg4l2vyifaj1r9a4cc8kg32s65jpz5wxrlnrix95xk5wasdpbh"; depends=[distr setRNG]; }; distrTEst = derive { name="distrTEst"; version="2.5"; sha256="1swl4v70gkkpidddsgqf0dqz9j0xz5j1wk44bhpi4ficim7hap3l"; depends=[distrSim setRNG startupmsg]; }; distrTeach = derive { name="distrTeach"; version="2.5"; sha256="0a7qfqpirzcd94dvcvmprhhj2j1yl3lpizsi8mdqr19zcp6dw21k"; depends=[distr distrEx]; }; -distrom = derive { name="distrom"; version="0.3-2"; sha256="08brd85kg7sfvxy9xxjbpzh5zirfxyhjvl9zsxnqy0zlhq7p05q8"; depends=[gamlr Matrix]; }; +distrom = derive { name="distrom"; version="0.3-3"; sha256="1kpbrsa7ml72zvmdcpbbz2rsv4lpqd5i2w3v488ji6nbi44v1gp6"; depends=[gamlr Matrix]; }; divagis = derive { name="divagis"; version="1.0.0"; sha256="1kcz7i3h9xxpqhlq0rl08pgcwd16ygjjmm0jjv9knn2ggc3j1jzz"; depends=[rgdal sp]; }; -diveMove = derive { name="diveMove"; version="1.3.9"; sha256="0782b8fvh676g6fy05g1da52q398rxmgz46vk6yxwrmnvg78wcq5"; depends=[caTools geosphere KernSmooth quantreg]; }; +diveMove = derive { name="diveMove"; version="1.4.0"; sha256="1m16i9hchr7zcigz93n6q94lrc6xnm0skyscf92cp58cagz1c72w"; depends=[caTools geosphere KernSmooth quantreg]; }; diveRsity = derive { name="diveRsity"; version="1.9.73"; sha256="07lln4fkphwk8kgvw4hsi7rghpwza8967z2gkb2265l28irv7ffm"; depends=[ggplot2 qgraph Rcpp shiny]; }; diversitree = derive { name="diversitree"; version="0.9-7"; sha256="0hr3hzrrbmfqbzcwn18lnqmychs9f21j1x214zry0jmw9pnai0s0"; depends=[ape deSolve Rcpp subplex]; }; divo = derive { name="divo"; version="0.1.1"; sha256="10kymbvp46rzdd6a6p2fri9424sdxj2bhhv0fld7ikk71xgpfdrp"; depends=[cluster RcppCNPy]; }; @@ -3308,7 +3435,8 @@ dlmap = derive { name="dlmap"; version="1.13"; sha256="0s6wlkggkm3qndwyvw72xv1n0 dlmodeler = derive { name="dlmodeler"; version="1.4-2"; sha256="06gqvk2wrzz4kpsh4vyrbqwmxirsvg78qj7clvcxdac0sfqn4gl7"; depends=[KFAS]; }; dlnm = derive { name="dlnm"; version="2.1.3"; sha256="044khdhk4dgd09cwmidsfa2rgd43h7wnd48bmmrnsvj3314bic0f"; depends=[nlme]; }; dma = derive { name="dma"; version="1.2-2"; sha256="18v40rr4qx98ap38vr77xxvl7y3a6cqfky3z4s5zc87q6y1z5g2s"; depends=[MASS mnormt]; }; -dmm = derive { name="dmm"; version="1.6-2"; sha256="00wqa33n1zd6gbl658vrz07f6kkhbmdg8f3y9x9n3zq2ygnxrid1"; depends=[MASS Matrix nadiv pls robustbase]; }; +dml = derive { name="dml"; version="1.1.0"; sha256="0z1dalgxh5nhrac49vh60d5awzjylc8b8mn5fk379c324milm59l"; depends=[lfda MASS]; }; +dmm = derive { name="dmm"; version="1.6-3"; sha256="15c5hvjjnr9c4sg34jx31abldjladls73rsszkqsdpd95li334xg"; depends=[MASS Matrix nadiv pls robustbase]; }; dmt = derive { name="dmt"; version="0.8.20"; sha256="0rwc8l9k2y46hslsb3y8a1g2yjxalcvp1l3v7jix0c5kz2q7917w"; depends=[MASS Matrix mvtnorm]; }; dna = derive { name="dna"; version="1.1-1"; sha256="0gw70h1j67h401hdvd38d6jz71x1a6xlz6ziba6961zy6m3k5xbm"; depends=[]; }; dnet = derive { name="dnet"; version="1.0.7"; sha256="0aa64y7mm1xan34h1pimajm7hvlm7z3r9rikysc2dw5dskkhli40"; depends=[Biobase graph igraph Matrix Rgraphviz supraHex]; }; @@ -3320,23 +3448,26 @@ doRNG = derive { name="doRNG"; version="1.6"; sha256="0yvg4052gfdh54drn6xnpiqyd7 doRedis = derive { name="doRedis"; version="1.1.1"; sha256="10ldfzq6m83b9w24az9bf5wbfm6y9gi233s8qgsk4dnr84n3nizx"; depends=[foreach iterators rredis]; }; doSNOW = derive { name="doSNOW"; version="1.0.12"; sha256="0j71n0l9lbvwllw9iigvjgv0x8z2j57grl3yazkgcyzy0mcgf741"; depends=[foreach iterators snow]; }; docopt = derive { name="docopt"; version="0.4.3.3"; sha256="1vpq5q3kfgwijrgblvfipxqkw0m75rahnlmddpiyfgziyszbmidm"; depends=[stringr]; }; +docopulae = derive { name="docopulae"; version="0.3.1"; sha256="0hdfzn6qm0spwklipqyl4apynfdyaxw65s8dns89y5b5widm1pdx"; depends=[]; }; documair = derive { name="documair"; version="0.6-0"; sha256="1pphcbx90n9xn8a7gvfrwzfapwqgpbl3gg2grm7chfxgcp7i99i2"; depends=[]; }; +docxtractr = derive { name="docxtractr"; version="0.1.0.9000"; sha256="1g59xbg86qh871q8cphjp7jzd1g1dglx4h2n7f48m9vj1ha87h02"; depends=[dplyr xml2]; }; domino = derive { name="domino"; version="0.2-7"; sha256="1wp2rikyggjvqpg29qjn3zcydyplmzhmbgq3xxrlq92swdyzmyy5"; depends=[]; }; -dosresmeta = derive { name="dosresmeta"; version="1.3.0"; sha256="0yfm8dkds8abdl6jrib5vvgkyrd5cl5a99qs27safxx0fcpdiz4k"; depends=[aod Matrix mvmeta]; }; +dosresmeta = derive { name="dosresmeta"; version="1.3.2"; sha256="1v0hf8x0qjzhxwa60ri2vhjv05z9iaf90dvhpmjjjrgskb7qpcd9"; depends=[aod Matrix mvmeta]; }; dostats = derive { name="dostats"; version="1.3.2"; sha256="15j9sik9j5pic5wrp0w26xkrhi337xkbikw0k7sa4yfimw6f84w5"; depends=[]; }; dotenv = derive { name="dotenv"; version="1.0"; sha256="1lxwvrhqcwj9q24x30xzrw8qqhxgyr88ja3fajm5hf3pwbw85yls"; depends=[falsy magrittr]; }; -dotwhisker = derive { name="dotwhisker"; version="0.1.0.1"; sha256="00apyw3w7ribazpnbg91q82awd4rhmlrylsimvf9dra4pgaq4n3d"; depends=[dplyr ggplot2 gridExtra gtable]; }; +dotwhisker = derive { name="dotwhisker"; version="0.2.0.0"; sha256="17hxvjb6l14rbqgg4yjpxxwb7y2vh23ji294kfmmh9816c725b8c"; depends=[broom dplyr ggplot2 gridExtra gtable plyr stringr]; }; downloader = derive { name="downloader"; version="0.4"; sha256="1axggnsc27zzgr7snf41j3zd1vp3nfpmq4zj4d01axc709dyg40q"; depends=[digest]; }; dpa = derive { name="dpa"; version="1.0-3"; sha256="0dmwi68riddi1q4b10c12wx6n7pqfmv30ix5x72zpdbgm72v343h"; depends=[igraph sem]; }; dpcR = derive { name="dpcR"; version="0.1.4.0"; sha256="0fv17vzlsjb5cy1f0ll5gi5y8npavp2y7frzc595na5g15xphmxc"; depends=[binom chipPCR dgof e1071 multcomp pracma qpcR rateratio_test shiny signal spatstat]; }; dpglasso = derive { name="dpglasso"; version="1.0"; sha256="1mx28xbm2z2bxyp33wv2v6vgn1yfsdsa0bzjjdxasgd6lvr51myf"; depends=[]; }; dplR = derive { name="dplR"; version="1.6.3"; sha256="0w94rdkpw5pbl9ywfvgpmzkwc88m5d5dwii5kw312nfhkb549q4x"; depends=[digest gmp lattice Matrix matrixStats png R_utils stringi stringr XML]; }; dplRCon = derive { name="dplRCon"; version="1.0"; sha256="10xnawgnhxp5y949fxs1vvadc1qz2ldy0s9w9w7kf6iqh59d35sw"; depends=[]; }; -dplyr = derive { name="dplyr"; version="0.4.2"; sha256="1b0nb7agzb515jrm33sv8yhszsf06d9fga6pgdxi2kwl71vjfrd6"; depends=[assertthat BH DBI lazyeval magrittr R6 Rcpp]; }; +dplyr = derive { name="dplyr"; version="0.4.3"; sha256="1p8rbn4p4yrx2840dapwiahf9iqa8gnvd35nyc200wfhmrxlqdlc"; depends=[assertthat BH DBI lazyeval magrittr R6 Rcpp]; }; dpmixsim = derive { name="dpmixsim"; version="0.0-8"; sha256="0paa2hmpd6bqf0m7p9j7l2h3j18lm64ya6ya8zvp55wm8pf7xgqg"; depends=[cluster oro_nifti]; }; dpmr = derive { name="dpmr"; version="0.1.7-1"; sha256="0nh45hg9za9w4w4syrrg54s1fpn6iikv431qkdjyinv8y1a3klga"; depends=[digest httr jsonlite magrittr rio]; }; dr = derive { name="dr"; version="3.0.10"; sha256="0dmz4h7biwrn480i66f6jm3c6p4pjvfv24pw1aixvab2vcdkqlnf"; depends=[MASS]; }; -drat = derive { name="drat"; version="0.0.4"; sha256="0pq74a0f1pkgfzgrh0r2xa2xkgxbanp8a5v13bmma09ghy5vnrhm"; depends=[]; }; +drLumi = derive { name="drLumi"; version="0.1.2"; sha256="09ps8rcqrm6a1y8yif2x82l0k4jywq60pkndh9nzfpbsw4ak2lby"; depends=[chron gdata ggplot2 Hmisc irr minpack_lm msm plyr reshape rootSolve stringr]; }; +drat = derive { name="drat"; version="0.1.0"; sha256="0pcmgzgvkdlfh8nriqy2nvs3wqv3p072y9152g1k5xl71drbrdg6"; depends=[]; }; drawExpression = derive { name="drawExpression"; version="1.0"; sha256="0c2daicqrjlqf7s788cknzvw9c6rm500lgmwfr7z03bq7bd2ah90"; depends=[]; }; drc = derive { name="drc"; version="2.5-12"; sha256="1gw78n0w262wl6mdm5wvyp3f0hvrb2kj714acdxz84h2znxr9879"; depends=[car gtools MASS multcomp plotrix scales]; }; drfit = derive { name="drfit"; version="0.6.3"; sha256="0vx5niw6mfg85937sbjmc0z0gdgf9aj43rmkn1gljky7pq4j3hfn"; depends=[drc MASS RODBC]; }; @@ -3344,7 +3475,7 @@ drgee = derive { name="drgee"; version="1.1.3"; sha256="0gib0f5l55md5zymi7j01g3d drm = derive { name="drm"; version="0.5-8"; sha256="1p6ixd7hnv41gfmvan3rv9xzz1279hmrnvfrl6pxwzs9zcnbb53a"; depends=[]; }; drmdel = derive { name="drmdel"; version="1.3.1"; sha256="1bpm9jj9dxk2daxp1yb7pn9jd750p27qa84vdfxpacm5r0mggnys"; depends=[]; }; dropR = derive { name="dropR"; version="0.1"; sha256="0sw5lqlfdn64dbykxdhk1pz18f83if871vkapa2nxgcfiy79b0vs"; depends=[plyr shiny]; }; -drsmooth = derive { name="drsmooth"; version="1.0"; sha256="1cxhj28dkll704kif040vqnp9grb61v891rswvyx7aa9216156px"; depends=[car clinfun DTK mgcv multcomp mvtnorm pgirmess segmented]; }; +drsmooth = derive { name="drsmooth"; version="1.9.0"; sha256="1wgi961bvbsnq4bygxbpy4sy5fy34lrrkaaj0r2rxcahwa1sc38n"; depends=[boot car DTK lubridate mgcv multcomp pgirmess segmented]; }; ds = derive { name="ds"; version="3.0"; sha256="10xp575l0wh85wg32k3as02kgqm9ax9nx9i5kd5bkimfwg4qv745"; depends=[]; }; dsample = derive { name="dsample"; version="0.91.1.5"; sha256="02ksm4d9ybz4w7j3c9rjqh262k6rqs1bdhj3p7w5rcaskpc6qz9s"; depends=[]; }; dse = derive { name="dse"; version="2014.11-1"; sha256="0fl1av8zd0csbsk6fplcxgqsb50qr1baasw2jrqv6h83j2xwph2l"; depends=[setRNG tfplot tframe]; }; @@ -3353,12 +3484,12 @@ dsm = derive { name="dsm"; version="2.2.9"; sha256="147c94bk73ss7bcliz4a65zx0lhf dst = derive { name="dst"; version="0.3"; sha256="1gdf4sjk2svywx2m6z22d383xppsm6dm108w93pcwfs8fpcdwxb9"; depends=[]; }; dti = derive { name="dti"; version="1.2-0.1"; sha256="09ad7mwa53dk1jlddkql3wm1s2diyqij7prd5klh59j21kvkf0hy"; depends=[adimpro awsMethods gsl oro_dicom oro_nifti quadprog rgl]; }; dtt = derive { name="dtt"; version="0.1-2"; sha256="0n8gj5iylfagdbaqirpykb01a9difsy4zl6qq55f0ghvazxqdvmn"; depends=[]; }; -dtw = derive { name="dtw"; version="1.17-1"; sha256="0kbf38a14k112vdi7yaql18w0sj694smlm6pmdw5q4sqpk7azhqg"; depends=[proxy]; }; -dtwclust = derive { name="dtwclust"; version="0.1.0"; sha256="0q0d9qnppj6wdc5dlic7x53dpn7l99lrmkbhwkhdj4w1mcbsg9v0"; depends=[caTools dtw flexclust ggplot2 modeltools proxy reshape2]; }; +dtw = derive { name="dtw"; version="1.18-1"; sha256="1b91vahba09cqlb8b1ry4dlv4rbldb4s2p6w52gmyw31vxdv5nnr"; depends=[proxy]; }; +dtwclust = derive { name="dtwclust"; version="1.1.0"; sha256="0grrdg9pjxjl31kmnl5skfa6mawlbg8444v83djqycjss27c06kg"; depends=[caTools dtw flexclust ggplot2 modeltools proxy reshape2]; }; dualScale = derive { name="dualScale"; version="0.9.1"; sha256="11hqxprai0s5id6wk4n2q174r1sqx9fzw3fscvqd2cgw8cjn1iwl"; depends=[ff lattice Matrix matrixcalc vcd]; }; dummies = derive { name="dummies"; version="1.5.6"; sha256="01f84crqx17xd6xy55qxlvsj3knm8lhw7jl26p2rh2w3y0nvqlbm"; depends=[]; }; dummy = derive { name="dummy"; version="0.1.3"; sha256="081a5h33gw6ym4isy91h6mcf247c2vsdygv9ll07a3mgjcjnk79p"; depends=[]; }; -dunn_test = derive { name="dunn.test"; version="1.2.4"; sha256="01z9rxhp9mli9b21in9gvrjiyxlkx5imspfangg2qvkyrb8jl9i5"; depends=[]; }; +dunn_test = derive { name="dunn.test"; version="1.3.0"; sha256="1afcwph3snhz76693qgnkvi0k6bdavlj5671ry8n10pwhx26ka8d"; depends=[]; }; dupiR = derive { name="dupiR"; version="1.2"; sha256="0p649yw7iz6hnp7rqa2gk3dqkjbqx1f6fzpf1xh9088nbf3bhhz3"; depends=[plotrix]; }; dvfBm = derive { name="dvfBm"; version="1.0"; sha256="0gx11dxkbnh759ysd1lxdarlddgr3l5gwd5b0klwvwsgck6jv529"; depends=[wmtsa]; }; dvn = derive { name="dvn"; version="0.3.3"; sha256="14ncna67qgknh20xdvxqddjhagj61niwpvz4ava9k0z68rgzmk5h"; depends=[RCurl XML]; }; @@ -3366,7 +3497,7 @@ dygraphs = derive { name="dygraphs"; version="0.4.5"; sha256="08bc41d0f8adfnhv66 dyn = derive { name="dyn"; version="0.2-9"; sha256="16zd32567aj0gqv9chbcdgi6sj78pnnfy5k8si15v5pnfvkkwslp"; depends=[zoo]; }; dynBiplotGUI = derive { name="dynBiplotGUI"; version="1.1.3"; sha256="1wgxxn0nlmza7npvjbkfq6nmp30n719yqrav6jzxcp00dk3ymg6g"; depends=[tcltk2 tkrplot]; }; dynCorr = derive { name="dynCorr"; version="0.1-2"; sha256="0qzhhfhkwpq6mwg7y6sxpqvcj8klvivnfv69g7x3ycha1kw2xk3w"; depends=[lpridge]; }; -dynRB = derive { name="dynRB"; version="0.2"; sha256="00xpigx1bxjm03fz7x19wws7vqyaa6mgfp3zdb8f0mvw3hjkrvr0"; depends=[]; }; +dynRB = derive { name="dynRB"; version="0.4"; sha256="0h7rh7wcfrflav1a5lh6zpijqnl1j0s66j611hpagdw3cda9ccmr"; depends=[caTools corrplot]; }; dynaTree = derive { name="dynaTree"; version="1.2-7"; sha256="06pw78j6wwx7yc175bns1m2p5kg5400vg8x14v4hbrz3ydagx4dn"; depends=[]; }; dynamicGraph = derive { name="dynamicGraph"; version="0.2.2.6"; sha256="1xnsp8mr3is4yyn0pyrvqhl893gdx2y1zv8d2d55aah2xbfk0fjj"; depends=[ggm]; }; dynamicTreeCut = derive { name="dynamicTreeCut"; version="1.62"; sha256="1y11gg6k32wpsyb10kdv176ivczx2jlizs1xsrjrs6iwbncwzrkp"; depends=[]; }; @@ -3382,7 +3513,7 @@ eRm = derive { name="eRm"; version="0.15-5"; sha256="0g4avcr709brvzcbmqmq35c7zvg eVenn = derive { name="eVenn"; version="2.2"; sha256="0k6m61z902spxxrc38504l73h022w5v74g39h4azd1ibr35yrl7j"; depends=[]; }; eaf = derive { name="eaf"; version="1.07"; sha256="0310lrqfm1l0lifak7wa6xn21bzzn27kbrrx0bidj4hibwv7sa4l"; depends=[modeltools]; }; earlywarnings = derive { name="earlywarnings"; version="1.0.59"; sha256="06j5g5lrzl4p5pb1pp79h00iqpbwralzhpzxmaiymv7j8kz87nr0"; depends=[fields ggplot2 Kendall KernSmooth lmtest moments nortest quadprog som spam tgp tseries]; }; -earth = derive { name="earth"; version="4.4.2"; sha256="0sdv779j6vd19g5kjzv4aad08pgc9zzdcjah9a2a4dzmkl7grapi"; depends=[plotmo TeachingDemos]; }; +earth = derive { name="earth"; version="4.4.3"; sha256="1cn5wkhjscxnwjakjlf2bjlcv6ryylw8kal26p90my3xmg7zdq33"; depends=[plotmo TeachingDemos]; }; easyanova = derive { name="easyanova"; version="4.0"; sha256="1d8fkgyqzphipvla7x8ipcf0by07iqx8xran15d2q82yq9iik5g9"; depends=[car nlme]; }; easynls = derive { name="easynls"; version="4.0"; sha256="1j2crqvgsf84bpwzf4qh5xkzn5mhxhfx9c0y3p8dbyn8bg7zc2rf"; depends=[]; }; ebGenotyping = derive { name="ebGenotyping"; version="1.0"; sha256="07dpvxl9xspkzvzkywclg8whgcw7vyakls38pshfypjpyd6iv8ga"; depends=[]; }; @@ -3396,7 +3527,7 @@ eco = derive { name="eco"; version="3.1-7"; sha256="0qrl1mq0nc42j4dzqhayzzb56gmk ecodist = derive { name="ecodist"; version="1.2.9"; sha256="199f3lwwm8r2bnik595m540la1p4z6vbkwfqh9kimy9d0fjp8nps"; depends=[]; }; ecoengine = derive { name="ecoengine"; version="1.9.1"; sha256="0y1f8ylyk9jny48z5grf4r9jcdin6clhy0vg1wkg3alsqn4iiqlg"; depends=[assertthat dplyr httr jsonlite leafletR lubridate plyr whisker]; }; ecolMod = derive { name="ecolMod"; version="1.2.6"; sha256="1n30faldfhpm2jkaw793vr220kgn3bmn8hxhw32rax294krmwn4v"; depends=[deSolve diagram rootSolve shape]; }; -ecoreg = derive { name="ecoreg"; version="0.2"; sha256="08iw7w9z7zqwhvirnhdc2jr2qjp9yma8ddc831d5dvbvi2j7kq84"; depends=[]; }; +ecoreg = derive { name="ecoreg"; version="0.2.1"; sha256="1v3n5nbabw6qmwcq3sx759k6c8q4pxbffl227rv0lnnfbq77zlmc"; depends=[]; }; ecoretriever = derive { name="ecoretriever"; version="0.1"; sha256="1iwds81pyn9c04fmnjfsri7rjanrfki8hngdwpqcx3dkbsg76ii6"; depends=[]; }; ecosim = derive { name="ecosim"; version="1.2"; sha256="1lzjd6kl2864ngyiqyfnnra5ag9bj42pxb793gwp45r7z95k32rf"; depends=[deSolve stoichcalc]; }; ecospat = derive { name="ecospat"; version="1.1"; sha256="070vvx00gm36rwjz2g188jn7bkljs1c7j6ap6ssrl3ihzqvc1zdz"; depends=[ade4 adehabitatHR adehabitatMA ape biomod2 dismo ecodist gam gbm maptools randomForest raster rms sp spatstat]; }; @@ -3404,6 +3535,8 @@ ecoval = derive { name="ecoval"; version="1.0"; sha256="1szvr2ipb7bd0cyslhwwwyx5 ecp = derive { name="ecp"; version="2.0.0"; sha256="0cr3rzvd4bahg5idd857mgp005n075xql5kvjw0smsjbjh4p84wq"; depends=[Rcpp]; }; edcc = derive { name="edcc"; version="1.0-0"; sha256="036fi6mnn9480hkb378xb5jilkfvdydjmkyw4mcc9s1lz195f62w"; depends=[spc]; }; edeR = derive { name="edeR"; version="1.0.0"; sha256="1dg0aqm5c4zyf015hz1hhn3m4lfvybc4gc1s7sp8jcsk46rxz0cc"; depends=[rJava rjson rJython]; }; +edesign = derive { name="edesign"; version="1.0-13"; sha256="0fc3arr8x9x9kshp6jq4m4izzc5hqyn5vl0ys6x0ph92fc6mybp3"; depends=[]; }; +edgar = derive { name="edgar"; version="1.0.2"; sha256="0x0jr9npgbs4r7ffzrd2fj94xy32ccch3x8g8ibn9lm947812wl8"; depends=[ggplot2 R_utils rChoiceDialogs RColorBrewer shiny shinydashboard tm wordcloud XML]; }; edgeRun = derive { name="edgeRun"; version="1.0.9"; sha256="0d5nc8fwlm61dbi00dwszj1zqlij4gfds3w1mpcqnnfilr2g3di1"; depends=[data_table edgeR]; }; editrules = derive { name="editrules"; version="2.9.0"; sha256="14mfa8flkym2rx9n7bq9icc9fsrk3szib3amx5l0008rxll9qnxm"; depends=[igraph lpSolveAPI]; }; edmr = derive { name="edmr"; version="0.6.3.1"; sha256="1avb4gnw8s635yyn3sh20pmppsnz39s7r1pr8ggdc61ca1mkh2mk"; depends=[data_table GenomicRanges IRanges mixtools S4Vectors]; }; @@ -3411,7 +3544,8 @@ edrGraphicalTools = derive { name="edrGraphicalTools"; version="2.1"; sha256="09 eegAnalysis = derive { name="eegAnalysis"; version="0.0"; sha256="1lrwjbhm5fnf5fhyyga2b21j2snnmj3zfvfxfkvgsbdnzr3qxaxb"; depends=[e1071 fields splus2R wmtsa]; }; eegkit = derive { name="eegkit"; version="1.0-2"; sha256="10dksmc5lrl0ypifvmmv96xnndl2zx191sl79qif0gfs3wq3w4s0"; depends=[bigsplines eegkitdata ica rgl]; }; eegkitdata = derive { name="eegkitdata"; version="1.0"; sha256="1krsadhamv1m8im8sa1yfl7injvrc4vv3p88ps1mpn8hibk5g51m"; depends=[]; }; -eeptools = derive { name="eeptools"; version="0.3.1"; sha256="0m6i0hiw565wgziknlf19rh2fq8zvzq2v5a0ppnwcv8vhbhyph3g"; depends=[arm data_table ggplot2 maptools MASS memisc stringr]; }; +eel = derive { name="eel"; version="1.1"; sha256="0cv6dhw57yy140g73z94g9x1s42fpyfliv9cm2z1alm7xwap1l0x"; depends=[emplik rootSolve]; }; +eeptools = derive { name="eeptools"; version="0.9.0"; sha256="0p1pjxnirrdhdj7pf92s1vq6g6724xgn7fz26cp55yrxc663m2cf"; depends=[arm data_table ggplot2 maptools memisc rgeos vcd]; }; effects = derive { name="effects"; version="3.0-4"; sha256="0ypw49gighmg2azc2872y8r9rx9v3x0r2gsidgkwqlaqg95vfcd7"; depends=[colorspace lattice lme4 nnet]; }; efflog = derive { name="efflog"; version="1.0"; sha256="1sfmq7xrr6psa6hwi05m44prjcpixnrl7la03k33n0bksj8r1w6b"; depends=[]; }; effsize = derive { name="effsize"; version="0.5.4"; sha256="1dc90avbnb83nrm70wh0h45g3c6dcg8zh2ynklc2x86cqk7b264b"; depends=[]; }; @@ -3426,6 +3560,7 @@ eigenmodel = derive { name="eigenmodel"; version="1.01"; sha256="0p9n28x5gg46nsz eigenprcomp = derive { name="eigenprcomp"; version="1.0"; sha256="156qyv7sl8nng55n3ay6dnpayyfrqv27ndz40xf4w92is9zmymy0"; depends=[]; }; eive = derive { name="eive"; version="2.1"; sha256="1vazl5dnrvljd07csy9rjs4302w09h94i411gffg9fvxn70km7qg"; depends=[Rcpp]; }; eiwild = derive { name="eiwild"; version="0.6.7"; sha256="1fp4kvlmcjjnzn2a5cmlzaf6y5q6cdbbi2nmvjyqc4y1bmwh3srf"; depends=[coda gtools lattice]; }; +elasso = derive { name="elasso"; version="1.0"; sha256="05h4m2n23qcss794lmrmx6ckcsyfz0srzajjpc87y0n22ql8wrgn"; depends=[glmnet SiZer]; }; elastic = derive { name="elastic"; version="0.5.0"; sha256="1riivxrzd5cxb81kj0xjp7vli63ds6s8ybbg3sbhjmkcvpyxsylz"; depends=[curl httr jsonlite]; }; elasticnet = derive { name="elasticnet"; version="1.1"; sha256="1x8rwqb275lz86vi044m1fy8xanmvs7f7irr1vczps1w45nsmqr2"; depends=[lars]; }; elec = derive { name="elec"; version="0.1.2"; sha256="0f7ahrjb52w8a8l5v00xla6z9afpz2zrckl9v04xalp34snhdwan"; depends=[]; }; @@ -3440,16 +3575,16 @@ embryogrowth = derive { name="embryogrowth"; version="6.0"; sha256="0l08imqagn2w emdbook = derive { name="emdbook"; version="1.3.8"; sha256="10qmppacfww8wg1hhd9fpadrvrivrvfgfn1qgm87xlf3a8jpffjj"; depends=[bbmle coda lattice MASS plyr rgl]; }; emdist = derive { name="emdist"; version="0.3-1"; sha256="1z14pb9z9nkd0f2c8pln4hzkfqa9dk9n3vg8czc8jiv0ndnqi7rq"; depends=[]; }; emg = derive { name="emg"; version="1.0.6"; sha256="1kzmxs224m6scmk8gg5ckx5c7is99hwgwv28yl26hnrbkm59skyh"; depends=[]; }; -emil = derive { name="emil"; version="2.1.1"; sha256="09n9qrlww33x4n3020dc8snc7qadyvjinc73dn7r6rvhf76ygrx3"; depends=[data_table dplyr ggplot2 lazyeval magrittr tidyr]; }; +emil = derive { name="emil"; version="2.2.2"; sha256="1awadlp5bixhzfdf5rvrkxsdg9baqvrs444947zk0yr6kl0aihcc"; depends=[data_table dplyr ggplot2 lazyeval magrittr Rcpp tidyr]; }; emma = derive { name="emma"; version="0.1-0"; sha256="0psd8lrbcqla8mkhp0wlassaaimgwlmqy5yv2wwcq59mc5k1v27f"; depends=[clusterSim earth]; }; emme2 = derive { name="emme2"; version="0.9"; sha256="035s4h95ychqb14wib0dqbg4sjy9q01fsryr0ri25g1hsi5f8lpm"; depends=[reshape]; }; emoa = derive { name="emoa"; version="0.5-0"; sha256="1wcnsnkdmpcn21dyql5dmj728n794bmfr6g9hgh9apzbhn4cri8p"; depends=[]; }; emov = derive { name="emov"; version="0.1"; sha256="1jzssxk7c26ylfb70p9s631bz63fgvrqc105p7536n0kgxy21f7b"; depends=[]; }; empiricalFDR_DESeq2 = derive { name="empiricalFDR.DESeq2"; version="1.0.3"; sha256="0h2mcdw4v3ac6dn0s4z37l4sdzbi12sxrnn0f0gc9z207dyyf6w3"; depends=[DESeq2 GenomicRanges]; }; -emplik = derive { name="emplik"; version="1.0-1"; sha256="1kwgikdnxh52wsmzrzqv7sp8s55w9q40aq9kpfd3zshkflx7w8g1"; depends=[quantreg]; }; +emplik = derive { name="emplik"; version="1.0-2"; sha256="1sx8hsvv36idraji2vic6x025wp41bg4p73zqp2d716wmhgdkwgj"; depends=[quantreg]; }; emplik2 = derive { name="emplik2"; version="1.20"; sha256="0qdsfmnvds01qa4f112knv905k0fzccrqj9fwaqrqcy48cigm8pd"; depends=[]; }; emulator = derive { name="emulator"; version="1.2-15"; sha256="1rp7q7zs8b49jzdkbzm4s1g8554h41hcabf4d78k9jhhys2z28g2"; depends=[mvtnorm]; }; -enaR = derive { name="enaR"; version="2.9"; sha256="0nhaqjp18zmjk3bl442fhpgxvz7psk1r3zff3qdrz794hxi5s6a9"; depends=[gdata MASS network sna stringr]; }; +enaR = derive { name="enaR"; version="2.9.1"; sha256="1ryxzrdq9f88bvkyf6vdg61vfcjw1mj4dzzj8kliaf0h3ygzyaw1"; depends=[gdata MASS network sna stringr]; }; endogMNP = derive { name="endogMNP"; version="0.2-1"; sha256="0maxcp321ngbxrg0i23nlwhj849v771xahh53367x928ss4f8v7i"; depends=[]; }; endorse = derive { name="endorse"; version="1.4.1"; sha256="0xyi2cq4k4xa8kr717i4njl6rgjf5z99056jbhp2rbzfyy4sw61d"; depends=[coda]; }; energy = derive { name="energy"; version="1.6.2"; sha256="008yf4r6546mzk9q515zliqxyjx6w0z19g5wlarg7f4lrzsmqiaw"; depends=[boot]; }; @@ -3460,14 +3595,17 @@ enrichvs = derive { name="enrichvs"; version="0.0.5"; sha256="0x91s03hz1yprddm6m ensembleBMA = derive { name="ensembleBMA"; version="5.1.2"; sha256="0cfasrs1paz60na8by9zk0c5jc48l9djvn6c64ygjl1rapz389d4"; depends=[chron]; }; ensembleMOS = derive { name="ensembleMOS"; version="0.7"; sha256="0g5qzdic5jvgn6wv7zh0jnz8malfgfxn26l7lg30y96vcmi4hk54"; depends=[chron ensembleBMA]; }; ensurer = derive { name="ensurer"; version="1.1"; sha256="1gbbni73ayzcmzhxb88pz6xx418lqjbp37sdkggbrxcyhsxpdkid"; depends=[]; }; -entropart = derive { name="entropart"; version="1.2.1"; sha256="14cn0zkfk6w8qrbzis9nxhs0vmhpxn4ksa95j5zxr7lxn77piznz"; depends=[ade4]; }; +entropart = derive { name="entropart"; version="1.4.1"; sha256="0i56sbsm5gkmlfndyjj9gs2ma29v0air6dy2whn25zgw34w1v91w"; depends=[ade4 ape geiger vegan]; }; entropy = derive { name="entropy"; version="1.2.1"; sha256="10vg4818q5g54pv2nn9x5i7pvky5nsv96syy47pz2mgqp1273cpd"; depends=[]; }; enviPat = derive { name="enviPat"; version="2.0"; sha256="10fzzwlcmrfcppsj06pma8jkp5pfrb2ys70ggb9q4frc5irg5lha"; depends=[]; }; enviPick = derive { name="enviPick"; version="1.3"; sha256="01wkijvhr8wqjzrhgkvxbnnmb9qsnq0lhkgw93s8nrf8yr3z3awj"; depends=[readMzXmlData shiny]; }; epade = derive { name="epade"; version="0.3.8"; sha256="1alvsifc6i71ilm1xxs1d7sqlapb48bqd6z2n4wi6pqcjvwp7bif"; depends=[plotrix]; }; +epandist = derive { name="epandist"; version="1.0.0"; sha256="0d4z0w8knj12id56k0zmqlw04l3fa4p7nhh5jm1z997kgpnpf4nz"; depends=[]; }; +epanetReader = derive { name="epanetReader"; version="0.2.2"; sha256="0sp1z99cn74am5ms287g5437sjciqam3p7lv8qz4rs7va9hbyz9z"; depends=[]; }; epiDisplay = derive { name="epiDisplay"; version="3.2.0.6"; sha256="1agqv4b33cdyan29vv63q7jd9z4f2c9klzd6vqiaj7amahkkhgfl"; depends=[foreign MASS nnet survival]; }; -epiR = derive { name="epiR"; version="0.9-62"; sha256="04r0inaa04pc4nj5dippl2qxa4nysk0sabdgp4bzp5zxw33mf55v"; depends=[survival]; }; +epiR = derive { name="epiR"; version="0.9-69"; sha256="0p0y2afh4agzrd4fkfzd9hbk7lnzq6ldz01pbkszc7nrih4qd1y9"; depends=[BiasedUrn survival]; }; epibasix = derive { name="epibasix"; version="1.3"; sha256="0d0087sa8lqw35pn7gdg2qqzw3dvz57sgavymwl1ybcj5d4lsbyk"; depends=[]; }; +epifit = derive { name="epifit"; version="0.0.2"; sha256="1fh7m9cclgn9gwhlmby7ifwifyfy44w0x9p5nyzga3nkzphn0rh3"; depends=[MASS]; }; epinet = derive { name="epinet"; version="2.0.9"; sha256="071svl1zcjjb3gvk3vg8xf660bvlz0ypkxy88n3d3f3ir2k26s7b"; depends=[]; }; episensr = derive { name="episensr"; version="0.6.0"; sha256="005cxrwszgqar52zdrliwgg0p8j7rh2msvjd4s028z8ns334zwsb"; depends=[trapezoid triangle]; }; episplineDensity = derive { name="episplineDensity"; version="0.0-1"; sha256="0nmh97xajnnh54i04yq8fdici4n5xvcbpdbjdbz79483gnils4vn"; depends=[nloptr pracma]; }; @@ -3479,23 +3617,24 @@ eqtl = derive { name="eqtl"; version="1.1-7"; sha256="0xfr8344irhzyxs9flnqn4avk3 equate = derive { name="equate"; version="2.0-3"; sha256="0y37nxily7zjx00z7h4vmpn8cs7bl3aravhjkjz9l6y0fv0rc5vv"; depends=[]; }; equateIRT = derive { name="equateIRT"; version="1.2"; sha256="07qh5awa12d1bcm504k0rpgyxyzhymg92131cl676kdlfp49aqk1"; depends=[statmod]; }; equivalence = derive { name="equivalence"; version="0.7.0"; sha256="0x9840kyyhdlj13r2rhijc6p0chvzyqp6lkxxf561pnprhkzzqdj"; depends=[boot lattice PairedData]; }; -erboost = derive { name="erboost"; version="1.2"; sha256="0afgh0zkl3h3ab4s7wl0cn24qdyhszssai9i390mi7w0p88wgba9"; depends=[lattice]; }; -erer = derive { name="erer"; version="2.3"; sha256="165hngfzbzn403gwdcjkhvlm7jygl57nbpwdmlya2rd43z09kp77"; depends=[ggplot2 lmtest systemfit tseries urca]; }; +erboost = derive { name="erboost"; version="1.3"; sha256="09hlpn6mqsmxfrrf7j3iy8ibb2lc4aw7rxy21g3pgqdmd9sbprim"; depends=[lattice]; }; +erer = derive { name="erer"; version="2.4"; sha256="0dvmsjphgv4n54j9f6lsl3wxmy410vcgqzl2sgzm513h5jp19ymq"; depends=[ggplot2 lmtest systemfit tseries urca]; }; ergm = derive { name="ergm"; version="3.4.0"; sha256="1qyj4b22d998qky0rv1h9h0r33vdwr7lw7gpkvbgzf5d44yng33b"; depends=[coda lpSolve Matrix network robustbase statnet_common trust]; }; ergm_count = derive { name="ergm.count"; version="3.2.0"; sha256="0qrldigkygr8k8v3njy0pclgv7z64dazknpf0m567i1nz8715yhy"; depends=[ergm network statnet_common]; }; ergm_graphlets = derive { name="ergm.graphlets"; version="1.0.3"; sha256="0xk45ialjckvjs96k19skk7imilcahgyzfwc74h6yand5q3mg6fz"; depends=[ergm network statnet_common]; }; ergm_userterms = derive { name="ergm.userterms"; version="3.1.1"; sha256="0pvklvyxi7sjc5041zl8vcisni0jz1283gyjw5mhas9bl47g1cwc"; depends=[ergm network statnet_common]; }; ergmharris = derive { name="ergmharris"; version="1.0"; sha256="1bfijhsljlykb94wi25lbpv35zkmgqpmgzmxcq98gjvzbn5j9pdq"; depends=[]; }; +erp_easy = derive { name="erp.easy"; version="0.6.3"; sha256="0kmkj19dhbihhz0x0sj7r8cj7n032787qb55blvm8ky2vqb71y3h"; depends=[plyr]; }; erpR = derive { name="erpR"; version="0.2.0"; sha256="1y6abc5fkcyyjh36maj1zbxppqzwd5wkvzvqahyvzsz5fqpjkcdx"; depends=[rpanel]; }; esaBcv = derive { name="esaBcv"; version="1.2.1"; sha256="0hgjcdbiy1a71vsb2vcyp0xmhy6wi4nlh1sqsfb2vxckc95i9i21"; depends=[corpcor svd]; }; -estimability = derive { name="estimability"; version="1.1"; sha256="1inw2ir83bzz40gynwfcjzx7f6v99pqlphq7p3rmql01ikd2b6r9"; depends=[]; }; +estimability = derive { name="estimability"; version="1.1-1"; sha256="049adh8i0ad0m0qln2ylqdxcs5v2q9zfignn2a50r5f93ip2ay6w"; depends=[]; }; estout = derive { name="estout"; version="1.2"; sha256="0whrwlh4kzyip45s4zifj64mgsbnrllpvphs6i5csb7hi3mdb3i5"; depends=[]; }; etable = derive { name="etable"; version="1.2.0"; sha256="17xahaf2fz1qgqjaw8qbnss95il6g47m3w00yqc5nkvv37gs0q7c"; depends=[Hmisc xtable]; }; etasFLP = derive { name="etasFLP"; version="1.3.0"; sha256="1qh8s9ikd2lpchpp4h9z4zvcd9l2gi15dg0i54nxg9acn92yn3hi"; depends=[fields mapdata maps rgl]; }; etm = derive { name="etm"; version="0.6-2"; sha256="0sdsm6h502bkrxc9admshkrkqjczivh3av55sha7542pr6nhl085"; depends=[lattice survival]; }; eulerian = derive { name="eulerian"; version="1.0"; sha256="0yhpnx9vnfly14vn1c2z009m7yipv0j59j3s826vgpczax6b48m0"; depends=[graph]; }; eurostat = derive { name="eurostat"; version="1.0.16"; sha256="017ri3vvlp60r9h5b0y4j2adggkrkjbapkjynpl0vg92islspqkz"; depends=[plyr tidyr]; }; -evaluate = derive { name="evaluate"; version="0.7"; sha256="0sh58pysabz1iinl8gp0f2v03fwzawpagbk18jbsnfr2vvc927bk"; depends=[stringr]; }; +evaluate = derive { name="evaluate"; version="0.8"; sha256="137gc35jlizhqnx19mxim3llrkm403abj8ghb2b7v5ls9rvd40pq"; depends=[stringr]; }; evd = derive { name="evd"; version="2.3-0"; sha256="1h3dkssgw2x7pblvknfr0l8k7q25nikxyl7kl9x95ganjpi2452v"; depends=[]; }; evdbayes = derive { name="evdbayes"; version="1.1-1"; sha256="0lfjfkvswnw3mqcjsamxnl8hpvz08rba05xcg0r47h5vkgpw5lgd"; depends=[]; }; eventInterval = derive { name="eventInterval"; version="1.2"; sha256="15g934n7flkl1g5q8qhxv60iakx8i9ndpx88yiqqr3n38hcnifrs"; depends=[MASS]; }; @@ -3503,8 +3642,8 @@ events = derive { name="events"; version="0.5"; sha256="1zka4ygymifs8snd7cabl11b eventstudies = derive { name="eventstudies"; version="1.1"; sha256="13l2yhmlpiid9r3njnmvja231l00ym7gvwfbv0m9fk2k5j6gm5id"; depends=[boot xts zoo]; }; evir = derive { name="evir"; version="1.7-3"; sha256="1kn139vvzdrx5r9jayjb4b0803b0bbppxk68z00gdb50mxgvi593"; depends=[]; }; evmix = derive { name="evmix"; version="2.6"; sha256="1rc52mqmzl05n5n1lr990czqgpq9h2x8shnv6s7hvr8896kjasjm"; depends=[gsl MASS SparseM]; }; -evobiR = derive { name="evobiR"; version="1.0"; sha256="12j01qzc4yrjpxbj39bl29f5ypxwk33c6qf0mjjbgpwn5g6fgsi4"; depends=[ape geiger seqinr stringr taxize]; }; -evolqg = derive { name="evolqg"; version="0.1-6"; sha256="1n37cvngaw5sqfw71k7kysxp848p6d4cir46959cqj9q3yvgffvc"; depends=[ape ggplot2 magrittr Matrix mvtnorm phytools plyr Rcpp reshape2 tidyr vegan]; }; +evobiR = derive { name="evobiR"; version="1.1"; sha256="0502xj1gv2g943vfqyllz4sr5z4mixf5vqlqi2v96mymnv9iwsr8"; depends=[ape geiger phytools seqinr shiny]; }; +evolqg = derive { name="evolqg"; version="0.1-9"; sha256="1n1dnvzlpvvkzn6dwrm340fhfgpsnfkdfqd79vm79z36f1wg2lh8"; depends=[ape ggplot2 magrittr Matrix mvtnorm phytools plyr Rcpp reshape2 tidyr vegan]; }; evolvability = derive { name="evolvability"; version="1.1.0"; sha256="0lbyidb86yzvcfw86jfwnzbpijn64jr8fasycqq4h3r9c0x2by3j"; depends=[coda]; }; evt0 = derive { name="evt0"; version="1.1-3"; sha256="08sbyvx49kp3jsyki60gbbnci26d6yk0yj2zcl4bhfac8c3mm6ya"; depends=[evd]; }; evtree = derive { name="evtree"; version="1.0-0"; sha256="0i37lkdfzvgby98888ndd5wzxs7y11sxf9mh6pqpqgwif05p4z3i"; depends=[partykit]; }; @@ -3527,15 +3666,17 @@ expp = derive { name="expp"; version="1.1"; sha256="13zbhkkcshqrpln5gsa051d390q9 expsmooth = derive { name="expsmooth"; version="2.3"; sha256="0alqg777g7zzbjbg86f00p2jzzlp4zyswpbif7ndd0zr8xis6zdc"; depends=[forecast]; }; exptest = derive { name="exptest"; version="1.2"; sha256="0wgjg62rjhnr206hkg5h2923q8dq151wyv54pi369hzy3lp8qrvq"; depends=[]; }; exsic = derive { name="exsic"; version="1.1.1"; sha256="1k6nqs9i4iivxnk4nkimp6zvdly274wibkmx9n0wz01gnzxqil0p"; depends=[markdown stringr]; }; -extRemes = derive { name="extRemes"; version="2.0-5"; sha256="1r1q26gb06db0nsd9m5r54sjhsdwbi3179ai4b71l849viragq4z"; depends=[car distillery Lmoments]; }; +extRemes = derive { name="extRemes"; version="2.0-6"; sha256="05c5fwf55gfm3k4fc35yd27bml18z566q5ays7f5cp5gh27s1vvr"; depends=[car distillery Lmoments]; }; extWeibQuant = derive { name="extWeibQuant"; version="1.1"; sha256="08dzw5xfgqx0c7ac632c5mg5jmjjw7wwpcr4c9lvz5rv72ykh2rh"; depends=[]; }; extfunnel = derive { name="extfunnel"; version="1.3"; sha256="162w5b2wjs3yqy8jisamsapav6swa8sskf1b6x5hglnrv3i4qyyy"; depends=[rmeta]; }; extlasso = derive { name="extlasso"; version="0.2"; sha256="05774y0i01lrbyws6zx5ymhcglllv1wc7gzrnyx8i5d1lxdinsyd"; depends=[]; }; extraBinomial = derive { name="extraBinomial"; version="2.1"; sha256="0qmvl35f7n78kghszwyaz4wzbswqy4p98c3b6alzrc2ldsq6pq5z"; depends=[]; }; extraTrees = derive { name="extraTrees"; version="1.0.5"; sha256="1rvvp2p9j8ih8fid1n17606pa23bjg3i2659w1l6w0jkb1p23zcx"; depends=[rJava]; }; +extracat = derive { name="extracat"; version="1.7-3"; sha256="1m5rvb8hv7ynv9v2l54ykn4absr5vymriszrwv684njwisxb6rwi"; depends=[colorspace data_table ggplot2 hexbin plyr reshape2 scales TSP]; }; extrafont = derive { name="extrafont"; version="0.17"; sha256="0b9k2n9sk23bh45hjgnkxpjyvpdrz1hx7kmxvmb4nhlhm1wpsv9g"; depends=[extrafontdb Rttf2pt1]; }; extrafontdb = derive { name="extrafontdb"; version="1.0"; sha256="115n42hfvv5h4nn4cfkfmkmn968py4lpy8zd0d6w5yylwpzbm8gs"; depends=[]; }; extremevalues = derive { name="extremevalues"; version="2.3.1"; sha256="1x1yqm4yif46l9znxba4m8sp3xwj6vrdlqz8jdspqin53jm69gzw"; depends=[gWidgets gWidgetstcltk]; }; +extremogram = derive { name="extremogram"; version="1.0.0"; sha256="196y63q9hnkf3hgizcz8a40wcmwmrm5yfail9sjh3kb40sb3nipi"; depends=[boot MASS]; }; eyetracking = derive { name="eyetracking"; version="1.1"; sha256="0ajas96s25hjp3yrg42hp78qjhl1aih04mjirkskx32qsyq5hfpv"; depends=[]; }; ez = derive { name="ez"; version="4.2-2"; sha256="1dk4ig137ridr4pw4afp3flm22s8l38yrgxabld1zv46slndc8mm"; depends=[car ggplot2 lme4 MASS Matrix mgcv plyr reshape2 scales stringr]; }; ezglm = derive { name="ezglm"; version="1.0"; sha256="0x7ffk3ipzbdr9ddqzv0skmpj5zwazkabibhs74faxnld7pcxhps"; depends=[]; }; @@ -3552,7 +3693,7 @@ fExoticOptions = derive { name="fExoticOptions"; version="2152.78"; sha256="0h58 fExpressCertificates = derive { name="fExpressCertificates"; version="1.2"; sha256="1r4qkhf7alasbwjz910b0x4dlzm72af06kv7v2vwyzvf3byn21c5"; depends=[fCertificates Matrix mvtnorm tmvtnorm]; }; fExtremes = derive { name="fExtremes"; version="3010.81"; sha256="0bzgnn0wf7lqhj7b2dbbhi61s8fi2kmi87gg9hzqqi6p7krnz1n5"; depends=[fBasics fGarch fTrading timeDate timeSeries]; }; fGarch = derive { name="fGarch"; version="3010.82"; sha256="08q452pasvjhsg2ks6c52lqg276hlbdwk0vh25xya2bw2bgbqy99"; depends=[fBasics timeDate timeSeries]; }; -fICA = derive { name="fICA"; version="1.0-2"; sha256="058kkhjksm0nrfaj0csi6dgzr83kq4cln04v9fja12cqvdij9k7k"; depends=[JADE Rcpp RcppArmadillo]; }; +fICA = derive { name="fICA"; version="1.0-3"; sha256="0gbmjg1az3v413xgdzkjinfy5wri8963w38jnk0p0h2zd8gdkpfs"; depends=[JADE Rcpp RcppArmadillo]; }; fImport = derive { name="fImport"; version="3000.82"; sha256="07yqppl8sbfa0x9k4n7hh6hcgyxpcvlk74hhylib4nzqm70bn0sq"; depends=[timeDate timeSeries]; }; fMultivar = derive { name="fMultivar"; version="3011.78"; sha256="115hqbbxsdjs5v2rhalg8vz0m5lyg8ppjjqmbq1x21jdnbg6l0fl"; depends=[cubature fBasics mvtnorm sn timeDate timeSeries]; }; fNonlinear = derive { name="fNonlinear"; version="3010.78"; sha256="0pmz16b606i3mx05zjln4nyl53ks7rlwgm45ldr9qgmw51pflwz9"; depends=[fBasics fGarch timeDate timeSeries]; }; @@ -3565,13 +3706,12 @@ fUnitRoots = derive { name="fUnitRoots"; version="3010.78"; sha256="04nwwazd8jvz factorQR = derive { name="factorQR"; version="0.1-4"; sha256="1vl01fm5qfyhnqbl5y86vkr50b8cv07vzlqs3v6smqaqq6yp4lv4"; depends=[lattice]; }; factorplot = derive { name="factorplot"; version="1.1-1"; sha256="1l8pabf32dr12l7b4dgv5jaxpsjymgdxc51miv72zczrx8adc7da"; depends=[multcomp nnet]; }; factualR = derive { name="factualR"; version="0.5"; sha256="1wz8ibcmilcx62yy29nd2i1pdmjf7fm0g9i5s58gdn8cjlhnw1jl"; depends=[RCurl RJSONIO]; }; -fail = derive { name="fail"; version="1.2"; sha256="0xzvb71iq20ah1x1zlb9kbx0r47jhqlzxx0sxwhkibglpzskg84z"; depends=[BBmisc]; }; +fail = derive { name="fail"; version="1.3"; sha256="0vfm6kmpmgsamda5p0sl771kbnsscan31l2chzssyw93kwmams7d"; depends=[BBmisc checkmate]; }; faisalconjoint = derive { name="faisalconjoint"; version="1.15"; sha256="08sb4za8qyadvigq2z7b0r44qk2lpahpnz9nv16xfjb1zhdkz5w3"; depends=[]; }; falcon = derive { name="falcon"; version="0.1"; sha256="0yas8a8nqdp03s77k5z1xlyz59gapyx68pz0mf6i2snjwpgai59v"; depends=[]; }; falsy = derive { name="falsy"; version="1.0.1"; sha256="1n2b2h7w7p3vib4vgb9vadd3c07dx12vz5gm8bawbdx7llh2pr24"; depends=[]; }; fame = derive { name="fame"; version="2.21"; sha256="15pcgc67qcg6qkgssbfissicic317v60jsybp86ryqvzqg70cqx3"; depends=[tis]; }; -fanc = derive { name="fanc"; version="1.23"; sha256="01bsny14r3i0a0yxbq3c670vh6m17g0lcjiphm6g5427rkn70whq"; depends=[Matrix]; }; -fanovaGraph = derive { name="fanovaGraph"; version="1.4.7"; sha256="19bzl6yrmi5lgyx6nq3f7i0rdaz2ig580h8116axrsxpx8c4d52x"; depends=[DiceKriging igraph sensitivity]; }; +fanc = derive { name="fanc"; version="1.25"; sha256="12isxkrrkph1jk88q3bnc27alixjgxjnfkcyx3rmc6s2hqw9vyiv"; depends=[Matrix]; }; fanplot = derive { name="fanplot"; version="3.4.0"; sha256="1arb10jxksicrdpgj8fq8r0sdnzvvdjjbw357aplqh422x54w4mp"; depends=[]; }; faoutlier = derive { name="faoutlier"; version="0.5"; sha256="1via1gggcj6cpdkyn61fbvlvhl47dwv9hi81x2jlq15lh340ljd4"; depends=[lattice lavaan MASS mirt mvtnorm sem]; }; far = derive { name="far"; version="0.6-5"; sha256="18lj2mgnn9s59ypkr19zzv0sffwpx9mgk975xmpvw4kkl84dykis"; depends=[nlme]; }; @@ -3596,7 +3736,7 @@ fbRanks = derive { name="fbRanks"; version="2.0"; sha256="17kbmdpgqkj2n951c6mdsr fbati = derive { name="fbati"; version="1.0-1"; sha256="1ia67dg9b61kc14mjg7065v0c6n6agdp8cjdviasyzga00wzsyxj"; depends=[fgui pbatR rootSolve]; }; fbroc = derive { name="fbroc"; version="0.2.1"; sha256="06qpdnh86klkbwiv593l57wnbamrmcj5ysabyrbjf9mr8mjzhkkj"; depends=[ggplot2 Rcpp]; }; fcd = derive { name="fcd"; version="0.1"; sha256="091wbf5iskcgyr7jv58wrf590qijb0qcpninmvm3xrwxi34r37xr"; depends=[combinat glmnet MASS]; }; -fclust = derive { name="fclust"; version="1.1.1"; sha256="0gxgyvz6nzqp5sdjhfdjmm3r4lf1b4min3s5rfddwdqiswzxg8m8"; depends=[]; }; +fclust = derive { name="fclust"; version="1.1.2"; sha256="08gi7w74215r44qbysg233s5n8r905b66gsi4i66xf5r7zgaqsm0"; depends=[]; }; fcros = derive { name="fcros"; version="1.4"; sha256="0bawzzyx4512kyvd44dgnswpxgilmzz5xf2bmrnfapc9p4xcfjfw"; depends=[]; }; fda = derive { name="fda"; version="2.4.4"; sha256="05rvrp29ip1wrk2wly06wdry2a2riynkx677nx5lg240lz12d6yw"; depends=[Matrix]; }; fda_usc = derive { name="fda.usc"; version="1.2.1"; sha256="1w0dw06vgviia4yy2v5mrq0jvnfvdp7y8f2x246v3xliqgjmg7as"; depends=[fda MASS mgcv rpart]; }; @@ -3609,7 +3749,7 @@ fdrci = derive { name="fdrci"; version="2.0"; sha256="0smyl9phl02wghimawvff3h267 fdrtool = derive { name="fdrtool"; version="1.2.15"; sha256="1h46frlk7d9f4qx0bg6p55nrm9wwwz2sv6d1nz7061wdfsm69yb5"; depends=[]; }; fds = derive { name="fds"; version="1.7"; sha256="164f2cbywph7kyn712lfq4d86v22j4y3fg5i9zyz956hipqv0qvw"; depends=[rainbow RCurl]; }; fdth = derive { name="fdth"; version="1.2-1"; sha256="0rr9p2rns5ws111iqcicrlpcv47fkbxf161yxkkzfs2l3f1kgw14"; depends=[]; }; -feature = derive { name="feature"; version="1.2.11"; sha256="0dgiv9gwyklnw8w0cpchakadc1vqcngjg39cha6gvl2i3csgxz4p"; depends=[ks misc3d rgl]; }; +feature = derive { name="feature"; version="1.2.12"; sha256="0vsjiq6paa8ga1h1kmy54i2rssvidca8s5r14kjxiy2xc7rp58yw"; depends=[ks misc3d rgl]; }; features = derive { name="features"; version="2011.8-2"; sha256="0yshwqv2mzl5jj323jwxscpz2ygb4ywxh6q0zwphb24bhv7h9lwd"; depends=[lokern]; }; fechner = derive { name="fechner"; version="1.0-2"; sha256="0yhiqr0wlka3wq0nhwy9n02ax3x5b0y803iadbsr3xb54pxbfbqd"; depends=[]; }; federalregister = derive { name="federalregister"; version="0.1.2"; sha256="0f73jhzhqi3a97iyfx5c5i09vxwnyypgw6668z7nch8lvq337s8x"; depends=[RCurl RJSONIO]; }; @@ -3626,7 +3766,7 @@ fgui = derive { name="fgui"; version="1.0-5"; sha256="0gzwxzvf2y9p5rlfk862d7l1dm fheatmap = derive { name="fheatmap"; version="1.0.0"; sha256="0braywpc0zghv1lnwb0c83p8ls2w7b8d2gbvv0p4123rhax5limw"; depends=[gdata ggplot2 gplots RColorBrewer reshape2]; }; fields = derive { name="fields"; version="8.2-1"; sha256="1zsi3ngp50f61nn93lh1v895as4lp63znf7bzn2q3hsl6ncaylbc"; depends=[maps spam]; }; fifer = derive { name="fifer"; version="1.0"; sha256="0vbkks6y6pacgpiixm10fbfa34lmk5r9kwd30lfjf0g7r51fhvv9"; depends=[MASS xtable]; }; -filehash = derive { name="filehash"; version="2.2-2"; sha256="0766wrc42qh7r99bd2zy50vvdnqlz0vkzplskzkm5f4g63qdhjxh"; depends=[]; }; +filehash = derive { name="filehash"; version="2.3"; sha256="1nvf7qbnn6vjz68303xdm190iq0nwmmghyydcb4amx1ckbgric33"; depends=[]; }; filehashSQLite = derive { name="filehashSQLite"; version="0.2-4"; sha256="1higvkmj4wvnwpvayqinzaygiksij20d77dx118q0gffsczadamh"; depends=[DBI filehash RSQLite]; }; filematrix = derive { name="filematrix"; version="1.0"; sha256="17rkf9izhpz3nljv9s56fannd4v7dzsgk6igl7s9mkzmzn4fyp0g"; depends=[]; }; filenamer = derive { name="filenamer"; version="0.2"; sha256="0f2xvqp75b8v59707z26y746vvag3f2mcykafqp5cy8cqrf7x61j"; depends=[]; }; @@ -3643,7 +3783,7 @@ fit4NM = derive { name="fit4NM"; version="3.3.3"; sha256="0k2194521yby6xxi77bpjp fitDRC = derive { name="fitDRC"; version="1.1"; sha256="1f6avw8ia9ks17zdagpmh6yvcmi53h5cvm0wwv9hsb92x5zfhxn9"; depends=[]; }; fitTetra = derive { name="fitTetra"; version="1.0"; sha256="0ia6wk4gicpmn6kclsd28p7v1npwfv2blagiz0cxzwfw3njv103g"; depends=[]; }; fitbitScraper = derive { name="fitbitScraper"; version="0.1.4"; sha256="0shbi5mmr9fw3cc2hn1yzd1ma9kid53ria9pbfkz1pk81n75krj1"; depends=[httr RJSONIO stringr]; }; -fitdistrplus = derive { name="fitdistrplus"; version="1.0-4"; sha256="02ds5vmxc3rk50c33rxdnpqf2hbx186ss6br29n6538q7734nra9"; depends=[survival]; }; +fitdistrplus = derive { name="fitdistrplus"; version="1.0-5"; sha256="0hx26y0j1qh124nzd5rnxiri90kv935ni26nxi5n3cxzn45rlkp8"; depends=[MASS survival]; }; flam = derive { name="flam"; version="3.0"; sha256="0c3j382sa7szqrpd0j8vcg19p6yn18jphd55cbvl0g6z0z76y53p"; depends=[MASS Rcpp]; }; flare = derive { name="flare"; version="1.5.0"; sha256="03bq40lwwq49vvbarf37y7c3smm29mxqfxsc66gkg8l5pak4l38i"; depends=[igraph lattice MASS Matrix]; }; flashClust = derive { name="flashClust"; version="1.01-2"; sha256="0l4lpz451ll7f7lfxmb7ds24ppzhfg1c3ypvydglcc35p2dq99s8"; depends=[]; }; @@ -3656,12 +3796,13 @@ flip = derive { name="flip"; version="2.4.3"; sha256="04zf2gnk5w57gxnlnh26pn1ir1 flora = derive { name="flora"; version="0.2.4"; sha256="1rdwdx7mphfr7sk3yba0vhbsh3xggz2k6ip8dmfiqjjhv2vxji5k"; depends=[shiny]; }; flower = derive { name="flower"; version="1.0"; sha256="1h2fvpjrvpbyrqb8hd51sslr1ibpwa7h9fiqy9anvf2yim5j11yq"; depends=[]; }; flowfield = derive { name="flowfield"; version="1.0"; sha256="1cx3i0w3xq781mmms4x20fshlf1i9bwxw9bxx562crix3fq3m50j"; depends=[]; }; +flowr = derive { name="flowr"; version="0.9.7.10"; sha256="0xm86ji357v2b3nzq95ywfr0pi2l8ws52snlliy1ddfcqq4rrvpl"; depends=[diagram knitr params whisker]; }; flows = derive { name="flows"; version="1.0"; sha256="0bc5xs5dd4np68v7gp7qya37k83mjigjp35i9qsqcxyyvvsyd2jx"; depends=[igraph reshape2 sp]; }; flsa = derive { name="flsa"; version="1.05"; sha256="07z2b1pnpnimgbzkjgjl2b074pl9mml7nac2p8qvdgv7aj070cmh"; depends=[]; }; flux = derive { name="flux"; version="0.3-0"; sha256="0pc9cab2pwrfl0fnz29wp7a398r49hvbi50jp8i2fk2rfvck21a7"; depends=[caTools]; }; fma = derive { name="fma"; version="2.01"; sha256="1j5mvhbrdnkyj4svibpahnz7d4221nkhja5b7fnh68mbmil607fc"; depends=[forecast tseries]; }; fmri = derive { name="fmri"; version="1.5-1"; sha256="0dla5w8x4njw2njryb35nqh4r31wdps9bl5wzab2grzl546wwmwm"; depends=[]; }; -fmsb = derive { name="fmsb"; version="0.5.1"; sha256="0y9h29a2wsngx73vn07f31l8ffrrm0si3qqx60hgxmb57v501kqz"; depends=[]; }; +fmsb = derive { name="fmsb"; version="0.5.2"; sha256="0y3sx4lmn05rwaywlyckl3l8ds21p6zjbbw47zqlh0kgcbiv1q1a"; depends=[]; }; fmt = derive { name="fmt"; version="1.0"; sha256="13gsywnyvf9zy5n644g2xyd60f92w2dp7vil2dncjvjcqsib22a0"; depends=[]; }; foba = derive { name="foba"; version="0.1"; sha256="1af8whgl66v0vwzdf03b6141k3dysdc0svymlgifcga5gqkwzsl0"; depends=[]; }; fontcm = derive { name="fontcm"; version="1.1"; sha256="1z6b4qdgj5vhvjqj90sm1hp0fffi1vxzvq71p0flxybzyb7d15la"; depends=[]; }; @@ -3670,34 +3811,36 @@ forams = derive { name="forams"; version="2.0-5"; sha256="1fh3m9896ksv1h7b027yb9 foreach = derive { name="foreach"; version="1.4.2"; sha256="097zk7cwyjxgw2i8i547y437y0gg2fmyc5g4i8bbkn99004qzzfl"; depends=[codetools iterators]; }; forecTheta = derive { name="forecTheta"; version="1.1"; sha256="0cp582mwi9jf8nnb4p4hvzy86w8q12js3i8rp0gaq2xhm36w6v02"; depends=[forecast]; }; forecast = derive { name="forecast"; version="6.1"; sha256="1hwv3arcpkkhpj5n2dvpw2fyx687b6x6yakxx55cw9rrka70rx1k"; depends=[colorspace fracdiff nnet Rcpp RcppArmadillo timeDate tseries zoo]; }; -foreign = derive { name="foreign"; version="0.8-65"; sha256="03zg48vjqqcq9ri4a53czpyp82hml409g2rmdnmbfw8c1isdqacf"; depends=[]; }; +foreign = derive { name="foreign"; version="0.8-66"; sha256="19278jm85728zb20800w6hq9q8jy8ywdn81mgmlnxkmrr9giwh6p"; depends=[]; }; forensic = derive { name="forensic"; version="0.2"; sha256="0kn8wn6p3fm67w88fbarg467vfnb42pc2cdgibs0vlgzw8l2dmig"; depends=[combinat genetics]; }; forensim = derive { name="forensim"; version="4.3"; sha256="1jhlv9jv832qxxw39zsfgsf4gbkpyvywg11djldlr9vav7dlh3iw"; depends=[tcltk2 tkrplot]; }; -forestFloor = derive { name="forestFloor"; version="1.8.3"; sha256="1qxlkalq49ww290hz3dh4ha10qclaqbki063g2nxinrj4sqapap1"; depends=[ggplot2 gridExtra kknn Rcpp rgl]; }; +forestFloor = derive { name="forestFloor"; version="1.8.6"; sha256="1cy69lvh8v0rkrgq1alx71m3l4wc9ylvdi39jbwsh6rl7ifymw6w"; depends=[ggplot2 gridExtra kknn Rcpp rgl]; }; forestplot = derive { name="forestplot"; version="1.1"; sha256="1h28lwqdizs450bm5hb8zfbmx633n8v5bj2p8mi4cl814sjjylr0"; depends=[]; }; -formatR = derive { name="formatR"; version="1.2"; sha256="0dlj728qdm7wmxcxvw1ip64pl4ajgmi8ax69zafrn3306pg9y136"; depends=[]; }; +formatR = derive { name="formatR"; version="1.2.1"; sha256="0f4cv2zv5wayyqx99ybfyl0p83kgjvnsv8dhcwa4s49kw6jsx1lr"; depends=[]; }; formula_tools = derive { name="formula.tools"; version="1.5.4"; sha256="1qs7ls757qvh5gdkx32zslgpx1a4zk2vf8bbgjdax02jmlyp2qrp"; depends=[operator_tools]; }; fortunes = derive { name="fortunes"; version="1.5-2"; sha256="1wv1x055v388ay4gnd1l8y6dgvamyfvmsd0ik9fziygwsaljb049"; depends=[]; }; forward = derive { name="forward"; version="1.0.3"; sha256="0swn5ysp3f660kl9jpmkck9324j1g3yhj2hl238rfrcr5wihxifc"; depends=[MASS]; }; fossil = derive { name="fossil"; version="0.3.7"; sha256="188hyb3r1dnxkmqf2czh1kdzmk4mjc0v1kn1zml2yvxaxk7adsrz"; depends=[maps shapefiles sp]; }; -fpCompare = derive { name="fpCompare"; version="0.2.0"; sha256="0s8gfnyj6kjwy3ymiy232bb5wzgkd1ainaqzlki7mcafa3dyzq0a"; depends=[]; }; -fpc = derive { name="fpc"; version="2.1-9"; sha256="01x7zcsbz9n10dxx8plb37c7z7pfz1xd5dvfrij3na327mny3pxs"; depends=[class cluster diptest flexmix kernlab MASS mclust mvtnorm prabclus robustbase trimcluster]; }; +fpCompare = derive { name="fpCompare"; version="0.2.1"; sha256="0vva60xixlx6l8623qvj2sdn5w3gjscrv5g8hqmgir4f211lzg38"; depends=[]; }; +fpc = derive { name="fpc"; version="2.1-10"; sha256="15m0p9l9w2v7sl0cnzyg81i2fmx3hrhvr3371544mwn3fpsca5sx"; depends=[class cluster diptest flexmix kernlab MASS mclust mvtnorm prabclus robustbase trimcluster]; }; fpca = derive { name="fpca"; version="0.2-1"; sha256="13b102026xlfb7c2rb3xsqsymm7xpmaxppaafjkb5dx0b1lz0jrc"; depends=[sm]; }; fpow = derive { name="fpow"; version="0.0-2"; sha256="0am3nczimcfrm9hi02vl2xxsh703qjmr2j11y014mll3f2v1l8cy"; depends=[]; }; fpp = derive { name="fpp"; version="0.5"; sha256="1jqnx6bgpvnbbj2fa2b6m6aj8jd5cb9kz877r8kp7a5qj62xv1ww"; depends=[expsmooth fma forecast lmtest tseries]; }; -fptdApprox = derive { name="fptdApprox"; version="2.0"; sha256="152bajs76wrapp0zdbkckff6kdkkm6sqqlqd2w220hsi96l2p9dh"; depends=[]; }; +fptdApprox = derive { name="fptdApprox"; version="2.1"; sha256="00vxwcwca7zfm4fr0x9898snr6j0474ci1bahjmpj2jxiclwnhzs"; depends=[]; }; fracdiff = derive { name="fracdiff"; version="1.4-2"; sha256="03l5dqpqwwi5c8fwc2vissfawcsignai60h2zalknkibvk782dwq"; depends=[]; }; fracprolif = derive { name="fracprolif"; version="1.0.6"; sha256="1cpb71yk1245j6qz4mqvpqc3s3lrmav4blp5wlxasjizn3ilwh66"; depends=[emg numDeriv]; }; fractal = derive { name="fractal"; version="2.0-0"; sha256="17wz3c9f1l1rphzdn7j27j5nb1ll6j84f9ihk0z6fni41050szv7"; depends=[ifultools sapa scatterplot3d splus2R wmtsa]; }; fractaldim = derive { name="fractaldim"; version="0.8-4"; sha256="0fln4qn0d79agnnlzi8b9g9qn90zynq1cg9v5isiyi71345v45nr"; depends=[abind]; }; fractalrock = derive { name="fractalrock"; version="1.1.0"; sha256="15f4w8hq3d8khgq269669ri16qxhar9646w40cw7wzh79r9gpf00"; depends=[futile_any futile_logger quantmod timeDate]; }; frailtyHL = derive { name="frailtyHL"; version="1.1"; sha256="1xjdph0ixanf9w4b6hx6igfhkcp8h93sclrg0pgqgmbvm41lhb1x"; depends=[Matrix numDeriv survival]; }; -frailtypack = derive { name="frailtypack"; version="2.7.5"; sha256="1wjb8l6aj1lsmbgczfag8a96r0z235yj315kr7dpkqkninn2bqwk"; depends=[boot MASS survC1 survival]; }; +frailtySurv = derive { name="frailtySurv"; version="1.2.2"; sha256="00zi4lslcwgf5b8piaig6vh4gb8cnr4xcl425x0bw9hj9b1zsmq1"; depends=[ggplot2 nleqslv numDeriv Rcpp reshape2 survival]; }; +frailtypack = derive { name="frailtypack"; version="2.7.6.1"; sha256="1ha1szswr1xjfr1c7s0k3pnq7544j48sqrzpa3c2wdc37jj8vxac"; depends=[boot MASS survC1 survival]; }; frair = derive { name="frair"; version="0.4"; sha256="1g52ykj1m9znpp0pvry7dnmhg4m73nbkw0bp31zl6pcsdgmxxqjr"; depends=[bbmle boot emdbook]; }; frbs = derive { name="frbs"; version="3.1-0"; sha256="0ngvi7lg6aviwic8f4ya03khyzh3ksglpmsnrdjjznwj874y2wim"; depends=[]; }; freeknotsplines = derive { name="freeknotsplines"; version="1.0"; sha256="19zs42q9njknirdbrbnp8bv4vr32kd8wxmkqj0a0nh06i5fcx67r"; depends=[]; }; freestats = derive { name="freestats"; version="0.0.3"; sha256="0b18n8idap089gkmjknzzb94dvs2drpdqs0mrw7dqnacxgbbqwfj"; depends=[MASS mvtnorm]; }; freqMAP = derive { name="freqMAP"; version="0.2"; sha256="02hpkqqrxifrr1cxn5brp166jwa8lgl1mcgmq7s8csrbbd900ziv"; depends=[]; }; +freqdom = derive { name="freqdom"; version="1.0.4"; sha256="0flx4316q8m9v5zy8bxjp18a25p1vwq6wvfs81r0g609ag54vy5b"; depends=[mvtnorm]; }; freqparcoord = derive { name="freqparcoord"; version="1.0.0"; sha256="0hn5y10yp3j76lqrmj6dsaafamgy4pfxx1p4y92z17s79x29j59q"; depends=[FNN GGally ggplot2 mvtnorm]; }; freqweights = derive { name="freqweights"; version="1.0.2"; sha256="183x94j727z6phayy0zy9q4x5fnww8h51ghpmc6jbwc5r40vp4px"; depends=[biglm data_table dplyr FactoMineR fastcluster plyr]; }; frm = derive { name="frm"; version="1.2.2"; sha256="1dl0vca9r2dams99sc13pfpi0b3yb02x59f4c1jz07zz005c8l23"; depends=[]; }; @@ -3714,23 +3857,26 @@ fso = derive { name="fso"; version="2.0-1"; sha256="02dr12bssiwn8s1aa1941hfpa400 ftnonpar = derive { name="ftnonpar"; version="0.1-88"; sha256="0df9zxwjpfc939ccnm1iipwhpf76b34v0x74nsi1mm1g927dfl0i"; depends=[]; }; fts = derive { name="fts"; version="0.9.9"; sha256="1qgp8xdwr5pp2b7nd8r717a6p8b6izwqrindx2d1d0lhhnqlcwhv"; depends=[BH zoo]; }; ftsa = derive { name="ftsa"; version="4.4"; sha256="1nj1m1asvhp8x9cdi9ywk94yhh0x12crqp2hs1rw5fdfw8w6k0xy"; depends=[colorspace fda forecast MASS pcaPP rainbow sde]; }; +ftsspec = derive { name="ftsspec"; version="1.0.0"; sha256="12f9yws1r26i240ijq0xqprl3pgbw50wv68jsm75ycplbs2jsyhs"; depends=[sna]; }; fueleconomy = derive { name="fueleconomy"; version="0.1"; sha256="1svy5naqfwdvmz98l80j38v06563vknajisnk596yq5rwapl71vj"; depends=[]; }; fugeR = derive { name="fugeR"; version="0.1.2"; sha256="0kd90s91vzv0g3v9ii733h10d8y6i05lk21p5npb3csizqbdx94l"; depends=[Rcpp snowfall]; }; +fulltext = derive { name="fulltext"; version="0.1.0"; sha256="1qir5rj0hjkf4j5lv4bw9a6y59xkr7pbicp4mdhhhdkxany2f56v"; depends=[aRxiv digest httr jsonlite magrittr R_cache rcrossref rentrez rplos rredis tm whisker xml2]; }; fun = derive { name="fun"; version="0.1-0"; sha256="0z4nq2w1wz1clc7cf87pf870hayxq5mpzhllfgwj4mmh2xpphnrf"; depends=[]; }; funFEM = derive { name="funFEM"; version="1.1"; sha256="08798lvryykrxfvp2297anzl4gi81gwvc1qyyzq16nafjf65kwfy"; depends=[elasticnet fda MASS]; }; funHDDC = derive { name="funHDDC"; version="1.0"; sha256="038m64yv27wz7ki2gcn94q011p8mv0ggmli5n27y0f5bnkfh6d6w"; depends=[fda]; }; functional = derive { name="functional"; version="0.6"; sha256="120qq9apg6bf39n9vnp68db5rdhwvnj2vi12a8j8243vq8kqxdqr"; depends=[]; }; -functools = derive { name="functools"; version="0.1.0"; sha256="0vcj376nskpz5a0l2bjrnvarlrc21wwk2w4054da6j63fm6ir8q3"; depends=[]; }; +functools = derive { name="functools"; version="0.2.0"; sha256="0g62jdia3n09vq8mx1m2r4nl3jfcadzpym0wkldzzzjcfs90vl6b"; depends=[]; }; +fungible = derive { name="fungible"; version="1.0"; sha256="1h9iyyavv7nfr9sjzk8q2h41b513f2rr19wagpl7zh2bwzvb70s9"; depends=[e1071 lattice MASS mvtnorm R2Cuba stringr]; }; +funr = derive { name="funr"; version="0.1.1"; sha256="02v3xq2qlzlqh3x5a1ak2c63bkhvmi4ynh3bswxik2v9yhsqxl2w"; depends=[]; }; funreg = derive { name="funreg"; version="1.1"; sha256="1sxr4mylcpbya197d55yi6d7g5pfspaf59xxbwjgmwgjw06rl76r"; depends=[MASS mgcv mvtnorm]; }; -funtimes = derive { name="funtimes"; version="1.1"; sha256="0z478b57l7hg8b42jyzcdjzs3nn62m2y117xmgbw1gbyf3rcnjkw"; depends=[Jmisc]; }; +funtimes = derive { name="funtimes"; version="2.0"; sha256="1dwb0jqgdhc4nrp4kadybbg4dd08crsijm8f6wz1wfzw2xp2sfqr"; depends=[Jmisc]; }; futile_any = derive { name="futile.any"; version="1.3.2"; sha256="09z12dlj7cnkfwnmgsjknsghirv1cry83w4a9k4d0w5a1jnlr5jg"; depends=[lambda_r]; }; futile_logger = derive { name="futile.logger"; version="1.4.1"; sha256="1plld1icxrcay7llplbd4i8inpg97crpnczk58mbk26j8glqbr51"; depends=[futile_options lambda_r]; }; futile_matrix = derive { name="futile.matrix"; version="1.2.2"; sha256="1cb975n93ck5fma0gvvbzainp7hv3nr8fc6b3qi8gnxy0d2i029m"; depends=[futile_logger lambda_r lambda_tools RMTstat]; }; futile_options = derive { name="futile.options"; version="1.0.0"; sha256="1hp82h6xqq5cck67h7lpf22n3j7mg3v1mla5y5ivnzrrb7iyr17f"; depends=[]; }; futile_paradigm = derive { name="futile.paradigm"; version="2.0.4"; sha256="14xsp1mgwhsawwmswqq81bv6jfz2z6ilr6pmnkx8cblyrl2nwh0v"; depends=[futile_options RUnit]; }; -future = derive { name="future"; version="0.7.0"; sha256="0fkaqqwqbg4v4cgsqdsz861g809agz2jmhrs458qqrwx3as3j0gm"; depends=[globals listenv]; }; +future = derive { name="future"; version="0.8.0"; sha256="19nwqx0gim3ilc47bwjhwiqcr0jybhdmrinvaawbbdzmz8q1vkn2"; depends=[globals listenv]; }; fuzzyFDR = derive { name="fuzzyFDR"; version="1.0"; sha256="0zd8i9did0d9gp42xjmwrccm32glabvvy08kl8phhwb1yaq53h7w"; depends=[]; }; -fuzzyMM = derive { name="fuzzyMM"; version="1.0.1"; sha256="1pqfc9b9l2xx5pl45hfildikqjsdgqfhqzi2nbb34026nla5m8vk"; depends=[frbs igraph osmar rgdal rgeos]; }; fuzzyRankTests = derive { name="fuzzyRankTests"; version="0.3-7"; sha256="0mhml0zzya58yn4wrafxk62agfrck6rryn5klprr416pj83pzcgk"; depends=[]; }; fwdmsa = derive { name="fwdmsa"; version="0.2"; sha256="0p0kh8am6gajfaixkvq61f12hfbm6chl9372yzn1yilhiyvqdxgp"; depends=[]; }; fwi_fbp = derive { name="fwi.fbp"; version="1.5"; sha256="08ngg70vi2fca5yblm2gf1lkjjmb6m39d8q6429n7i3jn6ca5nzf"; depends=[]; }; @@ -3739,15 +3885,15 @@ fxregime = derive { name="fxregime"; version="1.0-3"; sha256="15fh8yhcba2gw2xfd0 g_data = derive { name="g.data"; version="2.4"; sha256="14a4m0v38p3j1k1kymkxwydlgm8b73hlx9m80sg1l4aj38fvflzl"; depends=[]; }; gCat = derive { name="gCat"; version="0.1"; sha256="10990ilsjk52kqkcdngj4nq0kcbn4w1syxl1mqjq2n5g1l002yjy"; depends=[]; }; gIPFrm = derive { name="gIPFrm"; version="2.0"; sha256="1syjsnna7b7y27yf7zsxjwq8z5f4wxf2hfadhgjaw898gvfcnrbc"; depends=[]; }; -gMCP = derive { name="gMCP"; version="0.8-8"; sha256="0568pqvcbrpqbppvpvmgxf23rzy1fgl892asq9lhcjslzsz89an5"; depends=[CommonJavaJars JavaGD MASS Matrix multcomp mvtnorm PolynomF rJava xlsxjars]; }; +gMCP = derive { name="gMCP"; version="0.8-10"; sha256="1alfy91mk6zx0k49w5ksa77qg5iqbav20ydfl1w7bh8dzp4xxxqk"; depends=[CommonJavaJars JavaGD MASS Matrix multcomp mvtnorm PolynomF rJava xlsxjars]; }; gMWT = derive { name="gMWT"; version="1.0"; sha256="12ryjpq0k3brw4xy4f6j89zm94j6phbzn9ga0nr9bzfvslhqjhna"; depends=[clinfun Rcpp RcppArmadillo]; }; gPCA = derive { name="gPCA"; version="1.0"; sha256="1ylb1d24dxnzpws9bbanwhyizjr3ljky2bhrph4c5yaq0zwwbrkw"; depends=[]; }; gPdtest = derive { name="gPdtest"; version="0.4"; sha256="00dlhnklfg2yp4hp7yjgr2nfswv22c007xq1mxdbkll62zgd94mq"; depends=[]; }; gProfileR = derive { name="gProfileR"; version="0.5.3"; sha256="0kv01b1ihwggzjd9plznz3il3b97pja11nqki3378zvpgfy5wzdn"; depends=[plyr RCurl]; }; -gRain = derive { name="gRain"; version="1.2-3"; sha256="0cxlni9b4p4g02zhhsbbpkwhx9y3x83vm7qd6lsca02yi96palsi"; depends=[graph gRbase igraph]; }; +gRain = derive { name="gRain"; version="1.2-4"; sha256="088n9y9r9f24fg1jjwc2y4dpavg86hlf4zwqavmirfjbcfvkjv66"; depends=[graph gRbase igraph Rcpp RcppArmadillo RcppEigen]; }; gRapHD = derive { name="gRapHD"; version="0.2.4"; sha256="0fxd04s6zh23chks4k6nwb5w408xjy89b44pa42kv6qnqj86ylvm"; depends=[graph]; }; gRapfa = derive { name="gRapfa"; version="1.0"; sha256="07yzwzna9pdyzndxk6wwyl6v3gkfc7dvy1ixmdl3d38mcl1ahwyq"; depends=[igraph]; }; -gRbase = derive { name="gRbase"; version="1.7-0.1"; sha256="1x52i4c5jbry17y1pfnjq03kz4xxnk3anidva41z5alp7c73zlqv"; depends=[graph igraph Matrix RBGL Rcpp RcppArmadillo RcppEigen]; }; +gRbase = derive { name="gRbase"; version="1.7-2"; sha256="1026jp3j2dyrqrqips4agl4cvjxzkk6jbxga33d49lzbxfqjpman"; depends=[graph igraph Matrix RBGL Rcpp RcppArmadillo RcppEigen]; }; gRc = derive { name="gRc"; version="0.4-1"; sha256="1a6q24yj7js1sk0lfqbm7kdv605cby6i711w4dlygsxdvwxbrsdr"; depends=[graph gRbase Rgraphviz]; }; gRim = derive { name="gRim"; version="0.1-17"; sha256="0vn031r318kp78cx00n43fc42bv6sjyb8dm6q0l08s0g9n2w17dp"; depends=[gRain gRbase igraph Rcpp RcppArmadillo]; }; gSeg = derive { name="gSeg"; version="0.1"; sha256="0qnv3c0rla0g2fb4s4x1i0zdp3dlvi98qf80wlr54gnn7s9vpjf1"; depends=[]; }; @@ -3762,12 +3908,12 @@ galts = derive { name="galts"; version="1.3"; sha256="0b18hsdcsx43rn8l4x9nhy9hgg gam = derive { name="gam"; version="1.12"; sha256="00rx8y7pcxabwjvg0ch6c76xqs43drjg3ih3kflqxdcl2rmaapnd"; depends=[foreach]; }; gamair = derive { name="gamair"; version="0.0-9"; sha256="014fkysiyd49q9j0rrqh6wlp4pqz1q8lqgrqjxbp59x2mfhgxhsg"; depends=[]; }; gambin = derive { name="gambin"; version="1.1"; sha256="197k8j6mvf8236gwg8vvfnskf4hic9y075chsd8214n1nk7i6jmz"; depends=[]; }; -gamboostLSS = derive { name="gamboostLSS"; version="1.1-3"; sha256="1gdsrizr4q5zyfs2g8c8fdwriqz0xrpq9vyy4wd2ywdh5lbi995b"; depends=[mboost]; }; +gamboostLSS = derive { name="gamboostLSS"; version="1.2-0"; sha256="10cgjby7kbxkay5xq9hpkqsddy3fd2yb5af5z6v0mb2pj3pnnrsr"; depends=[mboost]; }; gamboostMSM = derive { name="gamboostMSM"; version="1.1.87"; sha256="0if0x92lch57ksll8d5i3jzk0kh40593b20c17g3hvc33920c7r0"; depends=[mboost]; }; -gamclass = derive { name="gamclass"; version="0.55"; sha256="0nhy1qdc221hsnby8j0m2a4x4a8qwfixbaq4gd22rn1xpbsdnfw3"; depends=[ape car DAAG KernSmooth lattice latticeExtra MASS mgcv randomForest rpart]; }; +gamclass = derive { name="gamclass"; version="0.56"; sha256="13gy8ys69dkhm54x3vcpqblq4j2hkbsnaswzcq0v0saqd9b1shcs"; depends=[ape car DAAG KernSmooth lattice latticeExtra MASS mgcv randomForest rpart]; }; games = derive { name="games"; version="1.1.2"; sha256="01hbbr2hsxi5j9axpdl0jihpd55pa9hacjxmab8p7cixk3xqqqbf"; depends=[Formula MASS maxLik stringr]; }; -gamlr = derive { name="gamlr"; version="1.13-1"; sha256="1y97zsb9shll93f6j7r95296c26dbmxwa1z67ziy0yh4gsgbijc8"; depends=[Matrix]; }; -gamlss = derive { name="gamlss"; version="4.3-5"; sha256="167kpr6gnjfas8w944h7gds9mkhyly0q8kr0aa8crgi8g3j5npkn"; depends=[gamlss_data gamlss_dist MASS nlme survival]; }; +gamlr = derive { name="gamlr"; version="1.13-3"; sha256="05hxmhmgs83q6d5jhq9y5b5llk1pi2jf61286pmnwbzmdwdhrbr2"; depends=[Matrix]; }; +gamlss = derive { name="gamlss"; version="4.3-6"; sha256="1n74am1rjvyjz6dpbf0fs1i5z2bcygh171i15ckrzwsac6b9hziz"; depends=[gamlss_data gamlss_dist MASS nlme survival]; }; gamlss_add = derive { name="gamlss.add"; version="4.3-4"; sha256="1sbs6jc7ashmkv8qz953v8paq4783rzw3m82b8ils4qm53ni8m01"; depends=[gamlss gamlss_dist mgcv nnet rpart]; }; gamlss_cens = derive { name="gamlss.cens"; version="4.3-2"; sha256="0kakgvlx7g8v6wdlnjyganmvpnv8zqr1ml6n2saz913ykn3mkc77"; depends=[gamlss gamlss_dist survival]; }; gamlss_data = derive { name="gamlss.data"; version="4.3-0"; sha256="072mgyalaspc5x099n6cc16k5ll1ry8f736114ffirf89yvinn0n"; depends=[]; }; @@ -3802,17 +3948,17 @@ gcookbook = derive { name="gcookbook"; version="1.0"; sha256="0hb52zfi5bl2j0h8la gdalUtils = derive { name="gdalUtils"; version="0.3.1"; sha256="1a6sg3x5yfffa9xrkvc98i2hm3lvna4jw7p89gn2bf74kzphqpmy"; depends=[foreach R_utils sp]; }; gdata = derive { name="gdata"; version="2.17.0"; sha256="0kiy3jbcszlpmarg311spdsfi5pn89wgy742dxsbzxk8907fr5w0"; depends=[gtools]; }; gdimap = derive { name="gdimap"; version="0.1-9"; sha256="0ksbpcy739bvsiwis0pzd03zb4cvbd8d5wdf8whfn9k6mkj4x9rs"; depends=[abind colorspace geometry gridExtra gsl movMF oro_nifti rgl]; }; -gdistance = derive { name="gdistance"; version="1.1-7"; sha256="1wcpjx76pnkpc6kmqx7bq73qbvzfzjb9s46qb7gi7kabpkya97il"; depends=[igraph Matrix raster sp]; }; -gdm = derive { name="gdm"; version="1.0"; sha256="08wafxvds4sxaxv7mbbkbzilkpfz1xnzdc5jdw3pldvmbgk861vd"; depends=[plyr raster Rcpp reshape2 vegan]; }; +gdistance = derive { name="gdistance"; version="1.1-9"; sha256="174ngm0xg993gkmf70yaln98d2rpjvdx5ngf2aga1jzph6xxdj6d"; depends=[igraph Matrix raster sp]; }; +gdm = derive { name="gdm"; version="1.1.2"; sha256="0j28z2q9riyi5vmr5qfp5kgz1yy8fq1b2n5p7p2r863pyfm2v83b"; depends=[plyr raster Rcpp reshape2 vegan]; }; gee = derive { name="gee"; version="4.13-19"; sha256="14n2fa2jmibw5j8n4qgbl8xbxhapmx4z3zrmkbcci39k9dsyplzb"; depends=[]; }; geeM = derive { name="geeM"; version="0.7.4"; sha256="0vxgwx6qx2xhhj217d6x7m5y89r0b9xxdd4k3sw0zgfga133ij7w"; depends=[Matrix]; }; geepack = derive { name="geepack"; version="1.2-0"; sha256="1pxh9nsyj9a40znm4zza4nbi3dkhb96s3azi43p9ivvfj3l21m74"; depends=[]; }; -geesmv = derive { name="geesmv"; version="1.1"; sha256="1xijdjmkg6nw2y1556zbaic969dg23np0wrb9ncknsrhq4aa28pa"; depends=[gee MASS matrixcalc nlme]; }; +geesmv = derive { name="geesmv"; version="1.2"; sha256="1nhkd4a50l02mishrpya4c1kkws4lqxgzpk66d2rv0zy4z4byj96"; depends=[gee MASS matrixcalc nlme]; }; geigen = derive { name="geigen"; version="1.6"; sha256="1pw5ncnf4a4ckgrhfhh4nvji9i85sjg9q53258ng2w15j37fglic"; depends=[]; }; -geiger = derive { name="geiger"; version="2.0.3"; sha256="1wqihvscmq44i34205fzv79wk7j2a72qd8y6ycgrv74plql0316c"; depends=[ape coda deSolve digest MASS mvtnorm Rcpp subplex]; }; -gelnet = derive { name="gelnet"; version="1.1"; sha256="1d77v44azqpk6hzi7fl2ba6z3nyzh33xn0yp7ydp86nmf1gcgwlh"; depends=[]; }; +geiger = derive { name="geiger"; version="2.0.6"; sha256="1zry3iclj7yciiiysbq6z0kn759c7hdy5fq0dcszkskqcd92qfz1"; depends=[ape coda colorspace deSolve digest MASS mvtnorm ncbit Rcpp subplex]; }; +gelnet = derive { name="gelnet"; version="1.2"; sha256="1npzgbwpsbd0rpyp46njyhwhas0k28nj8b5rz1jmhgn4xf156wkn"; depends=[]; }; gems = derive { name="gems"; version="1.0.0"; sha256="0h8z3ih24hxdv8bah4xf8f797pnwihby8hj93z6zw5sq9dyszxwa"; depends=[data_table MASS msm plyr]; }; -gemtc = derive { name="gemtc"; version="0.6-2"; sha256="0bkcbyh71aq3p7w75w78l472gfschfb2qf9wcv7s2vyy6ypbvh2q"; depends=[coda igraph meta plyr XML]; }; +gemtc = derive { name="gemtc"; version="0.7"; sha256="1118v5p1w7cs0s3h1lnlf6flpnly6fh6v6zk48dy7rr741acpz14"; depends=[coda igraph meta plyr rjags truncnorm]; }; gemtc_jar = derive { name="gemtc.jar"; version="0.14.3"; sha256="18hbiygpsv67flc4v6z6mir0rfq41v1vsh11dg9phmdr8bx4kcl1"; depends=[rJava]; }; genMOSS = derive { name="genMOSS"; version="1.2"; sha256="18qinckzz7wsw222skrq30izbj6s85i8hq6iicj9nng8gh6jydr8"; depends=[ROCR]; }; genMOSSplus = derive { name="genMOSSplus"; version="1.0"; sha256="1n3ngx1piy3l14k5k95wrgvrjw9238jkygfqanl3xg2na2mmkr26"; depends=[]; }; @@ -3820,12 +3966,13 @@ genSurv = derive { name="genSurv"; version="1.0.2"; sha256="0hvkrlcl8jrj0x0ixrl3 genalg = derive { name="genalg"; version="0.2.0"; sha256="1wzfamq8k5yhwbdx0wy1w5bks93brj0p890xxc4yqrja4w38ja3s"; depends=[]; }; genasis = derive { name="genasis"; version="1.0"; sha256="1r0733cc2hss3f8dp19s1ji55yp72mds7p3x1zvvpiks2r7w712p"; depends=[fitdistrplus Kendall]; }; gendata = derive { name="gendata"; version="1.1"; sha256="1r5bhmfblhk6d31v0byhp4a0pmpri6vk697zmmx9b0hvhda7mllf"; depends=[]; }; -gender = derive { name="gender"; version="0.4.3"; sha256="0dhwhv2b86arpmyr89g69h8ikw0f2x27ig420jngfb9gxljj9phc"; depends=[devtools dplyr httr jsonlite]; }; +gender = derive { name="gender"; version="0.5.1"; sha256="0qiwqnpk2pzwvvvnnny0wmmrix1aq3kwnk6n9jyvqzh0v9bzd65g"; depends=[dplyr httr jsonlite]; }; genderizeR = derive { name="genderizeR"; version="1.2.0"; sha256="1a7vafspdd64wr47k1z391ff1ri5f8bynlgn876khcxzhm2vwdva"; depends=[data_table httr magrittr stringr tm]; }; gendist = derive { name="gendist"; version="1.0"; sha256="0n3ax7iy40ymrxhmb88w31a4aacaps9f1iild42afin7i7vy4dq9"; depends=[]; }; geneListPie = derive { name="geneListPie"; version="1.0"; sha256="0z2gawfzhm05dafj4zlj6ifmf0dy7p1hrpa59lzxrnrc0wr6laji"; depends=[]; }; geneSignatureFinder = derive { name="geneSignatureFinder"; version="2014.02.17"; sha256="1s9jj87wnzzgm9hnws09yhrxdlb6jw56i3ddwznvmh8vpzrspv4h"; depends=[class cluster survival]; }; genepi = derive { name="genepi"; version="1.0.1"; sha256="1whhdlq9p8gmygv7464hvfz6dhm65gqq1dqls6hgpmw822zxgbd5"; depends=[]; }; +generator = derive { name="generator"; version="0.1.0"; sha256="0xjvnmnpdms8rrxxcz6pd8w4rnbv3ghzqv4m63zxia2l98x7z4rf"; depends=[]; }; genetics = derive { name="genetics"; version="1.3.8.1"; sha256="0gfbrpz0zp5bgw3s21wrhjfy70laif47wcrjrm6mjgs6xapiw790"; depends=[combinat gdata gtools MASS mvtnorm]; }; genlasso = derive { name="genlasso"; version="1.3"; sha256="1q4ybg8xzphnqwywwdb7i2q94dlxwpggvisjqqdj39jh2cabda57"; depends=[igraph MASS Matrix]; }; genoPlotR = derive { name="genoPlotR"; version="0.8.4"; sha256="06c4flddv83nwjagnszl0sv92mbxf91qml8awhhxnrs1bna04f1p"; depends=[ade4]; }; @@ -3838,19 +3985,19 @@ geoCount = derive { name="geoCount"; version="1.150120"; sha256="1kcjqls91r6p8yk geoR = derive { name="geoR"; version="1.7-5.1"; sha256="10rxlvlsg2avrf63p03a22lnq4ysyc4zq06mxidkjpviwk1kvzqy"; depends=[MASS RandomFields sp splancs]; }; geoRglm = derive { name="geoRglm"; version="0.9-8"; sha256="1zncqsw62m0p4a1wchhb8xsf0152z2xxk3c4xqdr5wbzxf32jhvh"; depends=[geoR sp]; }; geocodeHERE = derive { name="geocodeHERE"; version="0.1.3"; sha256="10b1fgclv3199cglnip5xy0kgi3gi41q9npv7w3kajkrdknnxms4"; depends=[httr]; }; -geojsonio = derive { name="geojsonio"; version="0.1.0"; sha256="17nv7xn80sf2nn6fvmlbnbcgg66n6bh8x725wdfnhk3gg1rb64g5"; depends=[httr jsonlite magrittr maptools rgdal rgeos sp V8]; }; +geojsonio = derive { name="geojsonio"; version="0.1.4"; sha256="0m2n5ivlaz4lalwpl1f0pwpgb61ym8nvw8hnm5id4jihirhcn4rb"; depends=[httr jsonlite magrittr maptools rgdal rgeos sp V8]; }; geomapdata = derive { name="geomapdata"; version="1.0-4"; sha256="1g89msnav87kim32xxbayqcx1v4439x4fsmc8xhlvq4jwlhd5xxw"; depends=[]; }; -geometry = derive { name="geometry"; version="0.3-5"; sha256="1x1dhdbqnq1wi1r4njj3l1g8yag2dig19rna3a5pwf1j1gxbl0i8"; depends=[magic]; }; -geomorph = derive { name="geomorph"; version="2.1.6"; sha256="03imyj0ygilphmbyagpnwzzcwnvj8lmxn19ml47j4x8mi96b5jpl"; depends=[ape geiger jpeg phytools rgl]; }; +geometry = derive { name="geometry"; version="0.3-6"; sha256="0s09vi0rr0smys3an83mz6fk41bplxyz4myrbiinf4qpk6n33qib"; depends=[magic]; }; +geomorph = derive { name="geomorph"; version="2.1.7"; sha256="12qv0p0yylw4jgr3x1mvm3lbyqn39l2nkpqn3vd6x5q8s3nck9gd"; depends=[ape geiger jpeg Matrix phytools rgl]; }; geonames = derive { name="geonames"; version="0.998"; sha256="1p0x260i383ddr2fwv54pxpqz9vy6vdr0lrn1xj7178vxic1dwyy"; depends=[rjson]; }; geophys = derive { name="geophys"; version="1.3-8"; sha256="0nw4m30r46892cf1n575jkfjgdjc14wic9xzmzcnskbk8cd50hp2"; depends=[cluster GEOmap RFOC RPMG RSEIS]; }; -georob = derive { name="georob"; version="0.1-5"; sha256="0awcqcpv82pn2z7lgir73pg2b0whvrrfy55gi0jrjn7lzyakhqaq"; depends=[constrainedKriging lmtest nleqslv nlme quantreg RandomFields robustbase snowfall sp]; }; +georob = derive { name="georob"; version="0.2-1"; sha256="1frv407nqpq7qp4ygahjvg1hvdgfix5biyq9dbys536gn1r0653c"; depends=[constrainedKriging lmtest nleqslv nlme quantreg RandomFields robustbase snowfall sp]; }; geoscale = derive { name="geoscale"; version="2.0"; sha256="0gisds0in32xhw54fxfyxvwxgrfjs871wmqf6l915nr896rlx0bm"; depends=[]; }; geospacom = derive { name="geospacom"; version="0.5-8"; sha256="14qyjbq0n43c2zr9gp11gdqgarvmicx3gpq2ql2vjfzrmirxwjgg"; depends=[classInt geosphere maptools rgeos sp]; }; geosphere = derive { name="geosphere"; version="1.4-3"; sha256="15l5qqazh55l1w9il53j85i5h42sjvkcv0vladgi1axhzyyd41c7"; depends=[sp]; }; -geospt = derive { name="geospt"; version="1.0-1"; sha256="1nv5wn8s4vlbyyzi8is7zsa1vrijp1va0vhi8l2yny8fh22qhjij"; depends=[fields genalg gsl gstat limSolve MASS minqa plyr sgeostat sp TeachingDemos]; }; +geospt = derive { name="geospt"; version="1.0-2"; sha256="1814nn0naxvbn0bqfndpmizjbqcs6rm87g2s378axkn6qpii4bh8"; depends=[fields genalg gsl gstat limSolve MASS minqa plyr sgeostat sp TeachingDemos]; }; geosptdb = derive { name="geosptdb"; version="0.5-0"; sha256="0m0dlazhq2za71mi3q8mz2zvz7yrmda7lha02kh9n820bx89v33z"; depends=[FD fields geospt gsl limSolve minqa sp StatMatch]; }; -geostatsp = derive { name="geostatsp"; version="1.3.4"; sha256="0bg26qhqrjrh85dly7i44vkzyi02gbrz7fx76rmx42f4alcsr66r"; depends=[abind Matrix numDeriv raster sp]; }; +geostatsp = derive { name="geostatsp"; version="1.3.5"; sha256="1qs8jbvkkp7q44rmabraa1wh70yaji9bhnjmjkdv9wz62pllw7bn"; depends=[abind Matrix numDeriv raster sp]; }; geotools = derive { name="geotools"; version="0.1"; sha256="0d0vf9dvrrv68ivssp58qzaj8vra26ms33my097jmzmgagwy1spd"; depends=[]; }; geotopbricks = derive { name="geotopbricks"; version="1.3.7.2"; sha256="15z4969vgh0jwksqrjsd5m598xbz2ppf1ymvf80id4h0grzh08l5"; depends=[raster rgdal stringr zoo]; }; geozoo = derive { name="geozoo"; version="0.4.3"; sha256="0nmmmyk0ih5aqpsn7ip4dhgfm7jhcnca8pigyr9794b110icq1rv"; depends=[bitops]; }; @@ -3858,17 +4005,19 @@ getopt = derive { name="getopt"; version="1.20.0"; sha256="00f57vgnzmg7cz80rjmjz gets = derive { name="gets"; version="0.2"; sha256="0vdg8g588asyzkld9v3rmscx3k727ncxnjzi8qxinlr2zhw9nbcq"; depends=[zoo]; }; gettingtothebottom = derive { name="gettingtothebottom"; version="3.2"; sha256="1cz2vidh7k346qc38wszs2dg6lvya249hvcsn6zdpbx0c0qs3y72"; depends=[ggplot2 Matrix]; }; gfcanalysis = derive { name="gfcanalysis"; version="1.2"; sha256="147vgv4z14xn0j94g7z0y099gz8xj2yb02r6j3mfi4412dg5f5fp"; depends=[animation geosphere ggplot2 plyr raster rasterVis RCurl rgdal rgeos sp stringr]; }; -ggExtra = derive { name="ggExtra"; version="0.2.0"; sha256="15h8ijys5fpz1d42d2pcwvwkc4sffdl36g4yavly1skng0k3gc7c"; depends=[ggplot2]; }; +ggExtra = derive { name="ggExtra"; version="0.3.0"; sha256="19r65249k9j6pz4hjypxp1hspxg9ww3zkvzqq40g3hcaqidsik1s"; depends=[ggplot2 gridExtra]; }; ggROC = derive { name="ggROC"; version="1.0"; sha256="0p9gdy7ia59d5m84z9flz5b03ri7nbigb3fav2v2wrml300d24vn"; depends=[ggplot2]; }; ggRandomForests = derive { name="ggRandomForests"; version="1.1.4"; sha256="0h55593mr2x0kvp97rrm1spj17zbr1p9pqrpngsxmp11iahhccqh"; depends=[ggplot2 randomForestSRC reshape2 survival]; }; -ggdendro = derive { name="ggdendro"; version="0.1-15"; sha256="1xa1pswkf7xnrxs1zqw71ws0r6r0nmc2gnc76bd372czfdn4npci"; depends=[ggplot2 MASS]; }; +ggdendro = derive { name="ggdendro"; version="0.1-17"; sha256="1yl56w9b3yiadf29kdbi3rpsc20jl5r2jggsyi1g6wvq2nlksqx8"; depends=[ggplot2 MASS]; }; ggenealogy = derive { name="ggenealogy"; version="0.1.0"; sha256="0shy6ylrx49yccyydhahqk1nnljqgf1cm11fl4cmb44la5zd3wjn"; depends=[ggplot2 igraph plyr reshape2]; }; gglasso = derive { name="gglasso"; version="1.3"; sha256="0qqp5zak4xsakhydn9cfhpb19n6yidgqj183il1v7yi90qjfyn66"; depends=[]; }; ggm = derive { name="ggm"; version="2.3"; sha256="1n4y459x2i0jil8chjjqqjs28a8pzfxrws2fcjkg3il7zy0zwbw3"; depends=[igraph]; }; -ggmap = derive { name="ggmap"; version="2.4"; sha256="06mdczacjnlzyr5sm1d099sqyf6anhlnn2bnjxni8h36100m5nm2"; depends=[digest geosphere ggplot2 jpeg mapproj plyr png proto reshape2 RgoogleMaps rjson scales]; }; -ggmcmc = derive { name="ggmcmc"; version="0.7.1"; sha256="00knrahhl1bbhgz04qyc9bk992k9x4axdd25kpx39jrr5rzz9b2r"; depends=[dplyr GGally ggplot2 tidyr]; }; -ggparallel = derive { name="ggparallel"; version="0.1.1"; sha256="1z8w4bm4ahmmwbr87qlqhm8jlrqf7dhdvm1cf0xrwjlkmy6dqjvg"; depends=[ggplot2 plyr reshape2]; }; +ggmap = derive { name="ggmap"; version="2.5.2"; sha256="00mm12zzs2r8i7983bv6qicbgxv0iv0x9wlfi965fr58d44s0xqx"; depends=[digest geosphere ggplot2 jpeg mapproj plyr png proto reshape2 RgoogleMaps rjson scales]; }; +ggmcmc = derive { name="ggmcmc"; version="0.7.2"; sha256="1qphizdx5pb6qzvdhrlvar6n8g7xrcm2zxi8c98ibgcws7jgj58b"; depends=[dplyr GGally ggplot2 tidyr]; }; +ggparallel = derive { name="ggparallel"; version="0.1.2"; sha256="05l58qr5mxkkmwl444n0v27r527z64hxkh106am3aj7ml916z0qc"; depends=[ggplot2 plyr reshape2]; }; ggplot2 = derive { name="ggplot2"; version="1.0.1"; sha256="0794kjqi3lrxb33lr1mykd58959hlgkhdn259vj8fxrh65mqw920"; depends=[digest gtable MASS plyr proto reshape2 scales]; }; +ggplot2movies = derive { name="ggplot2movies"; version="0.0.1"; sha256="067ld6djxcpbliv70r2c1pp4z50rvwmn1xbvxfcqdi9s3k9a2v8q"; depends=[]; }; +ggsn = derive { name="ggsn"; version="0.2.0"; sha256="0wkzvcqasndkdp1vzip2xcml0pdvhm4pr5jzdxsy2k51k20d5m1g"; depends=[ggplot2 maptools png]; }; ggsubplot = derive { name="ggsubplot"; version="0.3.2"; sha256="1rrq47rf95hnwz8c33sbnpvc37sb6v2w37863hyjl6gc0bhyrvzb"; depends=[ggplot2 plyr proto scales stringr]; }; ggswissmaps = derive { name="ggswissmaps"; version="0.0.2"; sha256="1cl8m9j3d2kf8dbpq09q36v7nwkgz7khqds431l0kmkzq02qhddf"; depends=[ggplot2]; }; ggtern = derive { name="ggtern"; version="1.0.6.0"; sha256="10aiicvr2vklajmcacpa9ki30hvqjr8y9150mfx6fyqhk8c2r6kl"; depends=[ggplot2 gtable MASS plyr polyclip proto reshape2 scales sp]; }; @@ -3877,11 +4026,12 @@ ggvis = derive { name="ggvis"; version="0.4.2"; sha256="07arzhczvh2sgqv9h30n32s6 ghyp = derive { name="ghyp"; version="1.5.6"; sha256="0y3915jxb2rf01f7r6111p88ijhmzyz4qsmy7vfijlilkz0ynn20"; depends=[gplots numDeriv]; }; giRaph = derive { name="giRaph"; version="0.1.2"; sha256="137c39fz4vz37lpws3nqhrsf4qsyf2l0mr1ml3rq49zz4146i0rz"; depends=[]; }; gibbs_met = derive { name="gibbs.met"; version="1.1-3"; sha256="1yb5n8rkphsnxqn8rv8i54pgycv9p7x1xhinx4l5wzrds3xhf2dc"; depends=[]; }; -gimme = derive { name="gimme"; version="0.1-1"; sha256="1snzlwq6d86ygpn778m3inlfqpymp0l05pdlrdkm8ip4wgir0hvs"; depends=[lavaan qgraph]; }; +gimme = derive { name="gimme"; version="0.1-2"; sha256="1137lin8wkq7wywwisgsqy9jkxas4822bq2pn8h51ggk51cydfnn"; depends=[igraph lavaan qgraph]; }; gistr = derive { name="gistr"; version="0.3.0"; sha256="0clwbm2glazn55glf9dmlfv5l0537k1sv84bs8ahhx0slwh7g604"; depends=[assertthat dplyr httr jsonlite knitr magrittr rmarkdown]; }; -git2r = derive { name="git2r"; version="0.10.1"; sha256="1damlhxf3ma0flqw4am42wj2dxk3m232wh0wpl1ikgx0dcfn9l8f"; depends=[]; }; +git2r = derive { name="git2r"; version="0.11.0"; sha256="1h5ag8sm512jsn2sp4yhiqspc7hjq5y8z0kqz24sdznxa3b7rpn9"; depends=[]; }; gitter = derive { name="gitter"; version="1.0.4"; sha256="1pvl8k8mb15mcfz1074y246s9basmi5vbpw2n1ca0d8wm5wdidap"; depends=[EBImage ggplot2 jpeg logging PET tiff]; }; gkmSVM = derive { name="gkmSVM"; version="0.55"; sha256="1ih4nwsbx0b8d7dsf55ki6hx9kqhanyw2g8na81s7f109dckg2hx"; depends=[kernlab Rcpp seqinr]; }; +glamlasso = derive { name="glamlasso"; version="1.0"; sha256="050xa2s60zm59p7ydxm3gkm2k6lhkdqkby212f5f1dd89q53gdxp"; depends=[Rcpp RcppArmadillo]; }; glarma = derive { name="glarma"; version="1.3-0"; sha256="0fp354zxkddc4giynhwjlf9mg4sklcmqi0gdn8nxm1pkdpb86rba"; depends=[MASS]; }; glasso = derive { name="glasso"; version="1.8"; sha256="0gcapw7kyxb19wvdyxq1vsmc5j7yyd0rvqxs2i71k31q352sg6zw"; depends=[]; }; glba = derive { name="glba"; version="0.2"; sha256="0ckcz6v6mfbv34s8sp086czhb5l58sky79k84332rrz6wj47p3md"; depends=[]; }; @@ -3898,7 +4048,7 @@ glmlep = derive { name="glmlep"; version="0.1"; sha256="0jnm3cf2r9fyncxzpk87g4pn glmm = derive { name="glmm"; version="1.0.4"; sha256="0mcdy8aa5dlscrdahnd7jn9ip28jzipp4imv6cyk8fkkmiy60qhx"; depends=[Matrix mvtnorm trust]; }; glmmBUGS = derive { name="glmmBUGS"; version="2.3"; sha256="1j96c1c2lqplhjvyigpj494yxj85bpmc7cnd1hl1rc8b552jr192"; depends=[abind MASS]; }; glmmGS = derive { name="glmmGS"; version="0.5-1"; sha256="1aqyxw3nrjri8k8wlwvddy25dj7mjqndssd5p5arax8vaqgrdnjz"; depends=[]; }; -glmmLasso = derive { name="glmmLasso"; version="1.3.4"; sha256="14x74640vvyrg72pq19gqb8db7wq97xhc30iakh84fdh1llyykpn"; depends=[minqa]; }; +glmmLasso = derive { name="glmmLasso"; version="1.3.6"; sha256="10pyx5fimkrijxgrgagqhv5s93bfy4m9rnhn27f7jgbwx22j4avv"; depends=[minqa]; }; glmmML = derive { name="glmmML"; version="1.0"; sha256="0b1q5mj325xga3lfks28r03363bjfa31rlgjzwk4s0a6g21bdl4a"; depends=[]; }; glmnet = derive { name="glmnet"; version="2.0-2"; sha256="1nfbh1y41ly09lcdb5z02dy8l4qkll21yicmwg25wlkzk5sxb3z3"; depends=[foreach Matrix]; }; glmnetcr = derive { name="glmnetcr"; version="1.0.2"; sha256="1pyg23hdqksiaqdcrsaqz9vb7mgclm41hh0vb7ndkdv284bzzlbz"; depends=[glmnet]; }; @@ -3910,11 +4060,13 @@ glmx = derive { name="glmx"; version="0.1-0"; sha256="0i0p1xk5yk1l274gfr4ijmqnnb globalGSA = derive { name="globalGSA"; version="1.0"; sha256="1f3xv03m6g2p725ff0xjhvn2xcfm7r7flyrba080i4ldy6fd8jg8"; depends=[]; }; globalOptTests = derive { name="globalOptTests"; version="1.1"; sha256="0yf4p82dpjh36ddpfrby7m3fnj2blf5s76lncflch917sq251h4f"; depends=[]; }; globalboosttest = derive { name="globalboosttest"; version="1.1-0"; sha256="1k7kgnday27sn6s1agzlj94asww81655d2zprx6qg7liv677bxvf"; depends=[mboost survival]; }; -globals = derive { name="globals"; version="0.3.1"; sha256="1fjbs75m07r8gvj5pjqj8dv1xm558h4g2cpg5l1psqzs567gkcxv"; depends=[codetools]; }; +globals = derive { name="globals"; version="0.4.0"; sha256="0ggqf3l64c8ivp914jgybn92n48277m8npqbigalwypdn0wy0xfg"; depends=[codetools]; }; glogis = derive { name="glogis"; version="1.0-0"; sha256="19h0d3x5lcjipkdvx4ppq5lyj2xzizayidx0gjg9ggb1qljpyw9m"; depends=[sandwich zoo]; }; glpkAPI = derive { name="glpkAPI"; version="1.3.0"; sha256="0173wljx13jali2jxz4k5za89hc64n2j9djz5bcryrqhq4rmkp87"; depends=[]; }; glrt = derive { name="glrt"; version="2.0"; sha256="0p2b0digndvnn396ynv56cdg436n3ll7pxkb81rs3dhwbyqyc948"; depends=[survival]; }; +glycanr = derive { name="glycanr"; version="0.2.0"; sha256="09v4xs1fxl9iiqcw66wz09ap3nbmr76f8mihjy06byrqxqjy07j9"; depends=[coin dplyr ggplot2 tidyr]; }; gmailr = derive { name="gmailr"; version="0.6.0"; sha256="1l0lnlq5vrxrab8d9b5hwm8krg8zgx8f8m0kfnryyyrqkjrksky5"; depends=[base64enc httr jsonlite magrittr mime]; }; +gmapsdistance = derive { name="gmapsdistance"; version="1.0"; sha256="14hwwnzx5jd8r2v34066pa59ngvxbmzhni0nc9hg7i3p0gzbfw4b"; depends=[RCurl XML]; }; gmatrix = derive { name="gmatrix"; version="0.2"; sha256="1w83m6q8xflifqqgkkg2my4fkjfjyv0qq4ly8yqk12k77lb03hxq"; depends=[]; }; gmm = derive { name="gmm"; version="1.5-2"; sha256="1phd8mmfyhjb72a45gavckb3g8qi927hdq0i8c7iw1d28f04lc70"; depends=[sandwich]; }; gmnl = derive { name="gmnl"; version="1.1"; sha256="1dz7fhacys88hpf13pbqc9ba37qhwspq7j5zqfy1bg4py1hsx1q7"; depends=[Formula maxLik mlogit msm plotrix truncnorm]; }; @@ -3926,11 +4078,12 @@ gnmf = derive { name="gnmf"; version="0.7"; sha256="00y1dx1c66gv769yiwnb91xbr77w gnumeric = derive { name="gnumeric"; version="0.7-4"; sha256="0q9qrwwkrwcdh5c1prh7d8j4raca59vgaxx7rjh36cml372vkrai"; depends=[XML]; }; goalprog = derive { name="goalprog"; version="1.0-2"; sha256="1h3nd3d53hbz5hl3494lpfjnp1ddklc17nhgw18362jd1nk14awy"; depends=[lpSolve]; }; gof = derive { name="gof"; version="0.9.1"; sha256="1s12gga9d6yizn2y7lzql4jd80lp5jpyml8ybn7xqswp8am82vpg"; depends=[]; }; -goft = derive { name="goft"; version="1.1"; sha256="19mb2i2iri09v2dgkyl1ral2m7bzyizncnz24niwg13afpwbq12h"; depends=[gPdtest mvShapiroTest]; }; +goft = derive { name="goft"; version="1.2"; sha256="1ic3dw287rkpnj7farsj44fy21q3a46krnvaq6clmqqlgwinwajv"; depends=[gPdtest mvShapiroTest]; }; goftest = derive { name="goftest"; version="1.0-3"; sha256="0rwz8y23dsklwvmd4sxq0bcklsa7l47lbs5lkcdn58jsdzm7bfrq"; depends=[]; }; gogarch = derive { name="gogarch"; version="0.7-2"; sha256="03gpl73zc6kx4gni59xbg7b38dkpd7p4c7kvlqm46f58j257viik"; depends=[fastICA fGarch]; }; +googleAuthR = derive { name="googleAuthR"; version="0.1.1"; sha256="0b2j5ygxlaa1kljw16lkz4yn9r18bdblyncp9ffq7vpmx5fam4l6"; depends=[httr jsonlite R6]; }; googlePublicData = derive { name="googlePublicData"; version="0.15.7.28"; sha256="1bkfj88rn8ai0kbjbd0s3zih6iz018xybr13w2h9i6wdi3dhs75s"; depends=[XLConnect XML]; }; -googleVis = derive { name="googleVis"; version="0.5.9"; sha256="0r182x6ccpdqkgqmqf26lvajhw954vqzm4bnyvpqif57nnzw4zpx"; depends=[RJSONIO]; }; +googleVis = derive { name="googleVis"; version="0.5.10"; sha256="00lh8nx8qims9zrb664m7g4psw2p5qwmmkb7gxlizmp1fccwvlq5"; depends=[RJSONIO]; }; googlesheets = derive { name="googlesheets"; version="0.1.0"; sha256="0c3a521i2nw5v6ydz0ci7vbxlzfv3bh39yi7njah25zfbxjgm751"; depends=[cellranger dplyr ggplot2 httr plyr stringr tidyr XML xml2]; }; goric = derive { name="goric"; version="0.0-8"; sha256="0ayac0yfkxrl13ckc2pwfqnmsrhmbg5bi6iwzx0fmh81vrlp0zrm"; depends=[MASS Matrix mvtnorm nlme quadprog]; }; govStatJPN = derive { name="govStatJPN"; version="0.1"; sha256="03sywa7rl5rblvv370mfszz5ngp850qf32yydy1fdx10lv5amrfl"; depends=[]; }; @@ -3951,7 +4104,8 @@ granova = derive { name="granova"; version="2.1"; sha256="161fznqlnwmw53abmg2n62 granovaGG = derive { name="granovaGG"; version="1.3"; sha256="1bsxad2h7rmbkmmg5zx6wbpws62dmp7n905gnp17n8cl8c6w2jp9"; depends=[ggplot2 gridExtra plyr RColorBrewer reshape2]; }; graphicalVAR = derive { name="graphicalVAR"; version="0.1.3"; sha256="0awbcx8qb77r4qb90xinp49glwbkvyfb5f5y2qrjk8rr2jd62j0s"; depends=[glasso glmnet Matrix mvtnorm qgraph Rcpp RcppArmadillo]; }; graphicsQC = derive { name="graphicsQC"; version="1.0-6"; sha256="07kzz0r8rh4m7qqxnlab0d4prr56jz5kspx782byspkcm5l4xrsl"; depends=[XML]; }; -graphscan = derive { name="graphscan"; version="1.0"; sha256="15kdpp2k2gpfr8qq6wr08gva5hlxqha2h48zi1j3p6r766j07082"; depends=[ape rgl snowfall sp]; }; +graphscan = derive { name="graphscan"; version="1.1"; sha256="1v56g1gzlls78mdad9wllyq7zywmjzamrcxw0pk655nwjbqfiyw5"; depends=[ape rgl snowfall sp]; }; +graticule = derive { name="graticule"; version="0.1.0"; sha256="14shfaqmlxnvw7n6rh6n4189mz7hly72n2yq9m119r3ymrhjs79g"; depends=[raster sp]; }; greport = derive { name="greport"; version="0.5-3"; sha256="0cd7rqzrk1yb22ksbmva1fl9k388bxxm586c20j8k8z5zympi9g1"; depends=[data_table Formula ggplot2 Hmisc lattice latticeExtra rms survival]; }; greyzoneSurv = derive { name="greyzoneSurv"; version="1.0"; sha256="115i0d4fy4p4g4vd419hj9f23hi8cbiyfilgpgmag91ilr1xpcdp"; depends=[Hmisc survAUC survival]; }; gridBase = derive { name="gridBase"; version="0.4-7"; sha256="09jzw4rzwf2y5lcz7b16mb68pn0fqigv34ff7lr6w3yi9k91i1xy"; depends=[]; }; @@ -3973,6 +4127,7 @@ growthrate = derive { name="growthrate"; version="1.3"; sha256="1ak3yqlm7dnkdjlm grplasso = derive { name="grplasso"; version="0.4-5"; sha256="15bqckq9qjdlllhfpb21vzgi9msbl544alkrz01w1vvb3hk1847y"; depends=[]; }; grppenalty = derive { name="grppenalty"; version="2.1-0"; sha256="12hbghmg96dwlscjy6nspgkmqqj4vwq2qcwcz1gp50a08qbmdcrk"; depends=[]; }; grpreg = derive { name="grpreg"; version="2.8-1"; sha256="0n6j4mx2f0khdqz7c7yhmsh6gcxha2ypknqa421qir1nvp0x57c9"; depends=[Matrix]; }; +grpregOverlap = derive { name="grpregOverlap"; version="1.0-1"; sha256="09s3gp59z703zqhpnqzqhkd454b5rlq1cgdhcvql2ad4csxxs03x"; depends=[grpreg Matrix]; }; grt = derive { name="grt"; version="0.2"; sha256="0cqjk7yqk2ryx1pgvjd3x8l25hqv92p8rvdr7xw4jkzillllwmhz"; depends=[MASS misc3d rgl]; }; gsDesign = derive { name="gsDesign"; version="2.9-3"; sha256="0dd96hciiksf436lpm1q35in06b82p4h09spklf28n0p5hgc9225"; depends=[ggplot2 plyr RUnit stringr xtable]; }; gsalib = derive { name="gsalib"; version="2.1"; sha256="1k3zjdydzb0dfh1ihih08d4cw6rdamgb97cdqna9mf0qdjc3pcp1"; depends=[]; }; @@ -3986,7 +4141,7 @@ gsl = derive { name="gsl"; version="1.9-10"; sha256="06n21p0k2ki6nb725a6sxwlb4p7 gsmoothr = derive { name="gsmoothr"; version="0.1.7"; sha256="00z9852vn5pj04dhl3w36yk0xjawniay6iifw1i7fd8g98mgspxp"; depends=[]; }; gss = derive { name="gss"; version="2.1-5"; sha256="19bysbh6n04psv0mgvlhkpkc463f6zfiwbdsvd28fakbzcwwm8h2"; depends=[]; }; gsscopu = derive { name="gsscopu"; version="0.9-3"; sha256="0bvhhs5wn4y1dcff2g87f80jdn3i4mdbvdbydsbx80ng38rfxhhg"; depends=[gss]; }; -gstat = derive { name="gstat"; version="1.0-25"; sha256="19vs45mf2jpzfhd9c4gn5k0hdn652awg5bcbbjl4ixd52xiya2py"; depends=[FNN lattice sp spacetime zoo]; }; +gstat = derive { name="gstat"; version="1.0-26"; sha256="1pa9v8yd32b1vlzbf74idd779pg976z94b4n0fw4s46hkas58n0b"; depends=[FNN lattice sp spacetime zoo]; }; gsubfn = derive { name="gsubfn"; version="0.6-6"; sha256="196x4c3ihf4q3i0v7b1xa6jm8jjld2rsx00qz03n90wfnjdx5idv"; depends=[proto]; }; gsw = derive { name="gsw"; version="1.0-3"; sha256="0ca3h567r23bdldic7labk1vbz8hhslw568lacbdcikm8q16hk72"; depends=[]; }; gtable = derive { name="gtable"; version="0.1.2"; sha256="0k9hfj6r5y238gqh92s3cbdn34biczx3zfh79ix5xq0c5vkai2xh"; depends=[]; }; @@ -4001,18 +4156,20 @@ gvcm_cat = derive { name="gvcm.cat"; version="1.9"; sha256="1kwfcmnl1ivv1lh3zxcc gvlma = derive { name="gvlma"; version="1.0.0.2"; sha256="0gj52hg665nmlwgbjh9yvz7a3sbzlbj41ksxchnnlxaxipdf6sl8"; depends=[]; }; gwerAM = derive { name="gwerAM"; version="1.0"; sha256="1c3rzd1jf52a4dn63hh43m9s9xnjvqn67amlm9z1ndrnn6fwfg1b"; depends=[MASS Matrix]; }; gwrr = derive { name="gwrr"; version="0.2-1"; sha256="1fjk217pimnmxsimqp9sn02nr1mwy3hw3vsr95skbfsd6vdda14d"; depends=[fields lars]; }; -h2o = derive { name="h2o"; version="3.0.0.30"; sha256="052m7ba4wgmvbx7bc1d449896ipj7gsgvw2lr07xlbs1zlqadak2"; depends=[RCurl rjson statmod]; }; -h5 = derive { name="h5"; version="0.9.2"; sha256="1fsd4wgks9xlyyrmfc8pcs81a7b6wpfcshyf41lr7sncsvbzs0cd"; depends=[Rcpp]; }; +h2o = derive { name="h2o"; version="3.2.0.3"; sha256="0xy35xfl8zinh2blq2gns0hldjzx6rqbpdn45jv9fls6v6kbvk9h"; depends=[jsonlite RCurl statmod]; }; +h5 = derive { name="h5"; version="0.9.3"; sha256="1jp41nfj0x3sd3n2qrl5ndmmya6x9scc2zw6bx9sqa8kx455c6jr"; depends=[Rcpp]; }; hSDM = derive { name="hSDM"; version="1.4"; sha256="1jq6hdnyv446ng62srip0b48kccf0qw3xqym3fprg74mjdy3inqr"; depends=[coda]; }; haarfisz = derive { name="haarfisz"; version="4.5"; sha256="1qmh4glwzqwqx3pvxc71rlcimp1l0plgdf380v9hk0b4gj7g3pkf"; depends=[wavethresh]; }; hamlet = derive { name="hamlet"; version="0.9.4"; sha256="0x8g7fxbns41zrlr4cmq6d523bajyny9kd4846lx2lma1q2jrn4s"; depends=[]; }; hapassoc = derive { name="hapassoc"; version="1.2-8"; sha256="0qs5jl0snzfchgpp6pabncwywxcmi743g91jvjiyyzw0lw85yv4s"; depends=[]; }; haplo_ccs = derive { name="haplo.ccs"; version="1.3.1"; sha256="0cs90zxxbvglz1af0lh37dw1gxa04k0kawzxamz2was3dbh19lbz"; depends=[haplo_stats survival]; }; -haplo_stats = derive { name="haplo.stats"; version="1.6.11"; sha256="0j3zh4n2rly8dij8srm8ck6fl63haw6d27m3nfnrxywr87pljg14"; depends=[]; }; +haplo_stats = derive { name="haplo.stats"; version="1.7.1"; sha256="06c1wficlzxmc4k4w0ghabka6if7jqbbqnfr6xcaf7rvwqj75l9a"; depends=[rms]; }; haplotypes = derive { name="haplotypes"; version="1.0"; sha256="0pwihfi6g4jrnkha9s9rksq0fc8j04mlrwf0295rmy49y19rg84s"; depends=[network]; }; harvestr = derive { name="harvestr"; version="0.6.0"; sha256="1jg4d98bwx2cm3hliayqrazq43sa9kd9ynpaid6x4ld3mz5y8mlq"; depends=[digest plyr]; }; hash = derive { name="hash"; version="2.2.6"; sha256="0mkx59bmni3b283znvbndnkbar85fzavzdfgmwrhskidsqcz34yz"; depends=[]; }; hashFunction = derive { name="hashFunction"; version="1.0"; sha256="1v57xj8xwv6xhxvgp0zxgvs5vcjw8z5k2ciwbn0jxf4ilyd66cgj"; depends=[]; }; +hashids = derive { name="hashids"; version="0.9.0"; sha256="0233qly4rb1g4znxm9h9h8gskzrjyav6nd26xkdl7990m5hcbcwh"; depends=[]; }; +hashr = derive { name="hashr"; version="0.1.0"; sha256="1ri2zz2l1rrc1qmpqamzw21d9y06c7yb3wr60izw81l8z4mmyc3a"; depends=[]; }; hasseDiagram = derive { name="hasseDiagram"; version="0.1.1"; sha256="1szj5pi9i5ijqakxx4vwvwpz7y76jbgcgm76vfg4cnxvndf7sf4l"; depends=[Rgraphviz]; }; haven = derive { name="haven"; version="0.2.0"; sha256="1ww55ciibq62bix3pdwabpycxv1dh01zsrf0vb6jxxh1idxbm5hg"; depends=[BH Rcpp]; }; hawkes = derive { name="hawkes"; version="0.0-4"; sha256="1ghwq3icxwmrai3xn9r8cnvlh3z3j18lznhw1bm31h9mkkp2dk0a"; depends=[Rcpp RcppArmadillo]; }; @@ -4030,6 +4187,7 @@ hddtools = derive { name="hddtools"; version="0.2.4"; sha256="001cm07jvbxzsp64mk hdeco = derive { name="hdeco"; version="0.4.1"; sha256="04nggwckvn1kwi238qd33l4pryzn4aq5bmi30bvfi99gwnrlgfgq"; depends=[]; }; hdi = derive { name="hdi"; version="0.1-2"; sha256="19lc2h34jlj198gchnhbfbb8igwlan2b977a47j8p3q6haj5bcv1"; depends=[glmnet linprog MASS scalreg]; }; hdlm = derive { name="hdlm"; version="1.2"; sha256="0s4lzg3s2k7f7byygb11s7f78l3rkkb0zn03kh3d7h8250wg9fax"; depends=[foreach glmnet iterators MASS]; }; +hdnom = derive { name="hdnom"; version="2.0"; sha256="052v3511xvhz1ycrsm7lwabz0wk4v7cqp1vx1nsnzil0p8p41abp"; depends=[foreach glmnet ncvreg penalized rms survAUC survival]; }; hdrcde = derive { name="hdrcde"; version="3.1"; sha256="027nxpzk1g0yx8rns7npdz30afs5hwpdqjiamc7yjrsi0rzm71lw"; depends=[ash KernSmooth ks locfit mvtnorm]; }; heatex = derive { name="heatex"; version="1.0"; sha256="0c7bxblq24m80yi24gmrqqlcw8jh0lb749adsh51yr6nzpap6i9n"; depends=[]; }; heatmap_plus = derive { name="heatmap.plus"; version="1.3"; sha256="0rzffm15a51b7l55k0krk6w7v8czy3vpwz1qmbybr7av0pln7wn3"; depends=[]; }; @@ -4045,11 +4203,11 @@ hermite = derive { name="hermite"; version="1.1.0"; sha256="184f7iixsmpli5hp4f0f het_test = derive { name="het.test"; version="0.1"; sha256="08kxp81dx32anh0k5b65x7w7madwnn9hiabdrk6ck6b6mx37x26v"; depends=[vars]; }; hett = derive { name="hett"; version="0.3-1"; sha256="1y0hr9g2pjwzc5azh095h33qidxhhmlvd1csamjnhwdphj5drzz0"; depends=[lattice MASS]; }; hexView = derive { name="hexView"; version="0.3-3"; sha256="0cx5hl70sk1wk24na21vjyv50b2358z1plvvcw604qf1zij4icwn"; depends=[]; }; -hexbin = derive { name="hexbin"; version="1.27.0"; sha256="0fs5nsaalic6fj7b347yjczws310y3q2v37yr8sg74yq8wqzsdj8"; depends=[lattice]; }; +hexbin = derive { name="hexbin"; version="1.27.1"; sha256="0xi6fbf1fvyn2gffr052n3viibqzpr3603sgi4xaminbzja4syjh"; depends=[lattice]; }; hflights = derive { name="hflights"; version="0.1"; sha256="1rb6finck13i6949i6hsgfk90q4ybxh1m3is2mlw2m6087bpzfbd"; depends=[]; }; hgam = derive { name="hgam"; version="0.1-2"; sha256="1flcc67n8kbh9m5phdfl587xg1x935zbp305y0gdmkc8vpkiwpcf"; depends=[grplasso lattice rgl]; }; hglasso = derive { name="hglasso"; version="1.2"; sha256="1qq41ma33wz7qjs5zx72yvngpsiq62z9sd6d5hvvl83brq0fcr4b"; depends=[fields glasso igraph mvtnorm]; }; -hglm = derive { name="hglm"; version="2.1-0"; sha256="02d5m7j7c1z40kih1ywvnd32sdlshgsgagsbh9avhhpcg7lxswj9"; depends=[hglm_data MASS Matrix]; }; +hglm = derive { name="hglm"; version="2.1-1"; sha256="1vr1332db60fqbck0nplfw5dnxpb7sa3irh80k2hyx4aw74ckr2k"; depends=[hglm_data MASS Matrix]; }; hglm_data = derive { name="hglm.data"; version="1.0-0"; sha256="1hrq1jac658z5xjsg03nfkb4kwm9z44bhciv5chk74ww8gjr9j9q"; depends=[MASS Matrix]; }; hgm = derive { name="hgm"; version="1.11"; sha256="1p6391bcvsgf2mvkdrwc3fj3h6hkzshqmzb6f31kmpiihjwv3392"; depends=[deSolve]; }; hht = derive { name="hht"; version="2.1.2"; sha256="10lpndwpddcqxyrk9pq9dwaqpj4apxdic971nd68cn3pql6fssdn"; depends=[EMD fields spatstat]; }; @@ -4066,12 +4224,13 @@ highD2pop = derive { name="highD2pop"; version="1.0"; sha256="1s4v6m2d3vzvxsgmjz highTtest = derive { name="highTtest"; version="1.1"; sha256="18hgxlr0y8y1d4ldqmfcg4536lhyn5p6w88sq1vj74qr5wzydga1"; depends=[]; }; highfrequency = derive { name="highfrequency"; version="0.4"; sha256="0kzadnkvmxcrb8flsxlx8vd9c2yad7hh1pij05dhdcpaidrc9acq"; depends=[xts zoo]; }; highlight = derive { name="highlight"; version="0.4.7"; sha256="1gpwj4phq45hhx4x6r8rf6wc6ak6y4fkbad9v23fl8wldb4a8dyg"; depends=[]; }; -highr = derive { name="highr"; version="0.5"; sha256="0jnab5pk5sg4f5krsg5jdamr4y40z2pzxhp5h6fb6wys3m75hzny"; depends=[]; }; +highr = derive { name="highr"; version="0.5.1"; sha256="11hyawzhaw3ph5y5xphi7alx6df1d0i6wh0a2n5m4sxxhdrzswnb"; depends=[]; }; highriskzone = derive { name="highriskzone"; version="1.2"; sha256="1kv8w1p3d8p9asigcpc713qwy91hiqb2qsw592sr9zy1nr5ax6gc"; depends=[deldir fields ks Matrix rgeos spatstat]; }; hillmakeR = derive { name="hillmakeR"; version="0.2"; sha256="1baynibgn4xqmpsxna8irggxvdc484mq5nza00rwg58vh1bc7wzq"; depends=[]; }; +hindexcalculator = derive { name="hindexcalculator"; version="1.0.0"; sha256="06b4dn629avmnyqxb0l39m00wz9cg9dddmm6qhgwgnzlxh14ifgk"; depends=[]; }; hint = derive { name="hint"; version="0.1-1"; sha256="1n18j2hcb1qynhsln10nzryi20l5aqhr7i1aanww10y5dz573zi3"; depends=[]; }; hisemi = derive { name="hisemi"; version="1.0-319"; sha256="0pm7dsaaqrdhkvxsk2cjvk6qd2rqqmddmv012smnrivi7mpnvd4w"; depends=[fda Iso Matrix]; }; -hisse = derive { name="hisse"; version="1.1"; sha256="1f35an1zfsy9ziqqb02fss2kss5070pzx7fzrqbrc3a5434qpdf5"; depends=[ape deSolve GenSA phytools subplex]; }; +hisse = derive { name="hisse"; version="1.2"; sha256="09a26zzqmn5hzyz79nymmq3j70hypp95yn78wb3alydl614i6jy8"; depends=[ape data_table deSolve GenSA phytools subplex]; }; histmdl = derive { name="histmdl"; version="0.4-1"; sha256="0kiz95hdi658j5s7aqlf8n9k35s30pshc5nymif88gjik9gvrxd0"; depends=[]; }; histogram = derive { name="histogram"; version="0.0-23"; sha256="0hrhk423wdybqbvgsjn7dxgb95bkvmbh573q1696634hvzfdm68c"; depends=[]; }; historydata = derive { name="historydata"; version="0.1"; sha256="1h69x3iig542d43p9zm8x83p4dq48iwsw606j4fndnqhx99vzkw6"; depends=[]; }; @@ -4080,8 +4239,8 @@ hive = derive { name="hive"; version="0.2-0"; sha256="0ywakjphy67c4hwbh6prs4pgq5 hmeasure = derive { name="hmeasure"; version="1.0"; sha256="0wr0xq956glmhvy4yis3qq7cfqv9x82ci9fzx3wjvaykd16h0sx9"; depends=[]; }; hmm_discnp = derive { name="hmm.discnp"; version="0.2-3"; sha256="1r9xxgsqh5pw9incldaxnsqhyanhd4jwm6w0ix1k43i53dw4diyr"; depends=[]; }; hmmm = derive { name="hmmm"; version="1.0-3"; sha256="0yjx5i13jbv7vzxn84m6305124ri7jnym0bxbdj46s6l7lw025a9"; depends=[MASS mvtnorm quadprog]; }; -hnp = derive { name="hnp"; version="1.0"; sha256="1sxbgz57js1vxhz309dnj6jhw4y6c0pzk0a9xk8avacicnv0bxhr"; depends=[MASS]; }; -hoa = derive { name="hoa"; version="2.1.2"; sha256="1y3fg19k8naysbkpg5cxivk9xcck9l1ws27virbdacblc4xfqmpc"; depends=[statmod survival]; }; +hnp = derive { name="hnp"; version="1.1"; sha256="0biqyvk0pl4l83j1zhddya7c0bh5hmifpwjzdbc7svjyn1aj63vh"; depends=[MASS]; }; +hoa = derive { name="hoa"; version="2.1.4"; sha256="15klcpmja4afwmpfxrxgrfis0vj7fil8k15jc3p0lqz3dhvq0dvf"; depends=[statmod survival]; }; hoardeR = derive { name="hoardeR"; version="0.1"; sha256="1a3kf676mchrla9g0b619dx09ihxvlmahgwlbwqny6zwr49w7vzl"; depends=[httr MASS R_utils stringr XML]; }; holdem = derive { name="holdem"; version="1.1"; sha256="07h4cbg7hx91hc6ypi6hbalzdd9qz9rfhjgk5sq1srnangwwnxlw"; depends=[]; }; homals = derive { name="homals"; version="1.0-6"; sha256="1xfpb6mxfk18ad2fggljr2g01gy4c290axc3vgwngmmimmcvh4cy"; depends=[ape rgl scatterplot3d]; }; @@ -4092,9 +4251,9 @@ hot_deck = derive { name="hot.deck"; version="1.0"; sha256="11dxj676y55p4n0c27l7 hotspots = derive { name="hotspots"; version="1.0.2"; sha256="1cwcwin86y7afjhs8jwlz1m63hh70dcjag0msds4ngksvjh9gj2q"; depends=[ineq lattice]; }; howmany = derive { name="howmany"; version="0.3-1"; sha256="045ck8qahfg2swbgyf7dpl32ryq1m4sbalhr7m5qdgpm62vz8h7f"; depends=[]; }; hpcwld = derive { name="hpcwld"; version="0.5"; sha256="17k4mw41gygwgvh7h78m0jgzh1bivrvrsr8lgxxw3sbkw88lwb40"; depends=[multicool partitions]; }; -hpoPlot = derive { name="hpoPlot"; version="2.0"; sha256="080jzi1zw510clbbkmf2wkwbfgna06kfz91i7d90b9pqi7krj28j"; depends=[functional magrittr Rgraphviz]; }; +hpoPlot = derive { name="hpoPlot"; version="2.2"; sha256="193ssc7csfkkbv08xqw2skla1f19pwwrypmm4bh5xm804zpi918c"; depends=[functional magrittr Rgraphviz]; }; hqmisc = derive { name="hqmisc"; version="0.1-1"; sha256="0jcy2hb3dmzf9j4n92aq7247mx9w7n30wpsx0dkchqnjwlqwwncw"; depends=[]; }; -hqreg = derive { name="hqreg"; version="0.9"; sha256="1091qrs31iabnms0z15f1mliaq69k9snxsscfizh8rws2vqhrjvr"; depends=[]; }; +hqreg = derive { name="hqreg"; version="1.0"; sha256="08f6yijsmd0f3b5yxgdzfv6hqxhc8hbbpn2bmgivmpfssh84mcnn"; depends=[]; }; hrr = derive { name="hrr"; version="1.1.1"; sha256="17jzsgh2784y7jdwpa50v7qz99dw6k2n25sisnam6h1a39b96byn"; depends=[]; }; hsdar = derive { name="hsdar"; version="0.3.0"; sha256="1bv7bw27ybw9fkbzk3q0scs8y19maj7321mlcwhgp91xykcp01wg"; depends=[raster rgdal rootSolve signal sp]; }; hsicCCA = derive { name="hsicCCA"; version="1.0"; sha256="1d4lkjrihwhl3jrsj7250ccd90nfwpllyavc3mp15fhcy2jnjci8"; depends=[]; }; @@ -4109,9 +4268,10 @@ httk = derive { name="httk"; version="1.2"; sha256="016njh1cm21bmdrn94cbsmf36gzc httpRequest = derive { name="httpRequest"; version="0.0.10"; sha256="0f6mksy38p9nklsr44ki7a79df1f28jwn2jfyb6f9kbjzh98746j"; depends=[]; }; httpuv = derive { name="httpuv"; version="1.3.3"; sha256="0aibs0hf38n8f6xxx4g2i2lzd6l5h92m5pscx2z834sdvhnladxv"; depends=[Rcpp]; }; httr = derive { name="httr"; version="1.0.0"; sha256="1yprw8p4g8026jhravgg1hdwj1g51cpdgycyr5a58jwm4i5f79cq"; depends=[curl digest jsonlite mime R6 stringr]; }; -huge = derive { name="huge"; version="1.2.6"; sha256="11njfd4i8q950apga6sdk84p4wk4qvp8bpg6yz9lgjrgj2hn14n2"; depends=[igraph lattice MASS Matrix]; }; +huge = derive { name="huge"; version="1.2.7"; sha256="134d951x42vy9dcmf155fbvik2934nh6qm2w5jlx3x2c6cf7faq4"; depends=[igraph lattice MASS Matrix]; }; humanFormat = derive { name="humanFormat"; version="1.0"; sha256="0zwjbl8s5dx5d57sfmq6myc6snximc56zl88h8y1s1jqphyn9sir"; depends=[testthat]; }; -hwde = derive { name="hwde"; version="0.64"; sha256="1is39zknssqm98577sdjg8gn3h9wsraih19a9nd6n8mxdcsqivh4"; depends=[]; }; +humaniformat = derive { name="humaniformat"; version="0.5.0"; sha256="18094zlvhd44vg2rg4731f84imrjp69gzay3gnm5yp1scbiqbd82"; depends=[Rcpp]; }; +hwde = derive { name="hwde"; version="0.66"; sha256="0wq5bkfqhbf8h9x5ik3wzqrxs4i5ip523cvrsh15xclmrkhjis6g"; depends=[]; }; hwriter = derive { name="hwriter"; version="1.3.2"; sha256="0arjsz854rfkfqhgvpqbm9lfni97dcjs66isdsfvwfd2wz932dbb"; depends=[]; }; hwriterPlus = derive { name="hwriterPlus"; version="1.0-3"; sha256="1sk95qgpyxwk1cfkkp91qvn1iklad9glrnljdpidj20lnmpwyikx"; depends=[hwriter TeachingDemos]; }; hwwntest = derive { name="hwwntest"; version="1.3"; sha256="1b5wfbiwc542vlmn0l2aka75ss1673z8bcszfrlibg9wwqjxlwk5"; depends=[polynom wavethresh]; }; @@ -4126,51 +4286,53 @@ hydrostats = derive { name="hydrostats"; version="0.2.3"; sha256="1hd4jcdkdl546k hyperSpec = derive { name="hyperSpec"; version="0.98-20150304"; sha256="0fjww2h6vlm53dsnaxb3i11cmary1w8l0jr9c5dy16y7n9cc3hqb"; depends=[ggplot2 lattice latticeExtra mvtnorm svUnit]; }; hyperdirichlet = derive { name="hyperdirichlet"; version="1.4-9"; sha256="03c2xgfhfbpn1za84ajhvm0i5cpmfnz1makidrr2222addgyp9zx"; depends=[abind aylmer cubature mvtnorm]; }; hypergea = derive { name="hypergea"; version="1.2.3"; sha256="13a8r7f2qq7wi0h7jrg29mn573njzi1rwna0ch9sj8sdy8w26r6w"; depends=[]; }; -hypergeo = derive { name="hypergeo"; version="1.2-9"; sha256="0ydwza0h8ykzbrsvvp4wd5jiy05rx5bj93c7bplx68j3c68c9f1q"; depends=[contfrac elliptic]; }; -hypervolume = derive { name="hypervolume"; version="1.3.0"; sha256="07pnbkdqm4jssv6h31q68mawckiyxczsjfw4gndpyvxnl44p0qrz"; depends=[fastcluster geometry ks MASS Rcpp RcppArmadillo rgl]; }; +hypergeo = derive { name="hypergeo"; version="1.2-11"; sha256="0kg7yimgrrcqdzxackslf2zxpdrl3xx3a88irkxlwhf36znwfrdj"; depends=[contfrac deSolve elliptic]; }; +hypervolume = derive { name="hypervolume"; version="1.4"; sha256="03wxcckz19wq4njaaixnrpa1akmmx1i2p2zjij91ynnqh4qwvnij"; depends=[fastcluster geometry ks MASS Rcpp RcppArmadillo rgl]; }; hypothesestest = derive { name="hypothesestest"; version="1.0"; sha256="0g8sm386m1zm9i3900r62x83wb600cy8hqk7dlvbx6wcgrxg82sm"; depends=[]; }; hysteresis = derive { name="hysteresis"; version="2.5"; sha256="1b1dd2367pjbg4jnn65l2jcj38ljz7adpdg8f5b9rj1rw7qgikfl"; depends=[car MASS msm]; }; hzar = derive { name="hzar"; version="0.2-5"; sha256="000l4ki3hvznnhkxc5j422h5ifnsfqalv666j48yby1hsf1lc3kg"; depends=[coda foreach MCMCpack]; }; iBATCGH = derive { name="iBATCGH"; version="1.3"; sha256="0pnkkabzi57czcwd9i15nwv8ggwvyxmvn1wam7yrrrbvmi17lmrm"; depends=[msm Rcpp RcppArmadillo]; }; iBUGS = derive { name="iBUGS"; version="0.1.4"; sha256="0vsxy8pnbix0rg7ksgywx7kypqb5ngkxhldh3cisjkvdv638ybps"; depends=[gWidgetsRGtk2 R2WinBUGS]; }; -iC10 = derive { name="iC10"; version="1.1.2"; sha256="1ncxdjw9ary0bs3fvnvyqp356gi4wa177sllkizq71fzn75a03x3"; depends=[iC10TrainingData pamr]; }; +iC10 = derive { name="iC10"; version="1.1.3"; sha256="19dlrwj47zmdgmvzjfs5qa9fqq8g9ywhgy5mqbp99n7d9hg4ybxh"; depends=[iC10TrainingData pamr]; }; iC10TrainingData = derive { name="iC10TrainingData"; version="1.0.1"; sha256="1x1kgxiib9l7whm2kmbv1s912hgpl7rdpqpn67nlkiswnr27hqn4"; depends=[]; }; iCluster = derive { name="iCluster"; version="2.1.0"; sha256="09j36xv87d382m5ijkhmp2mxaajc4k97cf9k1hb11ksk7fxdqz6r"; depends=[caTools gdata gplots gtools lattice]; }; iDynoR = derive { name="iDynoR"; version="1.0"; sha256="01702vl10191mbq2wby1m0y6h8i6y6ic4pa83d27cg3yccsrhziz"; depends=[vegan XML]; }; iFad = derive { name="iFad"; version="3.0"; sha256="0jrl9bayihp3wb4k5w9kc71qlsdxk7vl83ydfibx2bg79c4hf3cs"; depends=[coda MASS Rlab ROCR]; }; iFes = derive { name="iFes"; version="1.0"; sha256="0in6wy6w567188gylnlvcsk3r3w2nln9h60rj7ng1qwqawrvgwxp"; depends=[doParallel foreach ROCR]; }; iGasso = derive { name="iGasso"; version="1.2"; sha256="123487slizsmw5b0imwqll8n03navx30kvawr6jfibbjfdd8vfn7"; depends=[CompQuadForm lattice]; }; -iNEXT = derive { name="iNEXT"; version="2.0.3"; sha256="1b9sq19g3qd1q47bmgsw16lwn3r7wgrbiiaa8pc67lbrar5iip9v"; depends=[ggplot2]; }; +iLaplace = derive { name="iLaplace"; version="1.0.0"; sha256="1fwsfx3y44k8xsp1l1n51vqa767ahvk462plgkljdcq4nxa0idvc"; depends=[doParallel foreach iterators Rcpp RcppArmadillo]; }; +iNEXT = derive { name="iNEXT"; version="2.0.5"; sha256="1n9qyddjrpsas930wdi7yx91a8hhilvbkhjiaqpjzwdx8big3f7l"; depends=[ggplot2]; }; iRefR = derive { name="iRefR"; version="1.13"; sha256="17kjfga62xc4s1kii5clxszbag2dr1dyxfm7jasr20prx28ya6pp"; depends=[graph igraph RBGL]; }; iRegression = derive { name="iRegression"; version="1.2"; sha256="1fn25xnrvgx2ayhss136rxn1h3c9pvq2gmb5kbp92vsf07klvh6v"; depends=[mgcv]; }; iRepro = derive { name="iRepro"; version="1.0"; sha256="1knncn47pl411r31z1r5ipsiyagcpjbc2gb972n7l3539pcpf0zy"; depends=[]; }; iWeigReg = derive { name="iWeigReg"; version="1.0"; sha256="09ajbqllr4ajmpk8qs6qw019fx8a7vsabm37867zycssn77z9nc8"; depends=[MASS trust]; }; +iaQCA = derive { name="iaQCA"; version="0.8.7.0"; sha256="1dvd1bgai9izfiljmbi8kzfskpy78xcg3jyjsknqyb7a4q7il6fv"; depends=[bootstrap QCA]; }; ibd = derive { name="ibd"; version="1.2"; sha256="0681v7lgx697yj2d60cw3p5axbbaxanzj291vdf7ailn7300p1ms"; depends=[car lpSolve lsmeans MASS multcompView]; }; ibdreg = derive { name="ibdreg"; version="0.2.5"; sha256="1kaa5q1byi30wzr0mw4w2cv1ssxprzcwf91wrpqwkgcsdy7dkh2g"; depends=[]; }; ibeemd = derive { name="ibeemd"; version="1.0.1"; sha256="115z13q02gzixziknix2l53mi12zzg30ra9h35pv6qzrr11ra1ic"; depends=[deldir fields rgeos sp spdep]; }; ibelief = derive { name="ibelief"; version="1.2"; sha256="1zh6bpg0gaybslr1p05qd5p2y5kxbgyhgha4j4v5d69d78jwgah9"; depends=[]; }; -ibmdbR = derive { name="ibmdbR"; version="1.36.7"; sha256="0v6l8cm0sww2gm8yal4ffk2wcxfnvfsd76i92f2khank7bhga06r"; depends=[MASS RODBC]; }; +ibmdbR = derive { name="ibmdbR"; version="1.42.2"; sha256="09q9awmrixmvlkkcwg5hkgi4swgjydm1cnlbcwi5ankf0vbngqp5"; depends=[arules MASS Matrix RODBC]; }; ibr = derive { name="ibr"; version="1.4.5"; sha256="0nw2j232br06l30v3cn4qcr25vbh911v2mz7nfail40sqxc6wwc4"; depends=[]; }; ic_infer = derive { name="ic.infer"; version="1.1-5"; sha256="0nmx7ijczzvrv1j4321g5g5nawzll8srf302grc39npvv1q17jyz"; depends=[boot kappalab mvtnorm quadprog]; }; ic50 = derive { name="ic50"; version="1.4.2"; sha256="1a5ddmbdfr3ls132fvalbkh4yaawv9k58rgpy54s5qddrm6aas2s"; depends=[]; }; -ica = derive { name="ica"; version="1.0-0"; sha256="009xv1ycgbnw6ysx1wxrgygny7qa2wd2mcjrg2fwxg958mzyrx4z"; depends=[]; }; +ica = derive { name="ica"; version="1.0-1"; sha256="1bkl4a72l0k6gm82l3jxnib898z20cw17zg81jj39l9dn65rlmcq"; depends=[]; }; icaOcularCorrection = derive { name="icaOcularCorrection"; version="3.0.0"; sha256="1vmvarc2apipd0vlhprc5wpgh8i38m5myj1gqdymjrnky0azq17f"; depends=[fastICA mgcv]; }; icamix = derive { name="icamix"; version="1.0.2"; sha256="0rpqx9q5p3nb5gd76zlkqls52a8qiw7y9r26jwxs71nxl85clqcs"; depends=[Rcpp RcppArmadillo]; }; icapca = derive { name="icapca"; version="1.1"; sha256="131gdrk8vsbac0krmsryvsp21bn9hzxqxq847zn16cxjf6y5i3xb"; depends=[]; }; iccbeta = derive { name="iccbeta"; version="1.0"; sha256="0zsf2b5nrv39pssi5walf82892fr8p1f802c96hjjknh78q7gh0h"; depends=[lme4 Rcpp RcppArmadillo]; }; -icd9 = derive { name="icd9"; version="1.2"; sha256="0d0dgd5951chyfimzjb00cphdvqzml8p8wr7sad3qfhv44dsypn7"; depends=[checkmate Rcpp]; }; +icd9 = derive { name="icd9"; version="1.3"; sha256="1k34s7zys2c6v6i7843yh8i5bh3j7axdv9xdlampdfx5pn5g29as"; depends=[checkmate fastmatch Rcpp]; }; icenReg = derive { name="icenReg"; version="1.2.7"; sha256="0rhsqbnpfd8zbc3mvnb5qlsvvgwfp1jd9mc0k78c76avj1inchbi"; depends=[foreach survival]; }; icensmis = derive { name="icensmis"; version="1.2.1"; sha256="1h4l9irip4hv34hr92j8756qgmy455mfdblr7ypgsgvr27cgax8h"; depends=[Rcpp]; }; icsw = derive { name="icsw"; version="0.9"; sha256="0lmq9l9sy0fz3yjj2sj8f19iy26913caibf7d9zb9w9n6cqskvlx"; depends=[]; }; idbg = derive { name="idbg"; version="1.0"; sha256="1rxmj04hswxybrg7dfib3mjy8v8mdiv13zwbscp2q55z55hhf1m5"; depends=[]; }; identity = derive { name="identity"; version="0.2-1"; sha256="1j5wb5cj5j49in2g6r1shdm4ri4cfzj22hpqazvcmq4dm291sdi9"; depends=[]; }; -idm = derive { name="idm"; version="1.0"; sha256="001zvhw38qgq1l66yxz5kchvjspijdvqwgrdvh5ykiqifi8kc5xm"; depends=[animation ca corpcor dummies ggplot2]; }; +idm = derive { name="idm"; version="1.2"; sha256="0f9w1556yfn3vsza6g5lmcpaydj20k0zdlc9shciskkiqhm9gjlc"; depends=[animation ca corpcor dummies ggplot2]; }; idr = derive { name="idr"; version="1.2"; sha256="05nvgw1xdg670bsjjrxkgd1mrdkciccpw4krn0zcgdf2r21dzgwb"; depends=[]; }; ieeeround = derive { name="ieeeround"; version="0.2-0"; sha256="0xaxrlalyn8w0w4fva8fd86306nvw3iyz44r0hvay3gsrmgn3fjh"; depends=[]; }; ifa = derive { name="ifa"; version="7.0"; sha256="1cxafd7iwvyidzy27lyk1b9m27vk785ipj9ydkyx9z1v0zna2wnl"; depends=[mvtnorm]; }; ifaTools = derive { name="ifaTools"; version="0.6"; sha256="0yzwz5dq4plhqkd699wrfgas9rsk0qj799bay9vkxh3cgbs73gbi"; depends=[ggplot2 OpenMx reshape2 rpf shiny]; }; ifctools = derive { name="ifctools"; version="0.3.1"; sha256="0lr1d4z2gzninqchfzmmmymd0ngywrjpbh7bvd6qgxkzabf9yxxx"; depends=[]; }; -ifs = derive { name="ifs"; version="0.1.4"; sha256="0fzani8rnn4rdwlghq967hhi4zfjnk3gwpk3v6wys738xj7yfwp1"; depends=[]; }; +ifs = derive { name="ifs"; version="0.1.5"; sha256="03g9cgs0zp89b1d7rpcn5clkvmg0spnariwrifd8hha476ldvfcy"; depends=[]; }; ifultools = derive { name="ifultools"; version="2.0-1"; sha256="16lrmajyfa15akgjq71w9xlfsr4y9aqfw7y0jf6gydaz4y6jq9b9"; depends=[MASS splus2R]; }; ig_vancouver_2014_topcolour = derive { name="ig.vancouver.2014.topcolour"; version="0.1.2.0"; sha256="0yclvm6xppf4w1qf25nf82hg1pliah68z7h3f683svv0j62q748h"; depends=[]; }; igraph = derive { name="igraph"; version="1.0.1"; sha256="00jnm8v3kvxpxav5klld2z2nnkcpj4sdwv4ksipddy5mp04ysr6w"; depends=[irlba magrittr Matrix NMF]; }; @@ -4179,7 +4341,9 @@ igraphtosonia = derive { name="igraphtosonia"; version="1.0"; sha256="0vy9jnpjp6 ihs = derive { name="ihs"; version="1.0"; sha256="1c5c9l6kdalympb19nlgz1r9zq17575ivp3zrayb9p6w3fn2i06h"; depends=[maxLik]; }; iki_dataclim = derive { name="iki.dataclim"; version="1.0"; sha256="1yhvgr8d3j2r8y9c02rzcg80bz4cx58kzybm4rch78m0207wqs7p"; depends=[climdex_pcic lubridate PCICt zoo]; }; ilc = derive { name="ilc"; version="1.0"; sha256="0hs0nxv7cd300mfxscgvcjag9f2igispcskfknb7sn7p8qvwr5ki"; depends=[date demography forecast rainbow survival]; }; +imager = derive { name="imager"; version="0.14"; sha256="1zfy5iz5l2f6yjzhi5wgb2xsngnlxslc186iacvspmw0zydzwyvw"; depends=[jpeg magrittr plyr png Rcpp stringr]; }; imguR = derive { name="imguR"; version="1.0.0"; sha256="0yhlir0qxi6hjmqlmmklwd4vkymc5bzv9id9dlis1fr1f8a64vwp"; depends=[httr jpeg png RCurl]; }; +immer = derive { name="immer"; version="0.1-1"; sha256="1xwps4bkz4svrkal2fl9786580ciz2fnip2zyz569mf9caqh5mlv"; depends=[CDM coda psychotools Rcpp RcppArmadillo sirt]; }; import = derive { name="import"; version="1.1.0"; sha256="0blf9539rbfwcmw8zsb4k58slb4pdnc075v34vmyjw752fznhcji"; depends=[]; }; imprProbEst = derive { name="imprProbEst"; version="1.0.1"; sha256="09y8yd9sw0b79ca45ryi7p82vy5s8cx0gg603rlc39lgwcdv45i3"; depends=[inline lpSolve]; }; imputeLCMD = derive { name="imputeLCMD"; version="2.0"; sha256="10v3iv1iw6mnss6ry836crq9zdgid2y1h3pvigzjsrmnp5n89mfz"; depends=[impute norm pcaMethods tmvtnorm]; }; @@ -4189,6 +4353,7 @@ imputeTS = derive { name="imputeTS"; version="0.1"; sha256="0sq2qkvzvzk4iglzhm80 in2extRemes = derive { name="in2extRemes"; version="1.0-2"; sha256="10ngxv4zsh78gm3xwb22m681nhl2qbnzi4fkqwgjj2iz46ychzvy"; depends=[extRemes]; }; inTrees = derive { name="inTrees"; version="1.1"; sha256="1b88zy4rarcx1qxzv3089gzdz1smga6ssj8cxxccyyzci6px85j1"; depends=[arules gbm RRF xtable]; }; inarmix = derive { name="inarmix"; version="0.4"; sha256="11a1vaxq22d5lab07jp5pw0znkaqj6bmkn6vsx62y6m4mmqk04yr"; depends=[Matrix Rcpp]; }; +inbreedR = derive { name="inbreedR"; version="0.1.0"; sha256="0hhkkp7k53hr3yfy51gibmwyd34h7n2a3ir07cjhxk6jhpf6jzgk"; depends=[data_table]; }; indicoio = derive { name="indicoio"; version="0.3"; sha256="04c2j4l103fiiibf83z7iq95wfnlv9rj46cyp9xy68bzqkbwdi3m"; depends=[httr png rjson stringr]; }; indicspecies = derive { name="indicspecies"; version="1.7.5"; sha256="16m4pnfnmaskin4aaalm2cmv3vwzg94045max8nhkgw02kpskz1r"; depends=[permute]; }; ineq = derive { name="ineq"; version="0.2-13"; sha256="09fsxyrh0j7mwmb5hkhmrzgcy7kf85jxkh7zlwpgqgcsyl1n91z0"; depends=[]; }; @@ -4197,11 +4362,12 @@ inferference = derive { name="inferference"; version="0.4.62"; sha256="12iag6l2d inflection = derive { name="inflection"; version="1.1"; sha256="1nb1pf07c371vwgplfyjs3q1iqgb5hyk9czxqrjiy18g8p7zdln2"; depends=[]; }; influence_ME = derive { name="influence.ME"; version="0.9-6"; sha256="1pfp26dmqs6abb2djf9yn5jk4249vi8ldahpc2xrr0mr3l17g06g"; depends=[lattice lme4 Matrix]; }; influence_SEM = derive { name="influence.SEM"; version="1.5"; sha256="0h920pxa3sk6y7ipkihxm78i06alm5rmlmn5pr937j7abgypkk3p"; depends=[lavaan]; }; +influenceR = derive { name="influenceR"; version="0.1.0"; sha256="12p9362hkndlnz1rd8j2rykg57kbm6l7ks60by3rd25xg50k5jag"; depends=[igraph Matrix]; }; infoDecompuTE = derive { name="infoDecompuTE"; version="0.5.1"; sha256="1aigd1fvpdqjplq1s1js0sy8px68q73lbp5q591rn52c77smdhaj"; depends=[MASS]; }; informR = derive { name="informR"; version="1.0-5"; sha256="16pz47wlr1gr8z5hdnrjpczm967khqiqgdfiw15a0bby6qdvni2y"; depends=[abind relevent]; }; infotheo = derive { name="infotheo"; version="1.2.0"; sha256="18xacczfq3z3xpy434js4nf3l19lczngzd0lq26wh22pvg1yniwv"; depends=[]; }; infra = derive { name="infra"; version="0.1.2"; sha256="0jycnnmrrjq37lv67xbvh6p63d6l4vbgf3i1z9y7r75d6asspzn1"; depends=[]; }; -infuser = derive { name="infuser"; version="0.2"; sha256="1x585glkffw4kq8d13md4ksbrmqvp11pr05w5pp2z6rcxldaf5vd"; depends=[]; }; +infuser = derive { name="infuser"; version="0.2.1"; sha256="02h3b07zf2x93yyrspb47kjb0jn0i5c79xjvrhm7yj5zzjhzqxh0"; depends=[]; }; infutil = derive { name="infutil"; version="1.0"; sha256="02d0hfbkdqjj0lm1fzwwxy60831kbcjn2m4rfblpib0krkbpz72n"; depends=[ltm]; }; inline = derive { name="inline"; version="0.3.14"; sha256="0cf9vya9h4znwgp6s1nayqqmh6mwyw7jl0isk1nx4j2ijszxcd7x"; depends=[]; }; inlinedocs = derive { name="inlinedocs"; version="2013.9.3"; sha256="13vk6v9723wlfv1z5fxmvxfqhaj68h0x3s2qq9j6ickr4wakb4ar"; depends=[]; }; @@ -4215,32 +4381,36 @@ intamap = derive { name="intamap"; version="1.3-37"; sha256="17l1bifks0vsk0a3bj2 intamapInteractive = derive { name="intamapInteractive"; version="1.1-10"; sha256="073k6sdds40fmlbw1xnp3x5sc9qdyq2s1bhp7av4jjm930hsvsrn"; depends=[automap gstat intamap spatstat spcosa]; }; intcox = derive { name="intcox"; version="0.9.3"; sha256="1m1lzmymh2pk570k6nxq3nj7wxkvs1s3nvz8cb456fnv72ng8fap"; depends=[survival]; }; interAdapt = derive { name="interAdapt"; version="0.1"; sha256="06ki36l1mrnd9lbm696a6gapr488dz8na4wvl9y1fif9hfv4zk25"; depends=[knitcitations knitr mvtnorm RCurl shiny]; }; +interactionTest = derive { name="interactionTest"; version="1.0"; sha256="1ppc476glwf0bsr1wgzircvnhgn9kkbhy3rskfz671ma6fv3p67b"; depends=[]; }; interferenceCI = derive { name="interferenceCI"; version="1.1"; sha256="19ky10nn6ygma6yy5h1krxx61aikh3yx5y39p68a944mz8f72vsn"; depends=[gtools]; }; intergraph = derive { name="intergraph"; version="2.0-2"; sha256="1ipxdrfxhcxhcbqvrzqh3impwk4xryqlqlgjl7f2mwrf365zs6ph"; depends=[igraph network]; }; -internetarchive = derive { name="internetarchive"; version="0.1.2"; sha256="08gbkqbzx963c1jy3a540fsd0ff9ylr7la1clwjn46lp4cc4yv1h"; depends=[dplyr httr jsonlite]; }; +internetarchive = derive { name="internetarchive"; version="0.1.4"; sha256="0889y0w3avh2c2imcxhvjli8619g7pqd6nakwxdgqlsdg6mxlif2"; depends=[dplyr httr jsonlite]; }; interplot = derive { name="interplot"; version="0.1.0.2"; sha256="031zpni88akhdjwrava9xf3k9x7vsldsi3dxjaj5x6q48a6gh19x"; depends=[abind arm ggplot2]; }; interpretR = derive { name="interpretR"; version="0.2.3"; sha256="1y2j91dm0p6yy9qwkllmlmk8n2b9ics4d40cmq8b0fk3rk61vh59"; depends=[AUC randomForest]; }; interval = derive { name="interval"; version="1.1-0.1"; sha256="1lln9jkli28i4wivwzqrsxvv2n15560f7msjy5gssrm45vxrxms8"; depends=[Icens MLEcens perm survival]; }; -intervals = derive { name="intervals"; version="0.15.0"; sha256="0lvxaq5ia7hj65n00awz454a2vdxpskxjw45wsakgh0sc60hk8yz"; depends=[]; }; +intervals = derive { name="intervals"; version="0.15.1"; sha256="1r2akz8dpix1rgvdply4r3m2zc08r0n96w9c97hma80g61a3i2ws"; depends=[]; }; interventionalDBN = derive { name="interventionalDBN"; version="1.2.2"; sha256="0wpp4bfi22ncvl0vdivniwwvcqgnpifpgxb4g5jbyvr0z735cd9w"; depends=[]; }; intpoint = derive { name="intpoint"; version="1.0"; sha256="0zcv64a0clgf1k3ylh97q1w5ddrv227846gy9a68h6sgwc0ps88b"; depends=[]; }; introgress = derive { name="introgress"; version="1.2.3"; sha256="1j527gf7pmfy5365p2j2jbxq0fb0xh2992hj4d7dxapn4psgmvsk"; depends=[genetics nnet RColorBrewer]; }; intsvy = derive { name="intsvy"; version="1.7"; sha256="1q3z8wk809ixnqmhfy4l075km0flsdp3x1m8xqg5ccgwnvdi9igf"; depends=[foreign ggplot2 Hmisc memisc plyr reshape]; }; invGauss = derive { name="invGauss"; version="1.1"; sha256="0l93pk2sh74dd6a6f3970nval5p29sz47ynzqnphx0wl3yfmmg9c"; depends=[optimx survival]; }; +invLT = derive { name="invLT"; version="0.2.1"; sha256="0dcr2cclgzkvsw1lysmjrkwgahas96rjc328yc7a1a56pf62kw2v"; depends=[]; }; investr = derive { name="investr"; version="1.3.0"; sha256="057wq6c5r7hrg1nz7460alsjsk83cvac2d1d4mjjx160q3m0zcvj"; depends=[nlme]; }; io = derive { name="io"; version="0.2.2"; sha256="07vifr1h8ldiam8ngp6yrx6mvdnmmnnsq3hcs2pyphws6hgdmwwh"; depends=[filenamer stringr]; }; +ioncopy = derive { name="ioncopy"; version="1.0"; sha256="1idk899zxvpvnswdwlpkhy5v8id6xmrbp6hg4rmrlpp3wfxw3ad5"; depends=[multtest]; }; ionflows = derive { name="ionflows"; version="1.1"; sha256="1k9yz82hbjwljyg4cmi675ppykrc2yq9md8x1hhkfxmp070whcxl"; depends=[Biostrings]; }; iosmooth = derive { name="iosmooth"; version="0.91"; sha256="03kyzhcl5lipaiajs53dc8jaazxv877nl0njbq88cp4af3gd6s82"; depends=[]; }; iotools = derive { name="iotools"; version="0.1-12"; sha256="1b2crnhx84h1gp10sy2mkhi9vylp9z97ld16jijddzlf4v23bmlx"; depends=[]; }; ipdmeta = derive { name="ipdmeta"; version="2.4"; sha256="0k9wqpmrvqdh73brmdzv86a2dbyddjyyyqzqgp1vqb3k48k009s2"; depends=[nlme]; }; -ipdw = derive { name="ipdw"; version="0.2-2"; sha256="1mvxs1039hv9m36jhi11qvjysmpmh7ms522q9phwmljv2nnl7ylz"; depends=[gdistance raster sp]; }; +ipdw = derive { name="ipdw"; version="0.2-3"; sha256="1l1wgxdfk9mw58i6h7b4dgi4aw2z9n5gzhb0yhzmrxgz2xb3rn7x"; depends=[gdistance raster sp]; }; ipfp = derive { name="ipfp"; version="1.0"; sha256="1hpfbgygnpnl3fpx7zl728jyw00y3kbbc5f0d407phm56sfqmqwi"; depends=[]; }; iplots = derive { name="iplots"; version="1.1-7"; sha256="052n8jdhj8gy72xlr23dwd5gqycqnph7s1djg1cdx2f05iy693y6"; depends=[png rJava]; }; ipred = derive { name="ipred"; version="0.9-5"; sha256="193bdx5y4xlb5as5h59lkakrsp9m0xs5faqgrp3c85wfh0bn8iis"; depends=[class MASS nnet prodlim rpart survival]; }; ips = derive { name="ips"; version="0.0-7"; sha256="0r4394xbchv6czad9jz4ijnfz8ss3wfdvh7ixrdxic2xrw0ic90v"; depends=[ape colorspace XML]; }; iptools = derive { name="iptools"; version="0.2.1"; sha256="1754i1pqs18x2as2vlfn6vi6j7q4s6n25k2bizv8h83bc316cjp2"; depends=[BH Rcpp]; }; -iqLearn = derive { name="iqLearn"; version="1.3"; sha256="05f2spnzyqzbbgwz9llf4x5r6fsz5gxa1ckykv6wxg4sirdqccm1"; depends=[]; }; -irace = derive { name="irace"; version="1.06"; sha256="10dizzjds1aszvyh0fn6ahqvgn2x6sg3lwb7rca8zhgphrjg92bl"; depends=[]; }; +ipw = derive { name="ipw"; version="1.0-11"; sha256="11a34j6lp329ran2r9kxn8184kfmibkdig74lsy6lj4w4w0d71cm"; depends=[geepack MASS nnet survival]; }; +iqLearn = derive { name="iqLearn"; version="1.4"; sha256="0vgnfr6x6f6qlnag63brnkdymlmm2vbkl8fg02w98qsc48lal454"; depends=[]; }; +irace = derive { name="irace"; version="1.07"; sha256="187lwi19qcq2kqxca0233qs6k36n9fsnnh9xqwjga15snn4vlrlq"; depends=[]; }; irlba = derive { name="irlba"; version="1.0.3"; sha256="1h2ymk9hg9xj2075w715742j23jl7kqa4cgzl1jvr48gcysq5byy"; depends=[Matrix]; }; irr = derive { name="irr"; version="0.84"; sha256="0njxackqj8hyf9j1yszwxbnaxgp27fc2bwyyf7dip72wc12f81n5"; depends=[lpSolve]; }; irtProb = derive { name="irtProb"; version="1.2"; sha256="12wnvbzkh0mx9i3iyh1v2n2f2wjsjj7ad3dgv9xj949x4nbz16j0"; depends=[lattice moments]; }; @@ -4283,32 +4453,33 @@ jiebaR = derive { name="jiebaR"; version="0.5"; sha256="1x41jqc1ai3v1fn9f65dk7k4 jiebaRD = derive { name="jiebaRD"; version="0.1"; sha256="1wadpcdca4pm56r8q22y4axmqdbb2dazsh2vlhjy73rpymqfcph4"; depends=[]; }; jmetrik = derive { name="jmetrik"; version="1.0"; sha256="0xnbvby03fqbxgg0i0qxrrzjv98783n6d7c1fywj81x487qlj77j"; depends=[]; }; joineR = derive { name="joineR"; version="1.0-3"; sha256="0q98nswbxk5dz8sazzd66jhlg7hv5x7wyzcvjc6zkr6ffvrl8xj7"; depends=[boot gdata lattice MASS nlme statmod survival]; }; -joint_Cox = derive { name="joint.Cox"; version="2.0"; sha256="0fdplzyh0ayw5d4b5rc9miisnwn5anmf8dv0a4dxnqnndjc2hjpx"; depends=[]; }; +joint_Cox = derive { name="joint.Cox"; version="2.1"; sha256="169li1qncbaffc7ib2spg64qz7iyc9h34556c14lmdygm78grcqy"; depends=[]; }; jointDiag = derive { name="jointDiag"; version="0.2"; sha256="0y1gzrc79vahfhn4jrj5xys8pmkzxj4by7361730gi347f0frs0a"; depends=[]; }; jointPm = derive { name="jointPm"; version="2.3.1"; sha256="1c2cn9sqwfyv9ksd63w8rrz0kh18jm2wv2sfdkgncjb7vfs4hbv9"; depends=[]; }; jomo = derive { name="jomo"; version="1.2-0"; sha256="1vwvmxyndrxyyw9slwbkpa0kap8ymc3pqc4k0pxhwjgpy7k1xyvx"; depends=[]; }; jpeg = derive { name="jpeg"; version="0.1-8"; sha256="05hawv5qcb82ljc1l2nchx1wah8mq2k2kfkhpzyww554ngzbwcnh"; depends=[]; }; js = derive { name="js"; version="0.2"; sha256="1dxyyrmwwq07l6pdqsvxscpciy4h1021h9ymx8hi2vqvv0mdrz76"; depends=[V8]; }; -jsonlite = derive { name="jsonlite"; version="0.9.16"; sha256="12whrj9shnf8wd3a5yi9zcvinhgvik9nb2wp6202j869jdwxq5ym"; depends=[]; }; +jsonlite = derive { name="jsonlite"; version="0.9.17"; sha256="07s11m8z43dh5pyci5rpjqj5js69q8prjar42qhhxbvdmcrjk4z7"; depends=[]; }; jtrans = derive { name="jtrans"; version="0.2.1"; sha256="18zggqdjzjhjwmsmdhl6kf35w9rdajpc2nffag4rs6134gn81i3m"; depends=[]; }; kSamples = derive { name="kSamples"; version="1.0.1"; sha256="11qylllwpm3rhrzmdlkbdqixpmx4qlvgmfwp9s4jfy5h3q68mfw7"; depends=[SuppDists]; }; kappaSize = derive { name="kappaSize"; version="1.1"; sha256="0jrjal8cvy2yg0qiyilmv3jl3ib5k9jg8gp2533kdsx4m0sack04"; depends=[]; }; kappalab = derive { name="kappalab"; version="0.4-7"; sha256="16bwbwwqmq2w7vy8p3wg0y80wfgc8q5l1ly1mqh51xi240z1qmq0"; depends=[kernlab lpSolve quadprog]; }; kaps = derive { name="kaps"; version="1.0.2"; sha256="0jg4smbq51v88i3815icb284j97iam09pc52rv3izxa57nv9a0gz"; depends=[coin Formula survival]; }; kcirt = derive { name="kcirt"; version="0.6.0"; sha256="1gm3c89i5dq7lj8khc12v30j1c0l1gwb4kv24cyy1yw6wg40sjig"; depends=[corpcor mvtnorm snowfall]; }; -kdecopula = derive { name="kdecopula"; version="0.0.3"; sha256="14n8hf1y49582p8dgmw7qj71nl9m75bjgjp7jxirj6azm8nfdx7z"; depends=[cubature lattice locfit Rcpp RcppArmadillo VineCopula]; }; +kdecopula = derive { name="kdecopula"; version="0.2.0"; sha256="1shczgcy2nfrzqda5425gbqq7dhvhspc5zwxlgwc3gcq2qdw8gla"; depends=[cubature lattice locfit qrng Rcpp RcppArmadillo VineCopula]; }; kdetrees = derive { name="kdetrees"; version="0.1.5"; sha256="1plf2yp2vl3r5znp5j92l6hx1kgj0pzs7ffqgvz2nap5nf1c6rdg"; depends=[ape distory ggplot2]; }; kedd = derive { name="kedd"; version="1.0.2"; sha256="11mfgjr1pl56y4rcychs8xjgazy3vhg1xasr37fd0g32g7w3lxqg"; depends=[]; }; -kelvin = derive { name="kelvin"; version="1.2-2"; sha256="0fl2yxc0dpmkhq3f7711gd08i7jlzlfncin1d6q251dfnmwd7rzf"; depends=[Bessel]; }; +kelvin = derive { name="kelvin"; version="2.0-0"; sha256="04xdgpmysksm79m3vqmb4zra3pq09nv99w4fbdla1lmy7z8pkdrk"; depends=[Bessel]; }; kequate = derive { name="kequate"; version="1.4.0"; sha256="0vr45y4f6x3080pf3k53nifavf8mfhikz54nis66c53fs9rp0jwf"; depends=[equateIRT ltm]; }; kerdiest = derive { name="kerdiest"; version="1.2"; sha256="16xj2br520ls8vw5qksxq9hqlpxlwmxccfk5balwgk5n2yhjs6r3"; depends=[chron date evir]; }; kergp = derive { name="kergp"; version="0.1.0"; sha256="00p3iziz6kjm1v7rpqa2lls1xgp2w3q754mj1x6bj24kx69xpc7g"; depends=[MASS numDeriv Rcpp testthat]; }; -kernelFactory = derive { name="kernelFactory"; version="0.2.2"; sha256="1ms6732s17vx120xr2l423qmj0h880r522zsgp474pq3fxc0mr48"; depends=[AUC genalg kernlab randomForest]; }; +kerndwd = derive { name="kerndwd"; version="1.1.1"; sha256="1awh1scc9drcpzz3fvb6fs855jf3z62ab88i6bgmp5s6v908p9iz"; depends=[]; }; +kernelFactory = derive { name="kernelFactory"; version="0.3.0"; sha256="001kw9k3ivd4drd4mwqapkkk3f4jgljiaprhg2630hmll064s89j"; depends=[AUC genalg kernlab randomForest]; }; kernlab = derive { name="kernlab"; version="0.9-22"; sha256="1k0f8kwc3rncdfccqfs42670lkxx53vrcal0jk3nybsyl37jza8x"; depends=[]; }; keypress = derive { name="keypress"; version="1.0.0"; sha256="16msbanmbv2kf09qvl8bd9rf1vr7xgcjzjhzngyfyxv90va3k86b"; depends=[]; }; kfigr = derive { name="kfigr"; version="1.2"; sha256="0hmfh4a95883p1a63lnziw8l9f2g0fn0xzxzh36x9qd9nm7ypmkw"; depends=[knitr]; }; kimisc = derive { name="kimisc"; version="0.2-1"; sha256="1nbhw1q0p87w4z326wj5b4k0xdv0ybkgcc59b3cqbqhrdx8zsvql"; depends=[plyr]; }; -kin_cohort = derive { name="kin.cohort"; version="0.6"; sha256="13gnjk58m5kya9wj87klwm6h7cdqi61ba6y0cg9k1hgbc1ajy3s8"; depends=[survival]; }; +kin_cohort = derive { name="kin.cohort"; version="0.7"; sha256="0wijsjz0piz5j9rm2nr3d5dfpiyba740mbfbkmfll9pz72s58wz8"; depends=[survival]; }; kineticF = derive { name="kineticF"; version="1.0"; sha256="1k54zikgva9fw9c4vhkc9b0kv8sq5pmc962s8wxr6qv97liv9p46"; depends=[circular lqmm MASS plotrix sp splancs]; }; kinfit = derive { name="kinfit"; version="1.1.14"; sha256="0gb43pghgllb9gzh8jzzpfmc46snv02ln4g3yqsdah3cyqnck0ih"; depends=[]; }; kinship2 = derive { name="kinship2"; version="1.6.4"; sha256="19r3y5as83nzk922hi4fkpp86gbqxdg1bgng798g1b073bp6m9yj"; depends=[Matrix quadprog]; }; @@ -4323,13 +4494,13 @@ km_ci = derive { name="km.ci"; version="0.5-2"; sha256="1l6kw8jppaa1802yc5pbfwwg kmc = derive { name="kmc"; version="0.1-2"; sha256="16lv8wk24cp91qg5202zhfmdhg83qw8bwiycknaml5ki820ffdlx"; depends=[emplik Rcpp rootSolve]; }; kmconfband = derive { name="kmconfband"; version="0.1"; sha256="10n5w8k57faqcclwshs4m66i2i5b70i6f3xq5nqlgsi2ldkysbc9"; depends=[survival]; }; kmi = derive { name="kmi"; version="0.5.1"; sha256="0519mi7kwrsfpili7y8nmyiky6qwf8xkd0n7cwj02c8d119bk9sa"; depends=[mitools survival]; }; -kml = derive { name="kml"; version="2.3.1"; sha256="1bnd8ssbhijxd9c9x7qn96jdkj1f1jnm46nw86164issxc6ypm5a"; depends=[clv longitudinalData]; }; -kml3d = derive { name="kml3d"; version="2.3"; sha256="0dlpxp8bbrwgblrl1hnc1ip592abc6sdcl87s4m6jwgfaxjcq7a8"; depends=[clv kml longitudinalData misc3d rgl]; }; +kml = derive { name="kml"; version="2.4"; sha256="0v732jjlk8sy4mbpwad5x8gs9sbw4hwxhnjh4z2glqhpn5g78xl0"; depends=[clv longitudinalData]; }; +kml3d = derive { name="kml3d"; version="2.4"; sha256="115av1yhnpfmv1na2b9zvrv42anwrd08i7pscd7ww10grfv435dc"; depends=[clv kml longitudinalData misc3d rgl]; }; kmlcov = derive { name="kmlcov"; version="1.0.1"; sha256="09s9ganfsnwp22msha78g6pjr45ppyfyqjf6ci64w3w15q5qlcd9"; depends=[]; }; kmodR = derive { name="kmodR"; version="0.1.0"; sha256="1y1pqrrralklflyb1dw8bslfcyqrw8ryijfbhkwba7ykpxcf9fda"; depends=[]; }; knitLatex = derive { name="knitLatex"; version="0.9.0"; sha256="1igacc2sx8897wmnhh8kngd0fq6zqbi30chy5c8jw60zc38mi3wi"; depends=[knitr]; }; knitcitations = derive { name="knitcitations"; version="1.0.6"; sha256="18jfrzazbk8cy9i7qvmmrn8c5cmkxvmdd894jpvak2gplxvsdx91"; depends=[digest httr RefManageR]; }; -knitr = derive { name="knitr"; version="1.10.5"; sha256="1qxpsnjwb4bdq44k3nglfrznpvqaqj18njx4imbpk3njzcjif7a7"; depends=[digest evaluate formatR highr markdown stringr yaml]; }; +knitr = derive { name="knitr"; version="1.11"; sha256="1ikjla0hnpjfkdbydqhhqypc0aiizbi4nyn8c694sdk9ca4jasdd"; depends=[digest evaluate formatR highr markdown stringr yaml]; }; knitrBootstrap = derive { name="knitrBootstrap"; version="0.9.0"; sha256="1cw5dvhjiypk6847qypxphfl9an54qjvd6qv029znhwijsg56mmg"; depends=[knitr markdown]; }; knnGarden = derive { name="knnGarden"; version="1.0.1"; sha256="1gmhgr42l6pvc6pzlq5khrlh080795b0v1l5xf956g2ckgk5r8m1"; depends=[cluster]; }; knnIndep = derive { name="knnIndep"; version="2.0"; sha256="1fwkldgs2994svf3sj90pwsfx6r22cwwa22b30hdmd24l8v9kzn7"; depends=[]; }; @@ -4338,7 +4509,7 @@ knockoff = derive { name="knockoff"; version="0.2.1"; sha256="197icnyxxmi6f0v0p2 koRpus = derive { name="koRpus"; version="0.05-6"; sha256="00mvdk9akicvy61bx83iyfzaamwpsjk0w7xg6yg26581dbc7wif1"; depends=[]; }; kobe = derive { name="kobe"; version="1.3.2"; sha256="1z64jwrq6ddpm22cvk2swmxl1j7qyz0ddk3880c7zfq6gk7f9bxl"; depends=[coda emdbook ggplot2 MASS plyr reshape]; }; kofnGA = derive { name="kofnGA"; version="1.1"; sha256="1ykk3rmyrv8c556rl3wp0i1d522dghaq4qk5acg06hhk9j9962fg"; depends=[]; }; -kohonen = derive { name="kohonen"; version="2.0.18"; sha256="08inl7rx30gjpqbdbhccy65bingimzgi4lckfvs0r6lba04a1f8l"; depends=[class MASS]; }; +kohonen = derive { name="kohonen"; version="2.0.19"; sha256="0fi94m2gpknzk31q3mjkplrq9qwac8bjc8hdlb3zxvz6rabbhxrr"; depends=[class MASS]; }; kolmim = derive { name="kolmim"; version="1.0"; sha256="0g1i0cazi4nhfwdd3ywqrar1sn7bw77w38qjii045w5vqg05srkp"; depends=[]; }; kpodclustr = derive { name="kpodclustr"; version="1.0"; sha256="1fywgdj4q3kg8y9lwnj6vxg9cwgs5ccwj6m3knfgg92f8ghnsbsw"; depends=[clues]; }; kriging = derive { name="kriging"; version="1.1"; sha256="04bxr34grf2nlrwvgrlh84pz7yi0r8y7dc2wk0v5h5z6yf5a085w"; depends=[]; }; @@ -4355,13 +4526,13 @@ kza = derive { name="kza"; version="3.0.0"; sha256="0v811ln9vg7msvks9lpgmdi39p01 kzft = derive { name="kzft"; version="0.17"; sha256="1y6almhs1x21cr4bbf5fj3mnhp65ivzs869660cyg70sva853sv7"; depends=[polynom]; }; kzs = derive { name="kzs"; version="1.4"; sha256="1srffwfg0ps8zx0c6hs2rc2y2p01qjl5g1ypqsbhq88vkcppx1w9"; depends=[lattice]; }; l2boost = derive { name="l2boost"; version="1.0"; sha256="1p0sbvlnax4ba4wjkh3r0bmjs601k590g7bdfk6wxvlj42jxcnkl"; depends=[MASS]; }; -laGP = derive { name="laGP"; version="1.1-5"; sha256="15p958c95a68gr2xs8aw0l0sp0appv6islfbidlvxm8ph252hw6d"; depends=[tgp]; }; +laGP = derive { name="laGP"; version="1.2-1"; sha256="0b614bl87kyfd19a3gznmlgzf9v3mwscxrylgc0s08s0mg6411p8"; depends=[tgp]; }; labdsv = derive { name="labdsv"; version="1.7-0"; sha256="1r5vbmdijcrw0n3phdmfv8wiy7s08pidvhac4pnsxfmf98f74jby"; depends=[cluster MASS mgcv rgl]; }; label_switching = derive { name="label.switching"; version="1.4"; sha256="1b498l3zb05yywkx8lbd9q9h92md2n4kyjvq62903k1wqp65nhvj"; depends=[combinat lpSolve]; }; labeledLoop = derive { name="labeledLoop"; version="0.1"; sha256="0gq392h0sab8k7k8bzx6m7z5xpdsflldhwbpdf92zbmkbzxsz00m"; depends=[]; }; labeling = derive { name="labeling"; version="0.3"; sha256="13sk7zrrrzry6ky1bp8mmnzcl9jhvkig8j4id9nny7z993mnk00d"; depends=[]; }; labeltodendro = derive { name="labeltodendro"; version="1.3"; sha256="13kpmv26zzjf5iwpr4vs797irplmaixp1agx5v80wr4lvd2hirvg"; depends=[]; }; -labstatR = derive { name="labstatR"; version="1.0.7"; sha256="1p6xav9cb7yx3n8rkh8xm1jkykf3xw974id49j558hmayq47ad4f"; depends=[]; }; +labstatR = derive { name="labstatR"; version="1.0.8"; sha256="1qs76vhw6ihsriq5v0s980fxbb0pbvgwqm0a97b226cpqqabkpfm"; depends=[]; }; laeken = derive { name="laeken"; version="0.4.6"; sha256="1rhkv1kk508pwln1d325iq4fink2ncssps0ypxi52j9d7wk78la6"; depends=[boot MASS]; }; laercio = derive { name="laercio"; version="1.0-1"; sha256="0la6fxv5k9zq4pyn8dxjiayx3vs9ksm9c6qg4mnyr9vs12z53imm"; depends=[]; }; lakemorpho = derive { name="lakemorpho"; version="1.0"; sha256="0kxd493cccs24qqyw58110d2v5w8560qfnbm6qz7aki0xa7kaqrg"; depends=[geosphere maptools raster rgdal rgeos sp]; }; @@ -4379,9 +4550,10 @@ laser = derive { name="laser"; version="2.4-1"; sha256="1f6j3xdks0w63fqjj9q8ng2m lasso2 = derive { name="lasso2"; version="1.2-19"; sha256="0zkwjsd42a6z4gylq9xbs4z8n1v7ncwvssjnn3h4yz1icjfzzlvk"; depends=[]; }; lassoscore = derive { name="lassoscore"; version="0.6"; sha256="1i3i07da8sw9w47rcflhylz8zxvzkyycbc1a4gf6hbcpp21rqd7d"; depends=[glasso glmnet Matrix]; }; lassoshooting = derive { name="lassoshooting"; version="0.1.5-1"; sha256="0ixjw8akplcfbzwyry9p4bhbcm128yghz2bjf9yr8np6qrn5ym22"; depends=[]; }; +lasvmR = derive { name="lasvmR"; version="0.1.2"; sha256="1yzyfacr47wkpv9bblm7hvx1hgnzbhy1421bpnh95xfxxlzahy5n"; depends=[checkmate Rcpp]; }; latdiag = derive { name="latdiag"; version="0.2-1"; sha256="1xjy6as3wjrl2y1lc5fgrbhqqcvrhdan89mpgvk9cpx71wxv95vc"; depends=[]; }; latentnet = derive { name="latentnet"; version="2.7.1"; sha256="0bjac9cid11pmhmi2gb4h3p4h9m57ngxx7p73a07afmfjk9p7h5m"; depends=[abind coda ergm mvtnorm network sna statnet_common]; }; -latex2exp = derive { name="latex2exp"; version="0.3.2"; sha256="1k5np32a71x1yc363dnvnb960j995j3bji8qvlskkfcnzrd3wckg"; depends=[magrittr stringr]; }; +latex2exp = derive { name="latex2exp"; version="0.3.3"; sha256="1r69c6057i7lq4zrqdz1bwaay77dmzhf5zfvhxmzd1plbjg78297"; depends=[magrittr stringr]; }; lattice = derive { name="lattice"; version="0.20-33"; sha256="0car12x5vl9k180i9pc86lq3cvwqakdpqn3lgdf98k9n2h52cilg"; depends=[]; }; latticeDensity = derive { name="latticeDensity"; version="1.0.7"; sha256="1y33p8hfmpzn8zl4a6zxg1q3zx912nhqlilca6kl5q156zi0sv3d"; depends=[spam spatstat spdep splancs]; }; latticeExtra = derive { name="latticeExtra"; version="0.6-26"; sha256="16x00sg76mga8p5q5ybaxs34q0ibml8wq91822faj5fmg7r1050d"; depends=[lattice RColorBrewer]; }; @@ -4389,7 +4561,7 @@ lava = derive { name="lava"; version="1.4.1"; sha256="1xwyfn31nr8sppxy25a7p8yhf5 lava_tobit = derive { name="lava.tobit"; version="0.4-7"; sha256="1da98d5pndlbbw37k64fmr2mi1hvkhjxsmm3y9p4b772pz9i1pvj"; depends=[lava mvtnorm survival]; }; lavaan = derive { name="lavaan"; version="0.5-18"; sha256="0ih5wvhmxln3w5h7q5w6gsmbs3w8118l9hc2afgsnzpg8a5jy1n3"; depends=[MASS mnormt pbivnorm quadprog]; }; lavaan_survey = derive { name="lavaan.survey"; version="1.1"; sha256="1vscv165kilkc00pgs2s9qn404l3rv45zc9kzmrghxz42jsy04zc"; depends=[lavaan MASS Matrix survey]; }; -lawn = derive { name="lawn"; version="0.1.0"; sha256="0vv2qmz6a692ammh3jxnpq3b669s8cx61krmb97jlwjy2nb6r81i"; depends=[jsonlite magrittr V8]; }; +lawn = derive { name="lawn"; version="0.1.4"; sha256="1qhwi40fpwdhn5zf7ggmqyqapd762zx6ipnzmbasjmxryvyjmh81"; depends=[jsonlite magrittr V8]; }; lawstat = derive { name="lawstat"; version="3.0"; sha256="0398bf4jv0gnq54v6m7zl5sixspnvfwc3x3z492i38l215pc38kx"; depends=[Hmisc Kendall mvtnorm VGAM]; }; lazy = derive { name="lazy"; version="1.2-15"; sha256="1pdqgvn0qpfg5hcg5159ccf5qj2nd1ibai9p85rwjpddfynk6jks"; depends=[]; }; lazyData = derive { name="lazyData"; version="1.0.3"; sha256="1i4jry54id8hhfla77pwk3rj2cci6na36hxj7k35k8lx666fdam2"; depends=[]; }; @@ -4402,8 +4574,11 @@ lbiassurv = derive { name="lbiassurv"; version="1.1"; sha256="1i6l3y4rasqpqka7j3 lcd = derive { name="lcd"; version="0.7-3"; sha256="1jnnw15d4s8yb5z5jnzvmlrxv5x6n3h7wcdiz2nw4vfiqncnpwx4"; depends=[ggm igraph MASS]; }; lcda = derive { name="lcda"; version="0.3"; sha256="1ximsyn6qw2gfn7b1hdpbjs6h6nk7hrignlii0np1lbf0k8l4xxl"; depends=[poLCA]; }; lcmm = derive { name="lcmm"; version="1.7.2"; sha256="1sg5vx3nx8ik5z2c2pi3p9h5b5k0z7m1jc404jkv3gr17nilcp4i"; depends=[survival]; }; +lcopula = derive { name="lcopula"; version="0.205"; sha256="0ni8q5cdzrkcjxjj1z6kyzd0sp592vnrh3yxnwh2vl9wc41v59i9"; depends=[copula pcaPP Rcpp]; }; lctools = derive { name="lctools"; version="0.2-3"; sha256="167905fimgslx9rkvwqfr905cm5w88pzii847g9j0bwfgkm2m4rp"; depends=[reshape weights]; }; lda = derive { name="lda"; version="1.3.2"; sha256="1iizsksp8wz34ji7p2kc6npxz9rzhs6217793nfri6y6mq23vs8z"; depends=[]; }; +ldamatch = derive { name="ldamatch"; version="0.6.3"; sha256="0pq62rsbvhn506n1qz8nvyl0lfkqyl80k6jq2g5c4iqf8vpcjasz"; depends=[data_table entropy foreach iterators iterpc kSamples MASS RUnit]; }; +ldatuning = derive { name="ldatuning"; version="0.1.0"; sha256="04313zyz5mk652hb7vqklg8ibdgf41bcr85whc2rfcxfwq0jpwpi"; depends=[ggplot2 reshape2 Rmpfr scales slam topicmodels]; }; ldbounds = derive { name="ldbounds"; version="1.1-1"; sha256="15ixrq615x64zmi6dryq3ww0dqxd0qf5xx1bs3w934sf99l46bhs"; depends=[lattice]; }; ldlasso = derive { name="ldlasso"; version="3.2"; sha256="0ij68zvgm8dfd2qwx6h6ygndac29qa0ddpf11z959v06n8jsnk11"; depends=[GenABEL quadprog]; }; ldr = derive { name="ldr"; version="1.3.3"; sha256="1c48qm388zlya186qmsbxxdcg1mdv3nc3i96lqb40yhcx2yshbip"; depends=[GrassmannOptim Matrix]; }; @@ -4412,20 +4587,22 @@ leaflet = derive { name="leaflet"; version="1.0.0"; sha256="1s49nk1wzcdim3cqv4lq leafletR = derive { name="leafletR"; version="0.3-3"; sha256="00xdmlv6wc47lzlm43d2klyzcqljsgrfrmd5cv8brkvvcsyj57kq"; depends=[brew jsonlite]; }; leapp = derive { name="leapp"; version="1.2"; sha256="1yiqzmhgl5f3zwpcc5sz3yqrvp8p6r4w2ffdfyirirayqc96ar17"; depends=[corpcor MASS sva]; }; leaps = derive { name="leaps"; version="2.9"; sha256="1ax9v983401hvb6cdswkc1k7j62j8yk6ds22qdj24vdidhdz5979"; depends=[]; }; +learNN = derive { name="learNN"; version="0.2.0"; sha256="0q0j25vi7hrwaf38y10m24czf3rsvj937jvkz3ns12bd8srlflah"; depends=[]; }; learningr = derive { name="learningr"; version="0.29"; sha256="1nr4ydcq2mskv4c0pmf0kxv5wm8pvjqmv19xz5yaq0j834b0n5q7"; depends=[plyr]; }; learnstats = derive { name="learnstats"; version="0.1.1"; sha256="1sa064cr7ykl4s1ssdfmb3v1sjrnkbwdh04hmwwd9b3x0llsi9vv"; depends=[ggplot2 Rcmdr shiny]; }; lefse = derive { name="lefse"; version="0.1"; sha256="1zdmjxr5xa5p3miw79mhsswsh289hgzfmn3mpj1lyzal1qgw1h5m"; depends=[ape fBasics geiger picante SDMTools vegan]; }; leiv = derive { name="leiv"; version="2.0-7"; sha256="15ay50886xx9k298npyksfpva8pck7fhqa40h9n3d7fzvqm5h1jp"; depends=[]; }; -lessR = derive { name="lessR"; version="3.3.3"; sha256="19044vgjhcsgmmxidgbc7r43d7fg4dg5q3qyf3yzza3iy681wgrn"; depends=[car foreign leaps MBESS readxl sas7bdat triangle]; }; +lessR = derive { name="lessR"; version="3.3.4"; sha256="0xjwx2ckj1bs8ir92mmnnqb7ics6s9cb790y0r4yknps554ki6y2"; depends=[car foreign leaps MBESS readxl sas7bdat triangle]; }; lestat = derive { name="lestat"; version="1.8"; sha256="12w3s5yr9lsnjkr3nsay5sm4p241y4xz0s3ir56kxjqw23g6m80v"; depends=[MASS]; }; -letsR = derive { name="letsR"; version="2.1"; sha256="0jgc6k2hbpbr7kl42n01mff7pzjz60zd8mchrfhzgd797pwcqlbq"; depends=[fields geosphere maps maptools raster rgdal sp XML]; }; -lfactors = derive { name="lfactors"; version="0.4.0"; sha256="1f4p5mp6m11njrj421vjl5398laicgyg8m04srshfmpi74hf1nb9"; depends=[]; }; +letsR = derive { name="letsR"; version="2.3"; sha256="0aykl3lmfkcsjhlax2xm1i79jkwcnjs2a50yhcrg5vfvivi90w6n"; depends=[fields geosphere maps maptools raster rgdal rgeos sp XML]; }; +lfactors = derive { name="lfactors"; version="0.5.3"; sha256="0bj67rk7z4is84qd08h1x3b7mna3n5l9qbgpi6gzpppqxc3jd64a"; depends=[]; }; +lfda = derive { name="lfda"; version="1.1.0"; sha256="09a4ccrdcfiv390qkwllkj192lbziv4sb437v2lbh39yn10fi48z"; depends=[plyr rARPACK rgl]; }; lfe = derive { name="lfe"; version="2.3-1709"; sha256="0q6va05n38225a7sbk0ykdrygzjk6js6afm2vyy5fac1hbvihb05"; depends=[Formula Matrix xtable]; }; lfl = derive { name="lfl"; version="1.2"; sha256="0l922sjpdiy4ifhizl1l2azzwg83j8fy8j5bvwx6yd3fvxas51ns"; depends=[e1071 foreach forecast plyr Rcpp tseries zoo]; }; -lfstat = derive { name="lfstat"; version="0.6.1"; sha256="0i3zrinvjxlg9w5zqrv8wzy15vxvi2gw3jrlfs4rddkxnp98ya9d"; depends=[lattice latticeExtra lmom lmomRFA]; }; +lfstat = derive { name="lfstat"; version="0.8.0"; sha256="00vjkn5q4k3bqd1xfvi2s15csc126v4x0y1iiipdvs9pqwy9hc63"; depends=[dygraphs lattice latticeExtra lmom lmomRFA xts zoo]; }; lga = derive { name="lga"; version="1.1-1"; sha256="1nkvar9lmdvsc3c21xmrnpn0haqk03jwvc9zfxvk5nwi4m9457lg"; depends=[boot lattice]; }; -lgarch = derive { name="lgarch"; version="0.5"; sha256="01y5p3w4i1yfxb647pkdazqn9yac1p6jp7rk92ddxnvvjb6fdp59"; depends=[zoo]; }; -lgcp = derive { name="lgcp"; version="1.3-9"; sha256="093rxvb4irmf04nx1j5zrgh8k0jw78zl9qrmkn314vaqyn3b4608"; depends=[fields iterators maptools Matrix ncdf RandomFields raster rgeos rpanel sp spatstat]; }; +lgarch = derive { name="lgarch"; version="0.6-2"; sha256="05xksc4d6dbf5ls4lf2gpk9xyi99fikr7dva88b84rfgads1yhrh"; depends=[zoo]; }; +lgcp = derive { name="lgcp"; version="1.3-11"; sha256="1l9xdxv1pd5v96v64brvqjdh27j98ycl8hrfbglh4pfb7j9k01l3"; depends=[fields iterators maptools Matrix ncdf RandomFields raster rgeos rpanel sp spatstat]; }; lgtdl = derive { name="lgtdl"; version="1.1.3"; sha256="00lffc60aq1qjyy66nygaypdky9rypy607mr8brwimjn8k1f0gx4"; depends=[]; }; lhs = derive { name="lhs"; version="0.10"; sha256="1hc23g04b6nsg8xffkscwsq2mr725r6s296iqll887b3mnm3xaqz"; depends=[]; }; libamtrack = derive { name="libamtrack"; version="0.6.2"; sha256="1wmy3baqbmmzc4w1b3w2z3qvsi61khl6a6rlc22i58gnprmgzrph"; depends=[]; }; @@ -4445,19 +4622,20 @@ linkcomm = derive { name="linkcomm"; version="1.0-11"; sha256="1w5sfmzvrk30fr161 linkim = derive { name="linkim"; version="0.1"; sha256="0yvyid9x59ias8h436a202hd2kmqvn8k1zcrgja2l4z2pzcvfn91"; depends=[]; }; linprog = derive { name="linprog"; version="0.9-2"; sha256="1ki14an0pmhs2mnmfjjvdzd76pshiyvi659zf7hqvqwj0viv4dw9"; depends=[lpSolve]; }; lint = derive { name="lint"; version="0.3"; sha256="0lkrn5nsizyixhdp5njxgrgwmygwr663jxv5k9a22a63x1qbwpiq"; depends=[dostats foreach harvestr plyr stringr]; }; -lintr = derive { name="lintr"; version="0.2.0"; sha256="14jaghvd0kz271j6wl8j0y31h48ajvgzd68drdi6pv9nrxqs046n"; depends=[codetools crayon digest igraph rex stringdist testthat]; }; +lintr = derive { name="lintr"; version="0.3.3"; sha256="04h05y678xx65sd3cx23yzkdmghk47ikg52w4ii110jjq0s53p9d"; depends=[codetools crayon digest httr igraph jsonlite knitr rex rstudioapi stringdist testthat]; }; +lira = derive { name="lira"; version="1.0"; sha256="1272897phwhan8ns7x65m8g333rv43nfypl253rsklah5dh2invg"; depends=[coda rjags]; }; liso = derive { name="liso"; version="0.2"; sha256="072l7ac1fbkh8baiiwx2psiv1sd7h8ggmgk5xkzml069ihhldj5i"; depends=[Iso MASS]; }; lisp = derive { name="lisp"; version="0.1"; sha256="025sq46277q9i21189cbmx5dnrh5wfshc5k6la1wjilhr1iqf6nj"; depends=[]; }; lisrelToR = derive { name="lisrelToR"; version="0.1.4"; sha256="0zicq0z3hhixan1p1apybnf3v5s6v6ysll4pcz8ivygwr2swv3p5"; depends=[]; }; list = derive { name="list"; version="8.0"; sha256="09qpcsygs2clbgd42v6klgh1vjhv64s56ixxqlcpg9v7xqnms56j"; depends=[coda corpcor gamlss_dist magic MASS mvtnorm quadprog sandwich VGAM]; }; -listenv = derive { name="listenv"; version="0.3.0"; sha256="14zi2zs6jxcq0j5knf5nlr06xk7n0vvfgbh2lqdjq0pvjbm8j08b"; depends=[]; }; +listenv = derive { name="listenv"; version="0.4.0"; sha256="1255qjfhrpbg83cz1l5jgivx5jm4nj6zi5fn42dav8bzl999fi08"; depends=[]; }; llama = derive { name="llama"; version="0.8.1"; sha256="0pv411kj4n3pi2yg35jzjd4zfxkqksbp049v6d9xd2q14i9kphv2"; depends=[checkmate ggplot2 mlr parallelMap rJava]; }; lle = derive { name="lle"; version="1.1"; sha256="09wq7mzw48czp5k0b4ij399cflc1jz876fqv0mfvlrydc9igmjhk"; depends=[MASS scatterplot3d snowfall]; }; lllcrc = derive { name="lllcrc"; version="1.2"; sha256="06n1fcd3g3z5rl2cyx8jhyscq9fb52mmh0cxg81cnbmai3sliccb"; depends=[combinat data_table plyr VGAM]; }; lm_beta = derive { name="lm.beta"; version="1.5-1"; sha256="0p224y9pm72brbcq8y1agkcwc82j7clsnszqzl1qsc0gw0bx9id3"; depends=[]; }; lm_br = derive { name="lm.br"; version="2.7"; sha256="09b9f6c7gkkmznypr74f4fdhkkdw7fzpa9gdyx2cl7pj6sg4fvjy"; depends=[Rcpp]; }; lmSupport = derive { name="lmSupport"; version="2.9.2"; sha256="0mdl5ih7zzxynawxx4prh08nq451x74bfw4ga7cygl2ahi6vqq50"; depends=[AICcmodavg car gvlma lme4 pbkrtest psych]; }; -lme4 = derive { name="lme4"; version="1.1-8"; sha256="0ag9rhdb7q3rsmd8qc7iq88cc0lbmkng2q0pfvdp9cg6lczi0zr0"; depends=[lattice MASS Matrix minqa nlme nloptr Rcpp RcppEigen]; }; +lme4 = derive { name="lme4"; version="1.1-9"; sha256="12cvp1kl8bgcwa0hlic0clij4gg941hvdhy2b9k0vdsykf2r9qh2"; depends=[lattice MASS Matrix minqa nlme nloptr Rcpp RcppEigen]; }; lmeNB = derive { name="lmeNB"; version="1.3"; sha256="03khn9wgjbz34sx0p5b9wd3mhbknw8qyvyd5pvllmjipnir63d3q"; depends=[lmeNBBayes numDeriv statmod]; }; lmeNBBayes = derive { name="lmeNBBayes"; version="1.3.1"; sha256="13shfsh9x6151xy8gicb25sind90imrwclnmfj96b76p5dvhzabm"; depends=[]; }; lmeSplines = derive { name="lmeSplines"; version="1.1-10"; sha256="0fy6hspk7rqqkzv0czvvs8r4ishvs7zsf4ykvia65nj26w7yhyia"; depends=[nlme]; }; @@ -4505,16 +4683,17 @@ lomb = derive { name="lomb"; version="1.0"; sha256="06lbk7s1ilqx6xsgj628wzdwmnvb longCatEDA = derive { name="longCatEDA"; version="0.17"; sha256="1yb0117ycj4079590mrx3lg9m5k7xd1dhb779r3rmnww94pmvja9"; depends=[]; }; longclust = derive { name="longclust"; version="1.2"; sha256="1m270fyvfz0w19p9xdv7ihy19nhrhjq2akymbp774073crznmmw0"; depends=[]; }; longitudinal = derive { name="longitudinal"; version="1.1.12"; sha256="1d83ws28nxi3kw5lgd5n5y7865djq7ky72fw3ddi1fkkhg1r9y6l"; depends=[corpcor]; }; -longitudinalData = derive { name="longitudinalData"; version="2.3"; sha256="0ld2saga04if2zp3ylz720q8451f7a7aiva5hpj471wxd0948592"; depends=[class clv misc3d rgl]; }; +longitudinalData = derive { name="longitudinalData"; version="2.4"; sha256="16k58i9wyizv052l2rza72qk2zgn199hy1krv567cny732s5n9x4"; depends=[class clv misc3d rgl]; }; longmemo = derive { name="longmemo"; version="1.0-0"; sha256="1jnck5nfwxywj74awl4s9i9jn431655mmi85g0nfbg4y71aprzdc"; depends=[]; }; longpower = derive { name="longpower"; version="1.0-11"; sha256="1l1icy653d67wlvigcya8glhqh2746cr1vh1khx36qjhfjz6wgyf"; depends=[lme4 Matrix nlme]; }; -longurl = derive { name="longurl"; version="0.1.0"; sha256="1iz25m583gmzl8rkrrikydm3a8g67whzxp9lwysrjpnpqsly82vz"; depends=[dplyr httr pbapply]; }; -loo = derive { name="loo"; version="0.1.2"; sha256="0gjawzfgv11mzdr3vfg955bxxd56z31jl4pysh3ksihafhvk04y7"; depends=[matrixStats]; }; +longurl = derive { name="longurl"; version="0.1.1"; sha256="06xyxn641nsw3zl2mllsvm1r4g82ddnc3vvscp6bdw8l7a13w4a5"; depends=[dplyr httr pbapply]; }; +loo = derive { name="loo"; version="0.1.3"; sha256="0dgxzzy8m3jfb8jz3vqbmz8701nqsmhc40aqzcfpv5zndjhz6ya5"; depends=[matrixStats]; }; +lookupTable = derive { name="lookupTable"; version="0.1"; sha256="0ipy0glrad2gfr75kd8p3999xnfw4pgpbg6p064qa8ljqg0n1s49"; depends=[data_table dplyr]; }; loop = derive { name="loop"; version="1.1"; sha256="1gr257fm92rfh1sdhsb4hy0fzwjkwvwm3v85302gzn02f86qr5dm"; depends=[MASS]; }; loopr = derive { name="loopr"; version="1.0.1"; sha256="1qzfjv15ymk8mnvb556g2bfk64jpl0qcvh4bm3wihplr1whrwq6y"; depends=[dplyr lazyeval magrittr plyr R6]; }; -lordif = derive { name="lordif"; version="0.2-2"; sha256="0898k5w9wky318k8x0zknjqdzdify0yyrnb1506j341l4n1bm04s"; depends=[Hmisc ltm MASS msm mvtnorm polycor rms sfsmisc]; }; +lordif = derive { name="lordif"; version="0.3-2"; sha256="1nvb2kv0b7h4nz90wpijc0458mgxzdjzxn3w5x92bq174rg3r51m"; depends=[mirt rms]; }; lorec = derive { name="lorec"; version="0.6.1"; sha256="0mgypd8awixh1lzbh5559br4k7vi3pfmwniqhgh68wc06sc6bn65"; depends=[]; }; -lpSolve = derive { name="lpSolve"; version="5.6.11"; sha256="0mgpns9wflqaz9ynwxwkvmc1694yhf275wgrqfjfy3qxz1hxq7s0"; depends=[]; }; +lpSolve = derive { name="lpSolve"; version="5.6.13"; sha256="13a9ry8xf5j1f2j6imqrxdgxqz3nqp9sj9b4ivyx9sid459irm6m"; depends=[]; }; lpSolveAPI = derive { name="lpSolveAPI"; version="5.5.2.0-14"; sha256="1ffmb9xv6m25ii4n7v576g8xw31qlsxd99ka8cjdhqs7fbr4ng5x"; depends=[]; }; lpbrim = derive { name="lpbrim"; version="1.0.0"; sha256="1cbkzl23vgs9hf83ggkcnkmxvvj8867k5b9vhfdrznpqyqv1f2gp"; depends=[Matrix plyr RColorBrewer]; }; lpc = derive { name="lpc"; version="1.0.2"; sha256="1r6ynkhqjic1m7fqrqsp7f8rpxqih5idn4j96fqrdj8nj01znv29"; depends=[]; }; @@ -4523,28 +4702,30 @@ lpme = derive { name="lpme"; version="1.0.1"; sha256="0f0xphlxl0ma3s2miadl74cb1l lpmodeler = derive { name="lpmodeler"; version="0.2-1"; sha256="17k67l03dkjx61p4hwswghjm6awk0zx173x9xafxrfd8jrgsf6kf"; depends=[slam]; }; lpridge = derive { name="lpridge"; version="1.0-7"; sha256="0nkl70fwzra308bzlhjfpkxr8hpd8v1xdnah7nscxa10qlisgr2k"; depends=[]; }; lqa = derive { name="lqa"; version="1.0-3"; sha256="141r2cd9kybi6n9jbdsvhza8jdxxqch4z3qizvpazjy8qifng29q"; depends=[]; }; -lqmm = derive { name="lqmm"; version="1.5.1"; sha256="1myv2v2059vlni1npxyv6ii846aiqz1mvyz9r9n5vpzgz92abizi"; depends=[nlme SparseGrid]; }; +lqmm = derive { name="lqmm"; version="1.5.2"; sha256="155nqxbc78kls5y5f1890v30djsm2agb2k5i6znn6a61z6a5mn07"; depends=[nlme SparseGrid]; }; +lrgs = derive { name="lrgs"; version="0.4.2"; sha256="04blq49sxc0shny0yfv19az66k8xb8bwdqznqajzr3cbsnpvh5bk"; depends=[mvtnorm]; }; lrmest = derive { name="lrmest"; version="1.0"; sha256="1gdj8pmmzvs1li05pwhad63blhibq45xd1acajxsx06k7k21ajs7"; depends=[MASS]; }; lsa = derive { name="lsa"; version="0.73.1"; sha256="1af8s32hkri1hpngl9skd6s5x6vb8nqzgnkv0s38yvgsja4xm1g5"; depends=[SnowballC]; }; -lsbclust = derive { name="lsbclust"; version="1.0.2"; sha256="03vaf9l0fy3pdr3cqb937nw8s7ky25njc3fnl4hdpc8rj7m44hwf"; depends=[clue ggplot2 gridExtra plyr Rcpp reshape2]; }; +lsbclust = derive { name="lsbclust"; version="1.0.3"; sha256="09f43vc1cv9xgf6csc01rlnac62wq0d3q7b1qrbjm5a4g9spknkn"; depends=[clue ggplot2 gridExtra plyr Rcpp reshape2]; }; lsdv = derive { name="lsdv"; version="1.1"; sha256="0rl1xszr9r8v71j98gjpav30n2ncsci19hjlc9flzs1s20sb1xpr"; depends=[]; }; -lsgl = derive { name="lsgl"; version="1.0.123.1"; sha256="10q3f56yjgs3kvyk7b7d1xi06sa16pv9y3c6lsp1461whqvinpj4"; depends=[BH Matrix Rcpp RcppArmadillo RcppProgress sglOptim]; }; +lsei = derive { name="lsei"; version="1.1-0"; sha256="1zgqq32qipzbqac1lf8ijqhsw9ak0a4mby2bf4fv5f71gl5slg79"; depends=[]; }; +lsgl = derive { name="lsgl"; version="1.2.0"; sha256="18dmm6slf0ilikz9hr3j8p554h5w9jaypfdmva7d2s0mhlv6nx5y"; depends=[BH Matrix Rcpp RcppArmadillo RcppProgress sglOptim]; }; lshorth = derive { name="lshorth"; version="0.1-6"; sha256="0nbjakx0zx4fg09fv26pr9dlrbvb7ybi6swg84m2kwjky8399vvx"; depends=[]; }; lsl = derive { name="lsl"; version="0.5.0"; sha256="1656bv7j1312m2yq9q7dvxqh4z9i9j50pl07spfa6z5waiy3xda6"; depends=[ggplot2 reshape2]; }; -lsmeans = derive { name="lsmeans"; version="2.19"; sha256="1cnzbk25vy1a3arixhcp45fdlgrskpkmf3gd839vmiis97x2a7ji"; depends=[coda estimability multcomp mvtnorm nlme plyr]; }; +lsmeans = derive { name="lsmeans"; version="2.20-2"; sha256="1cw64snn9jhk7mmfjsshwq6bq0a90sg2ib3wrxzrfdjxfpb28yb5"; depends=[coda estimability multcomp mvtnorm nlme plyr]; }; lspls = derive { name="lspls"; version="0.2-1"; sha256="1g27fqhnx9db0zrxbhqr76agvxy8a5fx1bfy58j2ni76pki1y4rl"; depends=[pls]; }; lsr = derive { name="lsr"; version="0.5"; sha256="0q385a3q19i8462lm9fx2bw779n4n8azra5ydrzw59zilprhn03f"; depends=[]; }; lss = derive { name="lss"; version="0.52"; sha256="1fvs8p9rhx81xfn450smnd0i1ym06ar6nwwcpl74a66pfi9a5sbp"; depends=[quantreg]; }; ltbayes = derive { name="ltbayes"; version="0.3"; sha256="1b35bwli08yzgv3idg86wz8fzpx7r5sx0ryr950rdh0n2jdml09q"; depends=[mcmc MHadaptive numDeriv]; }; ltm = derive { name="ltm"; version="1.0-0"; sha256="1igkgb0jy3mzlnp9s6avhcpplwijz5g3x26a3lavyy3d9fjpmfpa"; depends=[MASS msm polycor]; }; ltmle = derive { name="ltmle"; version="0.9-6"; sha256="0q65ha7j3q9myhsafcmjwyxjf486xw4c3d17gpdnsvq4zqgfsy16"; depends=[Matrix]; }; -ltsa = derive { name="ltsa"; version="1.4.4"; sha256="06db0d4j0kqp4q6rpa3sawcsm5rfgdhzl8fl7cxivjbbyrfnszqp"; depends=[]; }; +ltsa = derive { name="ltsa"; version="1.4.5"; sha256="1kdc7xs0y3r61fhc2yzx4kkijcbf9f5jhnf9grlmlhbiqnhrlzdb"; depends=[]; }; ltsbase = derive { name="ltsbase"; version="1.0.1"; sha256="16p5ln9ak3h7h0icv5jfi0a3fbw5wdqs3si69sjbn8f5qs2hz7yp"; depends=[MASS robustbase]; }; -ltsk = derive { name="ltsk"; version="1.0.3"; sha256="17l4mwggd4s39l6x1b6gvwgd6gjl0h37wfis1i6l9k6hiaqhb6vr"; depends=[fields]; }; +ltsk = derive { name="ltsk"; version="1.0.4"; sha256="1p026ryq31iw7d8mbi4m2q43g5frj47387w8g46j50bcv11hh2zm"; depends=[fields gstat sp]; }; lubridate = derive { name="lubridate"; version="1.3.3"; sha256="1f07z3f90vbghsarwjzn2nj6qz8qyfkqalszx8cb5kliijdkwy8z"; depends=[memoise plyr stringr]; }; luca = derive { name="luca"; version="1.0-5"; sha256="1jiqwibkrgga4ahz0qgpfkvrsxjqc55i2nwnm60xddb8hpb6a6qx"; depends=[genetics survival]; }; lucid = derive { name="lucid"; version="1.3"; sha256="018vp4xibxr7aanffcvhmppsh7vjsjrqqc41iavyasjbamj3hyck"; depends=[nlme]; }; -lulcc = derive { name="lulcc"; version="1.0.0"; sha256="0a7j08211831hddnngm83lz3a8gr2bq5azadgsdv7cwabg79msk2"; depends=[lattice raster rasterVis ROCR]; }; +lulcc = derive { name="lulcc"; version="1.0.1"; sha256="1xq4rjsds9vwj4prkjxfcp9sv53ha9pj65ns0frpbh8grvrjwimv"; depends=[lattice raster rasterVis ROCR]; }; lunar = derive { name="lunar"; version="0.1-04"; sha256="0nkzy6sf40hxkvsnkzmqxk4sfb3nk7ay4rjdnwf2zym30qax74kk"; depends=[]; }; lvm4net = derive { name="lvm4net"; version="0.2"; sha256="0al0answp3rngq69bl3ch6ylil22wdp1c047yi5gbga853p7db0c"; depends=[ellipse ergm igraph MASS network]; }; lxb = derive { name="lxb"; version="1.3"; sha256="0mvjk0s9bzvznjy0cxjsqv28f6jjzvr713b2346ym4cm0y4l3mir"; depends=[]; }; @@ -4561,7 +4742,7 @@ maRketSim = derive { name="maRketSim"; version="0.9.2"; sha256="1cq17zjwyf4i5lcq maSAE = derive { name="maSAE"; version="0.1-3"; sha256="1im837kdmpgk1073iqgqz194b1i005i88w7wl50hdgw07hizlk18"; depends=[]; }; maboost = derive { name="maboost"; version="1.0-0"; sha256="18d36cgvn8p75nidfr6al458jbzwc1i7x77y1ks50y9phrz3wf65"; depends=[C50 rpart]; }; mada = derive { name="mada"; version="0.5.7"; sha256="0a2m1rb4d143v9732392xzvbg6x1k3l0g3zscgbx64m21kxshmgb"; depends=[ellipse mvmeta mvtnorm]; }; -mads = derive { name="mads"; version="0.1.2"; sha256="1hbanfa1wnfvfs0g8dcf5z4439v0pp3rqhxahiis03jlfxzgd841"; depends=[mrds]; }; +mads = derive { name="mads"; version="0.1.3"; sha256="1nq17r9k2wg9v5nis0c0z4qf5pcmw93smxf7lra7vsiqgzgzhaad"; depends=[mrds]; }; madsim = derive { name="madsim"; version="1.1"; sha256="1d9mv769zia43krdfl43hp22cp5mdi3ycwj3kxyfcjrg23bjnyc0"; depends=[]; }; magic = derive { name="magic"; version="1.5-6"; sha256="1399w1zhz79nj8cdhslybncd9h6rylfhb548nv22ip0dxxdkyv0v"; depends=[abind]; }; magicaxis = derive { name="magicaxis"; version="1.9.4"; sha256="0kgr29q4v9aq10l6zkddgv93zl66yzwxx9jsnskkx3r0kk3rlxa3"; depends=[MASS plotrix sm]; }; @@ -4571,32 +4752,33 @@ mailR = derive { name="mailR"; version="0.4.1"; sha256="1bfh3fxdqx9f9y3fgklxyslp makeProject = derive { name="makeProject"; version="1.0"; sha256="09q8xa5j4s5spgzzr3y06l3xis93lqxlx0q66s2nczrhd8nrz3ca"; depends=[]; }; mallet = derive { name="mallet"; version="1.0"; sha256="06rksf5nvxp4sizgya7h4sb6fgw3yz212a01dqmc9p5a5wqi76x0"; depends=[rJava]; }; managelocalrepo = derive { name="managelocalrepo"; version="0.1.5"; sha256="180b7ikas1kb7phm4l2z1d8wi45wi0qyz2c8rl8ml3f71b4mlzgc"; depends=[assertthat stringr]; }; -manifestoR = derive { name="manifestoR"; version="1.0-4"; sha256="0c908d35hja6fb0wscgpr156nqyw9xj2al3rw6w4dxyy84imdzpf"; depends=[dplyr functional httr jsonlite NLP psych tm zoo]; }; +manifestoR = derive { name="manifestoR"; version="1.0-5"; sha256="1v5gj01l4anrsbv9j8b0qbzkwvj7mb7i7jdav0czabfdh7vdqwf0"; depends=[dplyr functional httr jsonlite NLP psych tm zoo]; }; manipulate = derive { name="manipulate"; version="1.0.1"; sha256="1klknqdfppi5lf6zbda3r2aqzsghabcsaxmvd3vw3cy3aa984zky"; depends=[]; }; mapDK = derive { name="mapDK"; version="0.3.0"; sha256="03ksg47caxx3y97p3nsflwpc7i788jw874cixr9gjz756avwkmwp"; depends=[ggplot2 stringi]; }; mapStats = derive { name="mapStats"; version="2.4"; sha256="18pp1sb9p4p300ffvmzjrg5bv1i7f78mhpggq83myc26c3a593na"; depends=[classInt colorspace Hmisc lattice maptools RColorBrewer reshape2 sp survey]; }; mapdata = derive { name="mapdata"; version="2.2-5"; sha256="0pl4k7lxmyg96h2i8mwdqgwq5ff1v08g54dig5zmqn9wi71y6nl9"; depends=[maps]; }; mapfit = derive { name="mapfit"; version="0.9.7"; sha256="16a318bz3my27qj0xzf40g0q4bh9alg2bm6c8jbwgswf1paq1xmx"; depends=[Matrix]; }; -mapmisc = derive { name="mapmisc"; version="1.3.2"; sha256="1da2mqjwr4fb1gapd575fg2yjidddqqkra2ki9iqlkanh9jn4iwi"; depends=[raster sp]; }; +mapmisc = derive { name="mapmisc"; version="1.4.0"; sha256="1lk1zzz00aaxxdgz6k4zci9raaa264z13bs4sdsq42fg91d8j86y"; depends=[raster sp]; }; mapplots = derive { name="mapplots"; version="1.5"; sha256="09sk78a0p8hlwhk3w2dwvpb0a6p7fqdxyskvz32p1lcav7y3jfrb"; depends=[]; }; mapproj = derive { name="mapproj"; version="1.2-4"; sha256="1sywwzdikpnkzygb2jx9c67sgrykgbkm39dkf45clz3yylsib2ng"; depends=[maps]; }; -maps = derive { name="maps"; version="2.3-11"; sha256="0752dh646bngw726941p0xd3p9chxlg4mdyns3jc23h68w7da0kc"; depends=[]; }; -maptools = derive { name="maptools"; version="0.8-36"; sha256="0064b9qqv7241298dswv5kkkqf6y2iyn7dhjcyvfkqn4kvc9g2m8"; depends=[foreign lattice sp]; }; +maps = derive { name="maps"; version="3.0.0-1"; sha256="0h7kbj58jpj4r59yr5zcqlmwjbc3jc63fznl7f3zbxnvdcdxj9nh"; depends=[]; }; +maptools = derive { name="maptools"; version="0.8-37"; sha256="08vhd4af5955p44x1g0csnz090nhmac8sajyjcwqink0x05fbg1f"; depends=[foreign lattice sp]; }; maptpx = derive { name="maptpx"; version="1.9-2"; sha256="1i5djmjg0lsi7xlkbvn90njq1lbyi74zwc2nldisay4xsbgqg7fj"; depends=[slam]; }; maptree = derive { name="maptree"; version="1.4-7"; sha256="1k7v84wvy6wz6g0dyiwvd3lvf78rlfidk60ll4fz7chvr2nrqdp4"; depends=[cluster rpart]; }; mar1s = derive { name="mar1s"; version="2.1"; sha256="0psjva7nsgar5sj03adjx44pw0sdqnsd96m4g6k8d76pv30m1g7l"; depends=[cmrutils fda zoo]; }; -marelac = derive { name="marelac"; version="2.1.4"; sha256="0mm1rmaxrbhk6r9z62ns832p2q9fajq0jpvd3if3rg2wgdbb1505"; depends=[seacarb shape]; }; +marelac = derive { name="marelac"; version="2.1.5"; sha256="1lzgcl6y4dmy3radzr49smy0cwdbd930dvah9rs50x637yqc7p14"; depends=[seacarb shape]; }; marg = derive { name="marg"; version="1.2-2"; sha256="0j08zzcrj8nqsargi6xi50gy9pl4smmsp4b7ywlga7r1ga38g82r"; depends=[statmod survival]; }; markdown = derive { name="markdown"; version="0.7.7"; sha256="00j1hlib3il50azs2vlcyhi0bjpx1r50mxr9w9dl5g1bwjjc71hb"; depends=[mime]; }; -marked = derive { name="marked"; version="1.1.8"; sha256="1xsg0iy8mcy9b98bxmjr3y413xwblbhks3fcydbvjnry0k03gd5i"; depends=[coda expm ggplot2 lme4 Matrix numDeriv optimx plyr R2admb Rcpp truncnorm]; }; -markophylo = derive { name="markophylo"; version="1.0.1"; sha256="17lzmjb34ky0y5hjijfxhxnry0b3vrmfs0q9iyd293wngmjs6r0s"; depends=[Rcpp RcppArmadillo]; }; -markovchain = derive { name="markovchain"; version="0.4"; sha256="0pg51inyp9b62dnw3855hvvcn1svapdxc5wfgf2zz9ysyzvcipfy"; depends=[expm igraph matlab Matrix Rcpp RcppArmadillo RcppParallel]; }; +marked = derive { name="marked"; version="1.1.10"; sha256="0a5b3nx7fwk0lavjpdlr9c1hm0zl215b2f2mi6kx00irys6h9nyh"; depends=[coda expm ggplot2 lme4 Matrix numDeriv optimx R2admb Rcpp truncnorm]; }; +marketeR = derive { name="marketeR"; version="0.1.0"; sha256="1c9jsy58zx0gmr8k06fsch2cwh36b7h1rc5fyix2df2g354hs2x5"; depends=[dplyr forecast ggplot2 ggthemes knitr plyr Rfacebook RGoogleAnalytics rmarkdown scales shiny xlsx zoo]; }; +markophylo = derive { name="markophylo"; version="1.0.2"; sha256="0d0lpvxycvnimr4g6p8m1qns3l8c97bq82xbwbvb2f27cn876b96"; depends=[ape numDeriv phangorn Rcpp RcppArmadillo stringr]; }; +markovchain = derive { name="markovchain"; version="0.4.2"; sha256="08afjyz5zmp5hkw0678jp7dj536vza74nv8np6qrjw3zmi95k6n9"; depends=[expm igraph matlab Matrix Rcpp RcppArmadillo RcppParallel]; }; marl = derive { name="marl"; version="1.0"; sha256="0rndnf3rbcibv3gsrw1kfp5zhg37cw9wwlz0b7dbwprd0m71l3pm"; depends=[]; }; marmap = derive { name="marmap"; version="0.9.2"; sha256="1csi6v6z2p3nmyqwy8bmbj036693rzmxrc317g0a45gsqxggp3n4"; depends=[adehabitatMA DBI gdistance geosphere ggplot2 ncdf plotrix raster reshape2 RSQLite shape sp]; }; marqLevAlg = derive { name="marqLevAlg"; version="1.1"; sha256="1wmqi68g0flrlmj87vwgvyxap0miss0n42qiiw7ypyj4jw9kwm8j"; depends=[]; }; matR = derive { name="matR"; version="0.9"; sha256="0lih3g2z6rxykprl3s529xcf466bpzpsv4l20dkgx1fgfslfcl2p"; depends=[BIOM_utils MGRASTer]; }; matchingMarkets = derive { name="matchingMarkets"; version="0.1-5"; sha256="09nybpws50mpbnbsv8796hdxy894fld89xjs4q1yx0km180yrhww"; depends=[lpSolve partitions Rcpp RcppArmadillo RcppProgress]; }; -matchingR = derive { name="matchingR"; version="1.0.1"; sha256="0qqk2zcyj0m3r9q0lclb39gdrjqqjlaxvk3cxpfah7hxhhkrk4mc"; depends=[Rcpp RcppArmadillo]; }; +matchingR = derive { name="matchingR"; version="1.1.1"; sha256="1axja2jbimfsk9qlbd8isw53phrzzhq5767m59svlh2hs9yafiqh"; depends=[Rcpp RcppArmadillo]; }; mathgraph = derive { name="mathgraph"; version="0.9-11"; sha256="0xikgzn24p0qqlrmaydmjk5yz5pq2rilsvpx86n3p2k2fc3wpwjy"; depends=[]; }; matie = derive { name="matie"; version="1.2"; sha256="1ymx49cyvz63imqw5n48grilphiqvvdirwsrv82p7jgxdyav2xv0"; depends=[cba dfoptim gplots igraph mvtnorm seriation]; }; matlab = derive { name="matlab"; version="1.0.2"; sha256="0m21k2vzbc5d3c93p2hk4208xyd2av2slg55q5j1ibjidiryqgd2"; depends=[]; }; @@ -4612,13 +4794,14 @@ mbbefd = derive { name="mbbefd"; version="0.7"; sha256="0l8dq1j1ky83jl1cka0mrjcf mbest = derive { name="mbest"; version="0.3"; sha256="0j6v6c1s11gvzwcnj5dnd9anj11hpmy7c83c8ribb7lx75mwj4k4"; depends=[lme4]; }; mblm = derive { name="mblm"; version="0.12"; sha256="17h65bapvz89g5in3gkxq541bxgpj9pciz6i5hzhqn0bdbsb3k6r"; depends=[]; }; mbmdr = derive { name="mbmdr"; version="2.6"; sha256="0ss5w66hcgd8v8j9bbbp12a720sblhr2hy9kidqfr8hgjaqlch86"; depends=[logistf]; }; -mboost = derive { name="mboost"; version="2.4-2"; sha256="104qs8hbsm4ps5ybzxrdz6lz0lqn925xy4k3m4rmbk4r62wj9v61"; depends=[lattice Matrix nnls quadprog stabs survival]; }; +mboost = derive { name="mboost"; version="2.5-0"; sha256="0l9vbzfwpxh2pi815pnb2xskxwfrbfhmq1bqkgmnvmphq0qv73ql"; depends=[lattice Matrix nnls quadprog stabs survival]; }; mc2d = derive { name="mc2d"; version="0.1-15"; sha256="1kp2l1gvw3caplq9916s1dmpmfp6fb2xscys9gj6dykl6gi4h4hb"; depends=[mvtnorm]; }; mcGlobaloptim = derive { name="mcGlobaloptim"; version="0.1"; sha256="1p8841y9a4yq51prv6iirgw9ln8jznx8nk547sc5xlznksjy1g9n"; depends=[randtoolbox snow]; }; mcIRT = derive { name="mcIRT"; version="0.41"; sha256="0pbwydl4zjzwdlpzwpqm4xhq716zgq9s7bvcbrqp6q0jkba9zjnw"; depends=[Rcpp RcppArmadillo]; }; mcbiopi = derive { name="mcbiopi"; version="1.1.2"; sha256="12h4bv3hx1m6bsqdxj5n3b5gh98ms508am8pigz7ckmv0xkyhx85"; depends=[]; }; mcc = derive { name="mcc"; version="1.0"; sha256="0p661a870bvh3xhcahqqq85azn9rjl3vacjy96jsdn86irj4s0vi"; depends=[]; }; mcclust = derive { name="mcclust"; version="1.0"; sha256="00qprmsjwbn2d0jl7p9mz8pv7k8ld3mzk862pr1grigk0lqwhx06"; depends=[lpSolve]; }; +mcemGLM = derive { name="mcemGLM"; version="1.0"; sha256="0w2qhl6f33gkh59pldigs0caa0jzcakalaw00wl5f5wir78c8km2"; depends=[Rcpp RcppArmadillo trust]; }; mcga = derive { name="mcga"; version="2.0.9"; sha256="197yldx03c634f3x0mpxxvqrys93n7z7n3x0alvqa42z3vdkrz7b"; depends=[]; }; mcgibbsit = derive { name="mcgibbsit"; version="1.1.0"; sha256="09ydcbjz3abmh46966v01dh26fy79dfklk3zjf262zp3c62ld9yf"; depends=[coda]; }; mcheatmaps = derive { name="mcheatmaps"; version="1.0.0"; sha256="1gglm32xpmim38m7fziczgqfbpcq2899lxardsrzg6j1vhmf765y"; depends=[gridBase]; }; @@ -4627,7 +4810,7 @@ mclogit = derive { name="mclogit"; version="0.3-1"; sha256="0zyms6v9qjh6a5ccahfa mclust = derive { name="mclust"; version="5.0.2"; sha256="1ilhgiigrnvw5l85vk54xdvlirqhp5wb404i0mh2jyzccr9pjml5"; depends=[]; }; mcmc = derive { name="mcmc"; version="0.9-4"; sha256="1ws80j64df8inzz0a6k8r51wf44zwjnpvp591pxwah2jbi6j6kna"; depends=[]; }; mcmcplots = derive { name="mcmcplots"; version="0.4.2"; sha256="0ws2la6ln016l98c1rzf137jzhzx82l4c49p19yihrmrpfrhr26l"; depends=[coda colorspace denstrip sfsmisc]; }; -mcmcse = derive { name="mcmcse"; version="1.1-1"; sha256="0swbdp444ixg0lda8f0az612573md53vj4xg156zdb612gf8x4dv"; depends=[ellipse Rcpp RcppArmadillo]; }; +mcmcse = derive { name="mcmcse"; version="1.1-2"; sha256="1nvq1phv9ldp928yh7n97lsak26ycj717sic1cc1s46wv2rhjx0h"; depends=[ellipse Rcpp RcppArmadillo]; }; mco = derive { name="mco"; version="1.0-15.1"; sha256="14y10zprpiflqsv5c979fsc2brgxay69kcwm7y7s3gziq74fn4rw"; depends=[]; }; mcprofile = derive { name="mcprofile"; version="0.2-1"; sha256="0q1d236mcmgp5p5gl474myp1zz8cbxffd0kvsd8338jijalj05p0"; depends=[ggplot2 mvtnorm quadprog]; }; mcr = derive { name="mcr"; version="1.2.1"; sha256="0237w41xichd418ax9xviq4wxbcc6c0cgr5gvzkca67nnqgc4jaz"; depends=[]; }; @@ -4636,12 +4819,12 @@ mda = derive { name="mda"; version="0.4-7"; sha256="1hjmjrdr6zfccsd4xln1jvkkvk25 mdatools = derive { name="mdatools"; version="0.6.0"; sha256="13pfzr3lvqifln9lzdd0dpnygdibxp9ka7zwfisxjrw21m8mhmm3"; depends=[]; }; mded = derive { name="mded"; version="0.1-2"; sha256="1j8fcz5yc70p9qd9l010xj1b625scdps8z1pqh75b45p2hiqbhlc"; depends=[]; }; mdscore = derive { name="mdscore"; version="0.1-2"; sha256="1g473rwffkb2x6y6wcm98i6xr5dhz11ypnbrvhb2klbvi81jj511"; depends=[MASS]; }; -mdsdt = derive { name="mdsdt"; version="1.0"; sha256="0ngf2p6lm32124qyfh18zlgf0dipj3njn6d0m8f192563kp50q0p"; depends=[ellipse mnormt polycor]; }; +mdsdt = derive { name="mdsdt"; version="1.1"; sha256="1c0fsj5hg1l1yh8a1fhvmmlfnhbxwmpqx19qr1mk80r52hz9dnlq"; depends=[ellipse mnormt polycor]; }; measuRing = derive { name="measuRing"; version="0.3"; sha256="16lgvk9lm0vjy50das0qq0h0z683hh94spjcdmkljmxxzwmzfl4b"; depends=[pastecs png tiff]; }; meboot = derive { name="meboot"; version="1.4-6"; sha256="17wjvc375vnya1lhkj10nsn68k1j3zy036031qca3wxx6wqw9kzx"; depends=[dynlm nlme]; }; medSTC = derive { name="medSTC"; version="1.0.0"; sha256="1f7w6jbxairqvghr5b7vgdllg3ian16a1fgi7vqlq0mhy2j6phan"; depends=[]; }; mederrRank = derive { name="mederrRank"; version="0.0.8"; sha256="1fvvik3bhjm6c0mhi2ma915986k2nj3lr2839k5hfrr7dg3lw3f4"; depends=[BB numDeriv]; }; -medflex = derive { name="medflex"; version="0.5-1"; sha256="0ljqg7bf2zicyc1qbr5d6lvsdppilmsqv6blrdg2vf1zyz3xyfxx"; depends=[boot Matrix multcomp sandwich]; }; +medflex = derive { name="medflex"; version="0.6-0"; sha256="1qwjs418i2wxmszgax4l859ihk2avlxwm5w0a772zi6gj0kqwk3d"; depends=[boot car Matrix multcomp sandwich]; }; mediation = derive { name="mediation"; version="4.4.5"; sha256="0jq0gg5ydqvy0vv8m7xk609ljw7p31jppgwgin3y3mvd32wapgk3"; depends=[Hmisc lme4 lpSolve MASS Matrix mvtnorm sandwich]; }; medicalrisk = derive { name="medicalrisk"; version="1.1"; sha256="1fb8zp426zcqsnb35sgywnz44lpssa1acfa2aha9bnvyazif3s90"; depends=[hash plyr reshape2]; }; mefa = derive { name="mefa"; version="3.2-5"; sha256="037vpnwclyj6xgycznh6g6qlirlgy3sjnkjqb1046q80b5ywv2ni"; depends=[]; }; @@ -4653,8 +4836,10 @@ memgene = derive { name="memgene"; version="1.0"; sha256="00b1mi2hvzzps542mh2p96 memisc = derive { name="memisc"; version="0.97"; sha256="069siqkw7ll9n1crsl3yjhybwz0w52576q504cylpvlxx3jm9hfs"; depends=[lattice MASS]; }; memoise = derive { name="memoise"; version="0.2.1"; sha256="19wm4b3kq6xva43kga3xydnl7ybl5mq7b4y2fczgzzjz63jd75y4"; depends=[digest]; }; memuse = derive { name="memuse"; version="2.5"; sha256="1a34803k41644yw1h3msywslsfjvnxi5c9yjw0b73znzy76wh6wv"; depends=[]; }; +merTools = derive { name="merTools"; version="0.1.0"; sha256="0dxvbmgjirc29qmn4c305idacm09pim88j7aajh14535wpd7by6c"; depends=[abind arm DT ggplot2 lme4 mvtnorm plyr shiny]; }; metRology = derive { name="metRology"; version="0.9-17"; sha256="1g4gv3mpii71i6imfwqg9d5iwfx03bq4lizzhx7dy39b2mj7jd4q"; depends=[MASS numDeriv]; }; meta = derive { name="meta"; version="4.3-0"; sha256="1dxgixvnpzhvivqgzk85x6541ayfhl2wcil4sp95q5ca9hi4wz0z"; depends=[]; }; +meta4diag = derive { name="meta4diag"; version="1.0.20"; sha256="1x0s5jz1wnk7h9skxnyha8p0b77mfffn2y4i9sl7nr6rmkn7caj9"; depends=[cairoDevice RGtk2]; }; metaLik = derive { name="metaLik"; version="0.42.0"; sha256="1rk5mwgmgnqq2hrzbh936hzw3aa815l12r1a1qywap5ggmmyhszl"; depends=[]; }; metaMA = derive { name="metaMA"; version="3.1.2"; sha256="1mjyz06q1kc8lhfixpym4ndpnisi1r849fj3da6riwfd6ab1v181"; depends=[limma SMVar]; }; metaMix = derive { name="metaMix"; version="0.2"; sha256="0xlsdgincxwjzyr4i8qfmfw2wvgf41qbmyhf2rxcbarf7rmwhmqf"; depends=[data_table ggplot2 gtools Matrix Rmpi]; }; @@ -4664,24 +4849,26 @@ metabolomics = derive { name="metabolomics"; version="0.1.4"; sha256="0m5d2784mk metacom = derive { name="metacom"; version="1.4.3"; sha256="0djq2ry2vriayn839f0pgkq4j8j1zyd8ribmzn6ngfhz305fszlq"; depends=[devtools lattice vegan]; }; metacor = derive { name="metacor"; version="1.0-2"; sha256="04k3ph0yg3jp8x4g6l1h4m0qwl51mx0626xmm0fzr1pv4b4a1ypw"; depends=[gsl rmeta]; }; metafolio = derive { name="metafolio"; version="0.1.0"; sha256="18s78lljwnn3j0l3mqc0svszcb3c8yzyzlpnimndbiq9yxagxnnf"; depends=[colorspace MASS plyr Rcpp RcppArmadillo]; }; -metafor = derive { name="metafor"; version="1.9-7"; sha256="1gnq9qrz3ym9az9s6pi48dx7j3znrp9knbdmh4qpdhjkdlpa55d1"; depends=[Matrix]; }; -metagear = derive { name="metagear"; version="0.1"; sha256="1c00y7p7063f3c1ar17r9ij5j4chzyispg0wprkjaaz0mx9w1hb0"; depends=[EBImage gWidgets gWidgetsRGtk2 MASS Matrix metafor stringr]; }; +metafor = derive { name="metafor"; version="1.9-8"; sha256="1wcryg32ln8prcxc0x1r0ms01c4mxd6vzhpb9bv9r2qpjjc7ixm7"; depends=[Matrix]; }; +metagear = derive { name="metagear"; version="0.2"; sha256="02h7bzhijb9glzayin1wby4pkskfdav4m3grvrkz8iq9srnxskc5"; depends=[EBImage gWidgets gWidgetsRGtk2 MASS Matrix metafor stringr]; }; metagen = derive { name="metagen"; version="1.0"; sha256="0jvbm22976aqvmfnjzs51n2w099yj5hpx6hd0pgvbia80jk7b9vk"; depends=[BatchExperiments BatchJobs BBmisc ggplot2 lhs MASS metafor ParamHelpers plyr]; }; metamisc = derive { name="metamisc"; version="0.1.1"; sha256="1cvlsix3b857xdw6anqhqsrfwxpnf4rbzg4ybf6aw7vcdc05zgwd"; depends=[bbmle coda ellipse mvtnorm rjags]; }; metap = derive { name="metap"; version="0.6"; sha256="1iy5cmwrlsr70z0qnqn30n15knsfclg383815a2a8yqpg5gs4953"; depends=[]; }; metaplus = derive { name="metaplus"; version="0.7-4"; sha256="0pqlx7s3gvi2zjgv8cfxdk1n1p4gm8788w5r3smfmxykbk1hfwa8"; depends=[bbmle boot lme4 MASS metafor numDeriv]; }; metasens = derive { name="metasens"; version="0.2-0"; sha256="13mncikxzg8cnpbw78ird1xkrjlivmjibhrk700vdx1hygzwi6x0"; depends=[meta]; }; metatest = derive { name="metatest"; version="1.0-4"; sha256="0bz6gg2n4ffkr144jxk27y24xpqhp8awr09wkaijmv8902qx6qah"; depends=[]; }; -meteo = derive { name="meteo"; version="0.1-4"; sha256="17zspzxfj0jz19lqcxd04dh3sdi32k93dxlc4w5jgfdgy9wfq1c6"; depends=[gstat plyr raster rgdal snowfall sp spacetime]; }; +meteo = derive { name="meteo"; version="0.1-5"; sha256="0n37plka9vsxwd03lca3h6m8dcz3f1bi46jn3bz7vyilnkq9hcdk"; depends=[gstat plyr raster rgdal snowfall sp spacetime]; }; meteoForecast = derive { name="meteoForecast"; version="0.45"; sha256="0p74w5zcibzw2vpbyl4jb2wzpz0pki1n1l66hjs6dnkrn52zph95"; depends=[ncdf raster sp zoo]; }; meteogRam = derive { name="meteogRam"; version="1.0"; sha256="167gyxjnl4dyfqs3znv8sdpkvpqdxzdqi1g730s30gycrm9snap9"; depends=[ggplot2 RadioSonde]; }; metricsgraphics = derive { name="metricsgraphics"; version="0.8.5"; sha256="05rjx19qzf2r2hxf8y490xd29n3qy40rp38s2ni989m1p0bzc6c9"; depends=[htmltools htmlwidgets magrittr]; }; mets = derive { name="mets"; version="1.1.1"; sha256="1myqcds9glsy3fwzr7v711xzk7gmvy2cb4x3qgj1kxa90d1d50hz"; depends=[lava numDeriv Rcpp RcppArmadillo survival timereg]; }; +mev = derive { name="mev"; version="1.2"; sha256="0kpmkcviaa7vcik8bah536v1qjgzfg4b3k8iml8v1i3mqb2ifzaq"; depends=[Rcpp RcppArmadillo]; }; mewAvg = derive { name="mewAvg"; version="0.3.0"; sha256="16gc78ccjffp9qgc7rs622jql54ij83ygvph3hz19wpk22m96glm"; depends=[]; }; -mfp = derive { name="mfp"; version="1.5.1"; sha256="0flqrvicgks7nxxijhndshpf541drlgqjidm3nql1bg5hnpc5fcq"; depends=[survival]; }; +mfp = derive { name="mfp"; version="1.5.2"; sha256="1i90ggbyk2p1ym7xvbf4rhyl51kmfp6ibc1dnmphgw15wy56y97a"; depends=[survival]; }; mfx = derive { name="mfx"; version="1.1"; sha256="1zhpk38k7vdq0pyqi1s858ns19qycs3nznpa00yv8sz9n798wnn5"; depends=[betareg lmtest MASS sandwich]; }; mgcv = derive { name="mgcv"; version="1.8-7"; sha256="0c3cdqrfpjxclbw9fhd87d14ms1ibc6c8csbg737axfvlk29mlgy"; depends=[Matrix nlme]; }; mglmn = derive { name="mglmn"; version="0.0.2"; sha256="1ijkmr85s4yya0hfwcyqqskbprnkcbq8sc9c889i0gy0543fgqz4"; depends=[mvabund snowfall]; }; +mgm = derive { name="mgm"; version="1.1-2"; sha256="1hwni8g37n3jp2cvkg9a49n7rkhjsm8wb89xkzzjj93m6sa643nf"; depends=[glmnet matrixcalc Rcpp]; }; mgpd = derive { name="mgpd"; version="1.99"; sha256="0cxpgza9i0hjm5w1i5crzlgh740v143120zwjn95cav8pk8n2wyb"; depends=[corpcor evd fields numDeriv]; }; mgraph = derive { name="mgraph"; version="1.03"; sha256="0av2c0jvqsdfb3i0s0498wcms0n2mm0z3nnl98mx2fy7wz34z8b2"; depends=[rgdal]; }; mhsmm = derive { name="mhsmm"; version="0.4.14"; sha256="1zrqnzbmlk3kmwbq9rl4bdkc9iawkgn3qr7nzsa782v55i7w2wiz"; depends=[mvtnorm]; }; @@ -4704,26 +4891,26 @@ midasr = derive { name="midasr"; version="0.5"; sha256="1w3rxsxkcjy30sjxv4cxvqzf migest = derive { name="migest"; version="1.7"; sha256="13yzdkikxy0mq60zjbc4wq69ja7dps10bwxzsp8v3awr1r75zpaz"; depends=[]; }; migration_indices = derive { name="migration.indices"; version="0.3.0"; sha256="0h0yjcj70wzpgrv3wl1f2h2wangh1klsllq0i0935plgzw736mwd"; depends=[calibrate]; }; migui = derive { name="migui"; version="1.1"; sha256="1qchjsc7ff2b6s9w6ncj9knjv6pyp90jd4jxljn2rr1ix1gc45za"; depends=[arm gWidgets2 mi]; }; -mime = derive { name="mime"; version="0.3"; sha256="1i9f9z88cahvb5whdgmp0ipk0b9glk0xn8ik519vzpydnn1slvxk"; depends=[]; }; +mime = derive { name="mime"; version="0.4"; sha256="145cdcg252w2zsq67dmvmsqka60msfp7agymlxs3gl3ihgiwg46p"; depends=[]; }; minPtest = derive { name="minPtest"; version="1.7"; sha256="088kckpbfy2yp0pk3zrixrimywrvkaib5ywa7fkr5phnzlsl80sv"; depends=[Epi scrime]; }; minerva = derive { name="minerva"; version="1.4.1"; sha256="0dg5xnl9srdvid49na8478bnvagv0khiv6hl7z8gw6m745681i89"; depends=[]; }; miniCRAN = derive { name="miniCRAN"; version="0.2.4"; sha256="1p8kypq0r4sckvdq7qfznfjp3mpjy3cvm9dnwpdfn4dnl4n377z0"; depends=[httr XML]; }; miniGUI = derive { name="miniGUI"; version="0.8.0"; sha256="1iq52x7wbcin7ya207jj3k9vym7mavm5z61vggyabdmr768pci39"; depends=[]; }; minimax = derive { name="minimax"; version="1.0"; sha256="1g0d9q5h1avbb0yg7ajw5330820i3n5cgkpsif754l4j3ikya8p3"; depends=[]; }; minimist = derive { name="minimist"; version="0.1"; sha256="007y829d766b1v6wkrhk7pkg99r38bvmhc8bwvs8rs13dr7444ln"; depends=[V8]; }; -minpack_lm = derive { name="minpack.lm"; version="1.1-8"; sha256="0nvsxqwg3k9k3dqjzkz1vq2z0xla317011zm9ms8y1qvf75raz83"; depends=[]; }; +minpack_lm = derive { name="minpack.lm"; version="1.1-9"; sha256="19s3zj0jd8yh4acqnpb0xk2qwwpv4kch9yfzv3hvqzknbx89yl5v"; depends=[]; }; minqa = derive { name="minqa"; version="1.2.4"; sha256="036drja6xz7awja9iwb76x91415p26fb0jmg7y7v0p65m6j978fg"; depends=[Rcpp]; }; minque = derive { name="minque"; version="1.1"; sha256="1hx4j38213hs8lssf9kj5s423imk7dzv60mdbzrpbp7la7jk2n57"; depends=[klaR Matrix]; }; minxent = derive { name="minxent"; version="0.01"; sha256="1a0kak4ff1mnpvc9arr3sihp4adialnxxyaacdgmwpw61wgcir7h"; depends=[]; }; -mipfp = derive { name="mipfp"; version="2.2"; sha256="02jy32kbrfjb38q1jwm07yp0irsbq5hk3r3bsqrvwm6vlg6rxalz"; depends=[cmm numDeriv Rsolnp]; }; -mirt = derive { name="mirt"; version="1.10"; sha256="0bylba0z8g9kx3idfpzf3qbw7pgjvpd8d1vx930nr02vhv3c3cms"; depends=[GPArotation lattice mgcv numDeriv Rcpp sfsmisc]; }; +mipfp = derive { name="mipfp"; version="2.2.1"; sha256="0i69pbwszwqgc7wyfvnwgbp73dw0vg0pf692wyiwjkqvyfdrqa40"; depends=[cmm numDeriv Rsolnp]; }; +mirt = derive { name="mirt"; version="1.13"; sha256="0608hvhpq5dkz15xrgar0b85g4zirg6hz4qqhyvy2gfkv24scyb3"; depends=[GPArotation lattice mgcv numDeriv Rcpp RcppArmadillo sfsmisc]; }; mirtCAT = derive { name="mirtCAT"; version="0.5"; sha256="0lv4dxpby3izmh3avl70i0iiaj8rz1fpb666cwga5590ks7rq4lr"; depends=[lattice markdown mirt Rcpp RcppArmadillo shiny]; }; misc3d = derive { name="misc3d"; version="0.8-4"; sha256="0qjzpw3h09qi2gfz52b7nhzd95p7yyxsd03fldc9wzzn6wi3vpkm"; depends=[]; }; miscF = derive { name="miscF"; version="0.1-2"; sha256="195rb9acdirfhap0z35yvcci5xn4j84mlbafki4l1vfgqgnh0ajj"; depends=[MCMCpack mvtnorm Rcpp RcppArmadillo]; }; miscFuncs = derive { name="miscFuncs"; version="1.2-7"; sha256="1cnhd23fi6akr3fsr2b85s5cn36ksy4h3c4iyyjqcpc49wa819d0"; depends=[mvtnorm roxygen2]; }; miscTools = derive { name="miscTools"; version="0.6-16"; sha256="19mslb64lm8srrmml1v40rfkxhqw02bplw0yjv7qnkqj44hcqfw1"; depends=[]; }; miscset = derive { name="miscset"; version="0.4"; sha256="04cl8a2chcynfn5rljqw2ll4ry0wqaslqgjh9ny8ax3hcvyvmmwl"; depends=[data_table gridExtra Rcpp xtable]; }; -missDeaths = derive { name="missDeaths"; version="1.0"; sha256="15r25rdp8idpj9b5g8cwg729r48cwgmbgj78kgcf0laky9ld2n6r"; depends=[mitools Rcpp relsurv rms survival]; }; +missDeaths = derive { name="missDeaths"; version="1.2"; sha256="0lamxws1qqafz1mqdrzmq6jjn490z8zd63w4mzyb5nwwlxbmy6v8"; depends=[cmprsk mitools Rcpp relsurv rms survival]; }; missForest = derive { name="missForest"; version="1.4"; sha256="0y02dhrbcx10hfkakg5ysr3kpyrsh2d9i5b0qzhj9x5x0d5q11gp"; depends=[foreach itertools randomForest]; }; missMDA = derive { name="missMDA"; version="1.8.2"; sha256="0rb48psaffvlp3i2d1xv9fk949gpnck85v4ysfzw203r2r4rdhmm"; depends=[FactoMineR]; }; mistat = derive { name="mistat"; version="1.0-3"; sha256="12fykqkcqfxn8m8wwpw69f7h2f24c5yhg4fw50jsifhcj40kk29q"; depends=[]; }; @@ -4732,19 +4919,19 @@ mitml = derive { name="mitml"; version="0.2-3"; sha256="063nc32sgzg2q85fbxmxqch7 mitools = derive { name="mitools"; version="2.3"; sha256="0w76zcl8mfgd7d4njhh0k473hagf9ndcadnnjd35c94ym98jja33"; depends=[]; }; mix = derive { name="mix"; version="1.0-9"; sha256="08729y6ih3yixcc4a6m8fszg6pjc0s02iq47339b9gj16p82b74z"; depends=[]; }; mixAK = derive { name="mixAK"; version="4.2"; sha256="0z96ddlvkpr4y2chi929ik81snsr0f03a0k4cnh0q1lx0lr51p1z"; depends=[coda colorspace fastGHQuad lme4 mnormt]; }; -mixOmics = derive { name="mixOmics"; version="5.1.1"; sha256="1kkpww3x782h3zklfspzc8dkr40qnk4wrp0yqkx803svynsdr83a"; depends=[ellipse ggplot2 igraph lattice MASS pheatmap rgl]; }; +mixOmics = derive { name="mixOmics"; version="5.1.2"; sha256="16kdqzscl6r6mmb9ww3h1d6y76i5y3nh8maj4a9g5w64l7bbnhp7"; depends=[ellipse ggplot2 igraph lattice MASS pheatmap rgl]; }; mixPHM = derive { name="mixPHM"; version="0.7-2"; sha256="1wvkdb9zj2j8dpppnyins05rg877zbydqsl3qaan62wznkknxcac"; depends=[lattice survival]; }; mixRasch = derive { name="mixRasch"; version="1.1"; sha256="1r067pv7b54y1bz8p496wxv4by96dxfi2n1c99gziqf5ramx3qzp"; depends=[]; }; mixcat = derive { name="mixcat"; version="1.0-3"; sha256="0xszngygd3yj61pvv6jrrb5j0sxgpxzhlic69xrd5mv5iyw0cmxd"; depends=[statmod]; }; mixdist = derive { name="mixdist"; version="0.5-4"; sha256="100i9mb930mzvdha31m1srylmpa64wxyjv6pkw1g5lhm1hsclwm3"; depends=[]; }; -mixedMem = derive { name="mixedMem"; version="1.0.2"; sha256="1nlnlww2xbmlifcp9l293041csnh38hvr686sczyqpb7c5jf39g3"; depends=[BH gtools Rcpp RcppArmadillo]; }; +mixedMem = derive { name="mixedMem"; version="1.1.0"; sha256="0j8w3qfhanyrkkxipdxfdajv15qba8r2rm06iiv3kywficzgkxgv"; depends=[BH gtools Rcpp RcppArmadillo]; }; mixer = derive { name="mixer"; version="1.8"; sha256="1r831jha7qrxibw5m3nc3l6r887ihzxzsj65yjnbl5cf5b8y19bb"; depends=[]; }; -mixexp = derive { name="mixexp"; version="1.2.1"; sha256="0yjsngr2akj2hhl1hav2kkp8w0g4775qvnbzypa3c1fmx8kf1xvw"; depends=[daewr gdata lattice]; }; +mixexp = derive { name="mixexp"; version="1.2.3"; sha256="1cywqqiap4czni2jlcfyh6l6sn6v6wb2bzkfavbg2h6f5xc3ljnn"; depends=[daewr gdata lattice]; }; mixlm = derive { name="mixlm"; version="1.0.9.2"; sha256="1rh2sj5h9h4rmv7vqa87jbbln1mz6h0hb3gv3g99zcmazbd18k75"; depends=[car leaps lme4 multcomp pls pracma]; }; -mixor = derive { name="mixor"; version="1.0.2"; sha256="1xkwgk4dvjbpqvvbrb8yb88iz4nkv7sykxaygjq7zfcdrdivxz6n"; depends=[]; }; +mixor = derive { name="mixor"; version="1.0.3"; sha256="1qnrfd0hggad81rn8ryfm9l0cpd59ifj9sxc1bav35bma535azdv"; depends=[]; }; mixreg = derive { name="mixreg"; version="0.0-5"; sha256="0wsb1z98ymhshw9nhsvlszsanflxv3alwpdsw8lr3v62bkwka8zr"; depends=[]; }; mixsep = derive { name="mixsep"; version="0.2.1-2"; sha256="1ywwag02wbx3pkd7h0j9aab44bdmwsaaz0p2pcqn1fs3cpw35wa2"; depends=[MASS RODBC tcltk2]; }; -mixsmsn = derive { name="mixsmsn"; version="1.0-9"; sha256="0pgip1xfgfrdy3g3197d7visn164zi7xnp6wlsgjwxdylvjsxkji"; depends=[mvtnorm]; }; +mixsmsn = derive { name="mixsmsn"; version="1.1-0"; sha256="03lhja0sn2r85zwd6mzm6njfw32izszb1mqc4xzcrxz8l9cwiyzz"; depends=[mvtnorm]; }; mixtNB = derive { name="mixtNB"; version="1.0"; sha256="0lqbm1yl54zfs0xcmf3f2vcg78rsqyzlgvpydhmhg7x6dkissb22"; depends=[]; }; mixtools = derive { name="mixtools"; version="1.0.3"; sha256="01ix019cvplqz09q55pz9w7cc281k37khh1i3xf1k6l9f2cj519z"; depends=[boot MASS segmented]; }; mixtox = derive { name="mixtox"; version="1.0"; sha256="059vjrz9isyrdqk2ij4b11dawza2yslh67bj7gi9v5awzcf4n2v7"; depends=[]; }; @@ -4757,7 +4944,7 @@ mlDNA = derive { name="mlDNA"; version="1.1"; sha256="0d9lydiwar98hin26slnym4svn mlPhaser = derive { name="mlPhaser"; version="0.01"; sha256="1s2mqlnbcjdkx0ghvr2sw9rzggqa4jy2vzi9vbyqkh6795lgck6n"; depends=[]; }; mlVAR = derive { name="mlVAR"; version="0.1.0"; sha256="0xychak3xdqnsl9z1ifi0niqsrdc10f6frl6zg162mzpil33wp3g"; depends=[arm lme4 plyr qgraph]; }; mlbench = derive { name="mlbench"; version="2.1-1"; sha256="1rp035qxfgh5ail92zjh9jh57dj0b8babw3wsg29v8ricpal30bl"; depends=[]; }; -mldr = derive { name="mldr"; version="0.2.33"; sha256="0an9kh2gangcwm7csp9k4shjrn2fpr82g7ni5144l5k3lkvza3xh"; depends=[circlize shiny XML]; }; +mldr = derive { name="mldr"; version="0.2.51"; sha256="1s41fxrpil5x3ri64np70zd0z0d7xzr1g47wwim2k57h0ga4pmyh"; depends=[circlize shiny XML]; }; mlearning = derive { name="mlearning"; version="1.0-0"; sha256="0r8xfaxw83s2r27b8x5qd0k4r5ayxpkafzn9b1a0jvsr87i6520r"; depends=[class e1071 ipred MASS nnet randomForest]; }; mlegp = derive { name="mlegp"; version="3.1.4"; sha256="1932544irhzhf6a8rjyh66j57h9awlhwd6xam603bamfg106cmg2"; depends=[]; }; mleur = derive { name="mleur"; version="1.0-6"; sha256="0mddphq3b6y2jaafaa9y41842kcaqdl3dh7j4pva55q2vcjcclj7"; depends=[fGarch lattice stabledist urca]; }; @@ -4768,21 +4955,23 @@ mlmmm = derive { name="mlmmm"; version="0.3-1.2"; sha256="1m5ziiqs3ll1xjm1yf7x4s mlogit = derive { name="mlogit"; version="0.2-4"; sha256="15ndly7i56k8blgvpn15ixxnqx9yvbci7n3mb3hm9mnrxwh5v7sx"; depends=[Formula lmtest MASS maxLik statmod zoo]; }; mlogitBMA = derive { name="mlogitBMA"; version="0.1-6"; sha256="1wl8ljh6rr1wx7dxmd1rq5wjbpz3426z8dpg7pkf1x9wr94a2q25"; depends=[abind BMA maxLik]; }; mlr = derive { name="mlr"; version="2.4"; sha256="1yd4g749jhj7d2kmzh6bc6lyk3857kfghds8cnqg2j68ak87w5q0"; depends=[BBmisc checkmate ggplot2 ggvis parallelMap ParamHelpers plyr reshape2 shiny survival]; }; +mlsjunkgen = derive { name="mlsjunkgen"; version="0.1.1"; sha256="109ag52x4y3rzx8yccilrnl24mz4ximzx6v4lrbak7dpiclqrw7a"; depends=[]; }; mlxR = derive { name="mlxR"; version="2.2.0"; sha256="1ca0vfky45gvr2rqbgli79v1mqhi0d8mpd220xxs1p6xlwbyvn0m"; depends=[ggplot2 Rcpp XML]; }; mma = derive { name="mma"; version="2.0-0"; sha256="0fdb2lbg08l47wnrsjf3rarf2n0qsw0qrx9b9aa08ablwpip4k69"; depends=[gbm]; }; -mmand = derive { name="mmand"; version="1.1.0"; sha256="0awi9wxxalz81d6766djbjsk980n65dhz02fcqb69ifc7x80lc33"; depends=[Rcpp RcppArmadillo reportr]; }; +mmand = derive { name="mmand"; version="1.2.0"; sha256="19d35ji8l5gz7q51qq1kg73zyqzk1g3f9czfisj1gbadcgjzs4ys"; depends=[Rcpp RcppArmadillo reportr]; }; mmap = derive { name="mmap"; version="0.6-12"; sha256="12ql03wzwj23h8lwd07rln6id44mfrgf9wcxn58y09wn3ky1rm6a"; depends=[]; }; +mmc = derive { name="mmc"; version="0.0.3"; sha256="03nhfhiiadga8mcp33kj20g33v9n5i62fdqgi20h5p80g849k719"; depends=[MASS survival]; }; mmcm = derive { name="mmcm"; version="1.2-5"; sha256="193mlvl8fp5y2150m0xw5bhr7nkr4fgmwjbv1dg314a7ara42v4y"; depends=[mvtnorm]; }; mmds = derive { name="mmds"; version="1.1"; sha256="0f5qzkfhi7vg8vsd8r41idmbwrrgc7qzfnp81adms2yzrza17wrw"; depends=[]; }; mme = derive { name="mme"; version="0.1-5"; sha256="07k1xagwpyzsrlc00y9xlaxcpwdhz55v567i7fzvqa96ical8nlf"; depends=[MASS Matrix]; }; -mmeln = derive { name="mmeln"; version="1.1"; sha256="06bxp157cdab6ghx3yrsn8l2gixh9cyv6fv4pqyq0yxqwbjf9bmi"; depends=[]; }; +mmeln = derive { name="mmeln"; version="1.2"; sha256="1kcfq5y2fzsrbjyvh6dfp734ly7alj9vrjikzadlz33s7wjanh79"; depends=[]; }; mmeta = derive { name="mmeta"; version="2.2"; sha256="06zkazi97f3il2vlx4f8c7zz4kxs9ylhscd06j31h504c1w96ddf"; depends=[aod HI]; }; mmm = derive { name="mmm"; version="1.4"; sha256="1nydian004nldqhyw3x15w6qfml2gkjc0x8ii54faz563byjv3d8"; depends=[gee]; }; mmm2 = derive { name="mmm2"; version="1.2"; sha256="1h9pn5s3jjs4bydrr1qysjb4hv7vs4h3m7mvi22ggs2dzyz3b298"; depends=[gee]; }; -mmod = derive { name="mmod"; version="1.3.0"; sha256="1rcvqvqmpl5ks1pwb0z2iq3ng2x7fhsihyihnwx05k5pkhyrfsj5"; depends=[adegenet pegas]; }; -mmpp = derive { name="mmpp"; version="0.1"; sha256="1m2079vz4h3h90ikh268jwh20ink5n1mri8n7aj50xkfspmwsmpg"; depends=[]; }; +mmod = derive { name="mmod"; version="1.3.1"; sha256="1srk46m95kh0y25nw53z671dd7zbmrfnfn7gmhnzxvc6dq0wvshh"; depends=[adegenet pegas]; }; +mmpp = derive { name="mmpp"; version="0.4"; sha256="120ciyd9c6zwbdvzcpasb1476d0i9h28a1a5c99z3zar8lpp184p"; depends=[]; }; mmtfa = derive { name="mmtfa"; version="0.1"; sha256="113bpcb05i78y78byrdn9j45dfcar7q8z7qmlid8cl6b8cjv1vfz"; depends=[matrixStats mvnfast]; }; -mnlogit = derive { name="mnlogit"; version="1.2.2"; sha256="01wvlmkf9ddcmsb8pw08j05r7kfn8zr76zaaa3mv92h967v79grp"; depends=[Formula lmtest mlogit]; }; +mnlogit = derive { name="mnlogit"; version="1.2.3"; sha256="13l41ik6dympdligvy6y45cxj89yfzafbbn70vq4921zp3ql4m3n"; depends=[Formula lmtest mlogit]; }; mnormpow = derive { name="mnormpow"; version="0.1.1"; sha256="0z53vwhkhkkr6zrjhd3yr14mb02vh7lr63frf0ivajndxiap0s9v"; depends=[]; }; mnormt = derive { name="mnormt"; version="1.5-3"; sha256="1mw5fk4q5cnj2x2938di58179fr51l396qd61i6y5vwmcccj0kn9"; depends=[]; }; modMax = derive { name="modMax"; version="1.1"; sha256="1mx4623az7vzaqf530pklx7j92qwwq93pa2416lnr24jjcxgva2h"; depends=[gtools igraph]; }; @@ -4802,49 +4991,51 @@ moments = derive { name="moments"; version="0.14"; sha256="0f9y58w1hxcz4bqivirx2 momr = derive { name="momr"; version="1.1"; sha256="091vzaw8dm29q89lg2iys25rbg2aslgdn9sk06x038nngxdrn95r"; depends=[gplots Hmisc nortest]; }; mondate = derive { name="mondate"; version="0.10.01.02"; sha256="18v15y7fkll47q6kg7xzmj5777bz0yw4c7qfiw2bjp0f3b11qrd2"; depends=[]; }; mongolite = derive { name="mongolite"; version="0.5"; sha256="1rd8q5asa24q8c14swd88rq02bqvvkp63sssdlmrcj736fjr4a4x"; depends=[jsonlite]; }; -monitoR = derive { name="monitoR"; version="1.0.3"; sha256="0g2dhyz3411pa6kcsmmi9x77ygvdrvas3k9ps0w2r69mfab785c6"; depends=[tuneR]; }; +monitoR = derive { name="monitoR"; version="1.0.4"; sha256="1ai99lim84nc14ls2jlfflvqm67bgaqb373k9wah83gpq35wdksc"; depends=[tuneR]; }; monmlp = derive { name="monmlp"; version="1.1.3"; sha256="1f42d8j6jxz8x3yy02ppimbza3b3dn8402373qhj4yizrfk9wkz9"; depends=[]; }; monogeneaGM = derive { name="monogeneaGM"; version="1.0"; sha256="10rnc3ipnf8j85kfgfssmdd9578mnx74694r5jsrj2yvbvzm67vq"; depends=[ape circular cluster geomorph gplots phytools rgl]; }; +monographaR = derive { name="monographaR"; version="1.0"; sha256="0s3q5vkfy3y1mmg8hcgxg2g96h6lqq8x0ylzmcxffsjyc2f2rzyi"; depends=[circular maptools raster rgeos sp]; }; monomvn = derive { name="monomvn"; version="1.9-5"; sha256="1fh0c1234hb5f3rwy85i4rlzc3n1851q5mivckcjs2vdm9rz25mg"; depends=[lars MASS pls]; }; monreg = derive { name="monreg"; version="0.1.3"; sha256="08rcg2xffa61cgqy8g98b0f7jqhd4yp8nx6g4bq3g722aqx4nfg3"; depends=[]; }; moonBook = derive { name="moonBook"; version="0.1.3"; sha256="1wy8qwzymh482gfb4v9v74k666mq8dz2yird7gz43l3hps22kfgb"; depends=[nortest survival]; }; moonsun = derive { name="moonsun"; version="0.1.3"; sha256="1y8mwxmcy4iz444c2fayyi4i0jk1k561dp6cbjg2b3lmdml0whmi"; depends=[]; }; mopsocd = derive { name="mopsocd"; version="0.5.1"; sha256="10hssnm1afqmxa9kw6ifqnz3p3yyjrmxgi98zlj31a5g4nis8wb1"; depends=[]; }; morgenstemning = derive { name="morgenstemning"; version="1.0"; sha256="17y90cf8ajmkfwla0hm4jgkbkd1mxnym63ph2468sfxkhn0r3v88"; depends=[]; }; -morse = derive { name="morse"; version="1.0.2"; sha256="044aljv48mfq6yj9i77yqf03qa4qqkncaalzhph3wr9w4jvxpxn5"; depends=[plyr]; }; -mosaic = derive { name="mosaic"; version="0.10.0"; sha256="0hhln6kfxdk6z4rmi3378cs18ziwa5awi53ylnx5kva7f42m5jxr"; depends=[car dplyr ggdendro ggplot2 gridExtra lattice latticeExtra lazyeval MASS mosaicData plyr readr reshape2]; }; +morse = derive { name="morse"; version="2.0.0"; sha256="12vyx9d9mixw4pakm62a95527wjjn95va0hhiiyrfsww8xyvbk6s"; depends=[coda dplyr ggplot2 gridExtra rjags stringr]; }; +mosaic = derive { name="mosaic"; version="0.11"; sha256="0dddqrzfm5nlkva5wajlj0xzapnzr49g4d834qqaf6kqwcn8id7z"; depends=[car dplyr ggdendro ggplot2 gridExtra lattice latticeExtra lazyeval MASS mosaicData readr reshape2]; }; mosaicData = derive { name="mosaicData"; version="0.9.1"; sha256="0gxnw3x806pm97x1043qq3qf1cwn1z1771cayp3xlh5khn5bijk7"; depends=[]; }; moult = derive { name="moult"; version="1.4"; sha256="0nglf7wijp2v66fpyh88glbn1glp8vvkbvpc1g6136bg6ahbbkkl"; depends=[Formula Matrix]; }; mountainplot = derive { name="mountainplot"; version="1.1"; sha256="1l3m7jgq70g83mmfhlwzj5gkdnwgl14g9ljpk6j7z7qxapzva3bb"; depends=[lattice]; }; mousetrack = derive { name="mousetrack"; version="1.0.0"; sha256="0lf0xh0c3xl27nh5w8wwyrm2jfzfajm2f73xjdgf746dp365qc8n"; depends=[pracma]; }; movMF = derive { name="movMF"; version="0.2-0"; sha256="1p9ay7w93gyx4janw23iwg2j0wkvnvzalaa20n1rlahhmh327g7i"; depends=[clue skmeans slam]; }; move = derive { name="move"; version="1.5.514"; sha256="18rf9d0xxs48l0bk9vvr2sxnm7rcr38cgar0y5xgmh8fdf6dsl65"; depends=[geosphere raster rgdal sp]; }; -mp = derive { name="mp"; version="0.2.0"; sha256="1vpjrx04yn1rdmrhj42rhc757cj02sghrv0i5jfm4k2y28ab7qh1"; depends=[Rcpp RcppArmadillo svd]; }; +mp = derive { name="mp"; version="0.3.1"; sha256="0hwn0dg0k7nhl0jv680q5z9v46mfknndp5xswyl5chkw4ppmnyf2"; depends=[Rcpp RcppArmadillo]; }; mpMap = derive { name="mpMap"; version="1.14"; sha256="0gmhg5ps8yli8699a5aw26skfbjxx4zpp0paqxxdc0zl28l0pdff"; depends=[gdata qtl seriation wgaim]; }; mpa = derive { name="mpa"; version="0.7.3"; sha256="0mhnsbgr77fkn957zfiw8skyvgd084rja1y4wk5zf08q5xjs2zvn"; depends=[network]; }; mpath = derive { name="mpath"; version="0.1-19"; sha256="12w6ihr1ggr877agj0jlbsspmikjvp7xpvvn8xa4mav3vcrccyhc"; depends=[glmnet MASS numDeriv pscl]; }; mpcv = derive { name="mpcv"; version="1.1"; sha256="0vwycspiw9saj811f6alkbijivy7szpahf35bxn2rpn2bdhbn21i"; depends=[lpSolve]; }; mph = derive { name="mph"; version="0.9"; sha256="11wcy23sv8x7aq6ky8wi0cq55yhjkkm9hn672qy803dwzzxv5y61"; depends=[]; }; -mplot = derive { name="mplot"; version="0.6.2"; sha256="0lnslv471abhfr245wx24ps3c97qs54i43ybpc1f8mqsxh0vxz3s"; depends=[bestglm doParallel foreach googleVis leaps plyr shiny shinydashboard]; }; +mplot = derive { name="mplot"; version="0.7.1"; sha256="1h1wgq8lsv5p1sffjfmsqh5axhx9797py3z6vscq41dnkf5gxl5p"; depends=[bestglm doParallel foreach glmnet googleVis leaps plyr shiny shinydashboard]; }; mpm = derive { name="mpm"; version="1.0-22"; sha256="0wijw8v0wmbfrda5564cmnp788qmlkk21yn5cp5qk8aprm9l1fnk"; depends=[KernSmooth MASS]; }; mpmcorrelogram = derive { name="mpmcorrelogram"; version="0.1-3"; sha256="0qgzsh744002whh3v1hrxs1i0xnk9zgfgkdgx2f0ffj00vvnwr97"; depends=[vegan]; }; mpmi = derive { name="mpmi"; version="0.41"; sha256="1iwdhvdglsamzq18f0r5mh0anrd4ffrddafdlbw16kr8jy0c8fdn"; depends=[KernSmooth]; }; mpoly = derive { name="mpoly"; version="0.1.0"; sha256="0q0ypaj1r12yc72b6qb22rvgrzc703v4n7ns2yg1n9ff20y5m4z0"; depends=[partitions plyr rJava rjson rJython rSymPy stringr]; }; mppa = derive { name="mppa"; version="1.0"; sha256="06v6vq2nfh4b407x2gyvcp5wbdrcnk3m8y58akapi66lj8xplcx4"; depends=[]; }; -mpt = derive { name="mpt"; version="0.5-1"; sha256="1b6n7kivkj4ndcc27jmznx9dh40kvjjk7hfxh21kmnknl5ap4ffb"; depends=[]; }; +mpt = derive { name="mpt"; version="0.5-2"; sha256="16rrcy8hy9fw603pbi9wybnql11w0bxlxi1kxx482khg9fj7lwn0"; depends=[]; }; mra = derive { name="mra"; version="2.16.4"; sha256="134fw4bv34bycgia58z238acj7kb8jkw51pjfa2cwprrgsjdpf5g"; depends=[]; }; mratios = derive { name="mratios"; version="1.3.17"; sha256="0a2pn4234ri5likaqbxgkw8xqmwchr6fak3nninral0yzd4rcal5"; depends=[mvtnorm]; }; mrds = derive { name="mrds"; version="2.1.14"; sha256="0lvr9zqyi45a100w31k228b03plna24rzgamsvfa34inyd8q4y9m"; depends=[mgcv numDeriv optimx Rsolnp]; }; mreg = derive { name="mreg"; version="1.1"; sha256="06la0yy2yys161jhlzlcm5lcv0664wm6sa8gjdnpd1s1nx52jkqf"; depends=[]; }; mri = derive { name="mri"; version="0.1.1"; sha256="07lqr9fv0nqd626jpqa6x1qxf85r1j4r5brv760dll1p2kl060gw"; depends=[]; }; mritc = derive { name="mritc"; version="0.5-0"; sha256="1344x7gc7wvmcqp0sydppavavvps5v7bs0dza2fr8rz3sn4as8sa"; depends=[lattice misc3d oro_nifti]; }; +ms_sev = derive { name="ms.sev"; version="1.0.2"; sha256="169z9x8jv06rv1b3qh4nynzwq5zhqq3j5r6k1azygsc2wzpzm039"; depends=[]; }; msBP = derive { name="msBP"; version="1.0-2.1"; sha256="1yprhglqykh6v2jicab25a0ny1r49kaj3i04fspi3was2md2qbzd"; depends=[DPpackage]; }; msSurv = derive { name="msSurv"; version="1.2-2"; sha256="02qm3mq17d2yj5mbz6gapd3zfi1wmiad5hpyimcb39impk43n2hf"; depends=[class graph lattice]; }; msap = derive { name="msap"; version="1.1.8"; sha256="0z5lm782jjb9w1h5vgz8bmxjdcrq9zb3xp1w5cb479jjc7krlgg3"; depends=[ade4 ape]; }; msarc = derive { name="msarc"; version="1.4.5"; sha256="1jv364502m6q2w039dmdhwsx5id39jc4xcabyrbwbrgy65kwfspg"; depends=[AnnotationDbi gplots RColorBrewer wordcloud XLConnect]; }; msda = derive { name="msda"; version="1.0.2"; sha256="05khpa5qasnngn6yvk87gv5262plqpw4knb6hzgy52w401k0y80r"; depends=[MASS Matrix]; }; mseapca = derive { name="mseapca"; version="1.0"; sha256="115njdk8cv55zxd38hq9qaca686ykckni0f3xl8w3bn32gb5g9a7"; depends=[XML]; }; -msgl = derive { name="msgl"; version="2.0.125.1"; sha256="1k2n8yn9j5sknw95saq2zgl3jfanyp3c2xyj49wqgawhwsw81jdh"; depends=[BH Matrix Rcpp RcppArmadillo RcppProgress sglOptim]; }; +msgl = derive { name="msgl"; version="2.2.0"; sha256="1k1kmgz8h5irdfjja0gcig2z6icwzcnzv1z9l0halcpfb1b2n36f"; depends=[BH Matrix Rcpp RcppArmadillo RcppProgress sglOptim]; }; msgpackR = derive { name="msgpackR"; version="1.1"; sha256="0a6vm4q1zfy8wlvhl9wfy09ig1iag9fvjasz5w9bll7idky4ldx5"; depends=[]; }; msgps = derive { name="msgps"; version="1.3"; sha256="0nvxy9a41z5d111gqr1gh521imm795l1li70g1mzrag1gpg810c5"; depends=[]; }; msir = derive { name="msir"; version="1.3"; sha256="0d7zxjmhr1ri3qz3fdkf56fi5dz2p9lb2vyqccrpn7js2ibkqhpl"; depends=[mclust]; }; @@ -4861,32 +5052,32 @@ muhaz = derive { name="muhaz"; version="1.2.6"; sha256="1b7gzygbb5qss0sf9kdwp7rn muir = derive { name="muir"; version="0.1.0"; sha256="0h3qaqf549v40ms7c851sspaxzidmdpcj89ycdmfp94b2q3bmz98"; depends=[DiagrammeR dplyr stringr]; }; multcomp = derive { name="multcomp"; version="1.4-1"; sha256="07zvpdiphn9ndvhvblnd2li2a70j8igscd685s5mslbx5rqppv3k"; depends=[codetools mvtnorm sandwich survival TH_data]; }; multcompView = derive { name="multcompView"; version="0.1-7"; sha256="18gfn3dxgfzjs13l039l2xdkkf10fapjjhxzjx76k0iac06i1p7i"; depends=[]; }; -multgee = derive { name="multgee"; version="1.5.1"; sha256="1ycbbri26hahbi3q4mrsyhrh9bwj89dyv6gvrpx58ghrlsnakjy1"; depends=[gnm VGAM]; }; +multgee = derive { name="multgee"; version="1.5.2"; sha256="0mwi1gbs9knavgqwrfcxf8kqshvf86g17cxci5slzgqcf24nccsj"; depends=[gnm VGAM]; }; multiAssetOptions = derive { name="multiAssetOptions"; version="0.1-1"; sha256="1kb4qxyl9shvrpqfxq26lhh3sssmyjcnhhcl6gcbb0s86snh9ms9"; depends=[Matrix]; }; multiDimBio = derive { name="multiDimBio"; version="0.3.3"; sha256="1aj6yam31mr0abjb6m5m85r1w71snha4s7h4ikyw66sc73xkmb9m"; depends=[ggplot2 lme4 MASS misc3d pcaMethods RColorBrewer]; }; multiPIM = derive { name="multiPIM"; version="1.4-3"; sha256="0j7d0cgs8zcyiyibzmfhcandad76sf4gm57wkcv98bf96wkls58l"; depends=[lars penalized polspline rpart]; }; multiband = derive { name="multiband"; version="0.1.0"; sha256="1f4gmy0yf9zid7kl05zncvvig6hs4nl1h9wkrkc24rxx9risw9k9"; depends=[]; }; multibiplotGUI = derive { name="multibiplotGUI"; version="1.0"; sha256="0ig7r4p8mq594cjwclbqwjk8saqkvjqjbbnnxj1hc1sdj7qdlcpf"; depends=[cluster dendroextras Matrix rgl shapes tcltk2 tkrplot]; }; -multic = derive { name="multic"; version="0.3.8.1"; sha256="06lc9kn0z3s7x00hz8vj903q0c6cncnj4v3ygvd2yvkgcbhfvjd0"; depends=[]; }; +multic = derive { name="multic"; version="0.4.3"; sha256="1824pnwgsvf08hwwkl3b9vmfzky16imbjakgsb7jkhnzqv6d5x9g"; depends=[]; }; multicon = derive { name="multicon"; version="1.6"; sha256="16glkgnm4vlpxkhf1xw1gl1q10yavx9479i21v29lldag35z8pqx"; depends=[abind foreach mvtnorm psych sciplot]; }; -multicool = derive { name="multicool"; version="0.1-6"; sha256="0hzwxrcsz7dm4ilv8rpkcwi61ssym94ki8ayssfh2r2ghy9w9xlw"; depends=[Rcpp]; }; +multicool = derive { name="multicool"; version="0.1-7"; sha256="1wyrlkhycw0qqidlzm4h0wd7ymwqpdx4wb34j1isvspclhxvdr6v"; depends=[Rcpp]; }; multigroup = derive { name="multigroup"; version="0.4.4"; sha256="1r79zapziz3jkd654bwsc5g0rphrk9hkp1fpik8jvjsa1cix40mq"; depends=[MASS]; }; multilevel = derive { name="multilevel"; version="2.5"; sha256="0pzv5xc8p6cpzzv9iq3a3ib1dcan445mm12whf3d6qkz2k4778g6"; depends=[MASS nlme]; }; multilevelPSA = derive { name="multilevelPSA"; version="1.2.2"; sha256="0z3qnv14sdkfvyw2wjrfz26r7sr7vv3rlr8n4gf99rwv6k34bdsg"; depends=[ggplot2 party plyr proto PSAgraphics psych reshape xtable]; }; multimark = derive { name="multimark"; version="1.3.0"; sha256="0dw5s1znv83hs5m1d8721n35cabml0s2a26zgc8x0ngnf3zkspny"; depends=[Brobdingnag coda Matrix mvtnorm RMark statmod]; }; multinbmod = derive { name="multinbmod"; version="1.0"; sha256="1c4jyzlcjkqdafj9b6hrqp6zs33q6qnp3wb3d7ldlij7ns9fhg71"; depends=[]; }; multinomRob = derive { name="multinomRob"; version="1.8-6.1"; sha256="1fdjfk77a79fy7jczhpd2jlbyj6dyscl1w95g64jwxiq4hsix9s6"; depends=[MASS mvtnorm rgenoud]; }; -multipleNCC = derive { name="multipleNCC"; version="1.1"; sha256="134a8zm0xz2h9yclc9v2linx881gb3n5x51msifpnm641giamzfd"; depends=[mgcv survival]; }; -multiplex = derive { name="multiplex"; version="1.6"; sha256="052qjqkwf2sp4w7hv5gj9x3vhwjpa6k10sr969283z7aw6c1yb4g"; depends=[]; }; +multipleNCC = derive { name="multipleNCC"; version="1.2"; sha256="12lakxnmcsrrxc52f9p9yrszn7l2iqs6sacf5mz3hpm6h04vlrlp"; depends=[mgcv survival]; }; +multiplex = derive { name="multiplex"; version="1.7.1"; sha256="0c8974vkn5nljp5b3h8ylds2266d4khkacn9dvlga1caz203fi4v"; depends=[]; }; multipol = derive { name="multipol"; version="1.0-6"; sha256="1yjz0p4mcgzs98s61i8315wyhh986jxp8b0lq66375ckpr2ddcss"; depends=[abind]; }; -multirich = derive { name="multirich"; version="2.0.2"; sha256="1lqc4np45p9ar9l8l1m5bdh98fsmhvzj8s0b2mcp9cqrvnhp1irc"; depends=[]; }; +multirich = derive { name="multirich"; version="2.1.1"; sha256="04jr5jvds70j2psyxz12d2my61jcj5hvdyv10pvar2rpqaw0yxyh"; depends=[]; }; multisensi = derive { name="multisensi"; version="1.0-8"; sha256="168g6hym5chz69wa3vfprg1m1c935wh7bi3gfz5calxiqf89mncz"; depends=[]; }; multispatialCCM = derive { name="multispatialCCM"; version="1.0"; sha256="1fzd91w10iln8qb81z240lq3fi4gq22l4rh9npkav6fiq6g6rlp8"; depends=[]; }; multitable = derive { name="multitable"; version="1.6"; sha256="067bgl793wwvb1rhan70ih0ga3dxja2c6zx7fwzml5rqi6p728pr"; depends=[]; }; multitaper = derive { name="multitaper"; version="1.0-11"; sha256="1s0lmjzpyd7zmc2p1ywv5fm7qkq357p70b76gw9wjlms6d81j1n4"; depends=[]; }; multivator = derive { name="multivator"; version="1.1-4"; sha256="125ifkpm1pny4rjpzirnwpmpjfg0y8w0rygj0way0p1qwm0l207n"; depends=[emulator mvtnorm]; }; -multiway = derive { name="multiway"; version="1.0-0"; sha256="1yp9cgi5pkby1qszc8qrw3pv8q254cr6grhmdlmaf2yrhmpfahv9"; depends=[]; }; -multiwayvcov = derive { name="multiwayvcov"; version="1.2.1"; sha256="15gxcrg2i1aqbxkif5dmdz81yzqj7a4hq0dcd0narzsvm5b4w9py"; depends=[boot sandwich]; }; +multiway = derive { name="multiway"; version="1.0-1"; sha256="15phfbv6b1i2bkg8g6nw6akznx0gj9m4v90cys7m2m05rsrgyb9a"; depends=[]; }; +multiwayvcov = derive { name="multiwayvcov"; version="1.2.2"; sha256="13a8w87wq7jv9y654qvlik01q4v0j0mrina2xmvrzqlm25f2rj3w"; depends=[boot sandwich]; }; multxpert = derive { name="multxpert"; version="0.1"; sha256="03mvf4m0kabm22vy4zkj1cfh884larpj8cbgg3p9l3pag20snf1l"; depends=[mvtnorm]; }; muma = derive { name="muma"; version="1.4"; sha256="0midx3wzyvcz8rk9kvsfll3xg41pkz40si4jw2ps54ykkf9rkm99"; depends=[bitops car caTools gplots gtools mvtnorm pcaPP pdist pls robustbase rrcov]; }; munfold = derive { name="munfold"; version="0.3-3"; sha256="1szm3c1xi1s7r1w6h7xb4x538sbczrblb70a3ysxf4q8c1ihmly9"; depends=[MASS memisc]; }; @@ -4894,10 +5085,10 @@ munsell = derive { name="munsell"; version="0.4.2"; sha256="1bi5yi0i80778bbzx2rm munsellinterpol = derive { name="munsellinterpol"; version="1.0.2"; sha256="1c4m9fhggczy3wk51m8qxiahkic1f1lq3r8b0x0mk34pd5wap48a"; depends=[geometry]; }; musicNMR = derive { name="musicNMR"; version="0.0.2"; sha256="09xxc78ajk428yc3617jfxqp5fy89nfc24f1rig6cw28fflwqj0k"; depends=[seewave]; }; mutoss = derive { name="mutoss"; version="0.1-10"; sha256="1pijr3admnciiwdgxbdac4352m7h08jyvpj7vdd27yx07wp2rri3"; depends=[multcomp multtest mvtnorm plotrix]; }; -mutossGUI = derive { name="mutossGUI"; version="0.1-9"; sha256="1xdby6n0w1155kx6mhinvgqm0ssgyy4443pkq3k88a5s4bfxw5bw"; depends=[CommonJavaJars JavaGD JGR multcomp mutoss plotrix rJava]; }; -mvMORPH = derive { name="mvMORPH"; version="1.0.5"; sha256="184ywvgi2dz77ivl2g7spx065wh1ap2lpmvbrhik9sgysygkijs2"; depends=[ape corpcor phytools spam subplex]; }; -mvProbit = derive { name="mvProbit"; version="0.1-0"; sha256="0fnrlralydlsf9iphq385f8hpqigfmi8rafvgp443gygvpq5b6g0"; depends=[abind bayesm maxLik miscTools mvtnorm]; }; -mvSLOUCH = derive { name="mvSLOUCH"; version="1.2"; sha256="0hr31j8gppg5mfifvlmv962bc06s21byyy3gz0pkary15pzy5xg8"; depends=[ape corpcor mvtnorm numDeriv ouch]; }; +mutossGUI = derive { name="mutossGUI"; version="0.1-10"; sha256="16fgmpnym9nhiywqimjgv10swrvs3whp0nlzsw573vv0k6qjmwd2"; depends=[CommonJavaJars JavaGD JGR multcomp mutoss plotrix rJava]; }; +mvMORPH = derive { name="mvMORPH"; version="1.0.6"; sha256="15cy480x3xrwsm3wpcsam24034vd1ga119k4800ga8l70k8gw8cw"; depends=[ape corpcor phytools spam subplex]; }; +mvProbit = derive { name="mvProbit"; version="0.1-4"; sha256="1hflshgw3448davpghkyn8pq1jsr2l9sk5ycmihrvxvghmh7n5fn"; depends=[abind bayesm maxLik miscTools mvtnorm]; }; +mvSLOUCH = derive { name="mvSLOUCH"; version="1.2.1"; sha256="1356i74x7gbkjrs1qrk756dbq8flc8khw265yylb3gakhmi6rkpq"; depends=[ape corpcor mvtnorm numDeriv ouch]; }; mvShapiroTest = derive { name="mvShapiroTest"; version="1.0"; sha256="0zcv5l28gwipkmymk12l4wcj9v047pr8k8q5avljdrs2a37f74v1"; depends=[]; }; mvabund = derive { name="mvabund"; version="3.10.4"; sha256="1hza09nghgz0iyfayqabf5d0yb6zqnvhwmprif6y9qix8jscilwl"; depends=[MASS Rcpp statmod tweedie]; }; mvbutils = derive { name="mvbutils"; version="2.7.4.1"; sha256="1vs97yia78xh35sdfv5pj3ddqmy83qgamvyyh9gjg0vdznqhffzg"; depends=[]; }; @@ -4906,7 +5097,7 @@ mvctm = derive { name="mvctm"; version="1.0"; sha256="1naxjh2k3vv4wlpzzx0y2zwvbn mvcwt = derive { name="mvcwt"; version="1.3"; sha256="0fqdyypmszm00rpl04z8kiiw6jd416a0b2rap3dqq3kchnz8h4s2"; depends=[foreach RColorBrewer]; }; mvglmmRank = derive { name="mvglmmRank"; version="1.1-1"; sha256="1n02bhpljvpfiycnmyw18dxp6pvll5014vl58n9hrdkccmhkm6jm"; depends=[Matrix numDeriv]; }; mvinfluence = derive { name="mvinfluence"; version="0.6"; sha256="1cd5p6cl2zln8madjf3vsbmqlg4nsklzzy6ngdd5glj1a9qapd6c"; depends=[car heplots]; }; -mvmesh = derive { name="mvmesh"; version="1.0"; sha256="168s3n3ibiwdk0wys4kjj1xdpkz891rq5dv3lqf4pil83kbw8jw9"; depends=[rcdd rgl]; }; +mvmesh = derive { name="mvmesh"; version="1.1"; sha256="0dw2z7yq07sb4j0a5502znigvc6jzwdl6cx4kihw96nkb8y0pka5"; depends=[abind geometry rcdd rgl]; }; mvmeta = derive { name="mvmeta"; version="0.4.7"; sha256="1yadaviq66wdfs0dipn6gxk7jqvzwzjdr8lkfggdsl4vyyi9pwip"; depends=[]; }; mvna = derive { name="mvna"; version="1.2-3"; sha256="1gwv17j6w9c38bqvnasv9kfigbdxiqkzwj89gqmkxgw715f9nnpp"; depends=[lattice]; }; mvnfast = derive { name="mvnfast"; version="0.1.3"; sha256="1ghm6zdrh2ax8r4jin8gka0qjwcsixn5faclf17sr5bx7l5b62np"; depends=[BH Rcpp RcppArmadillo]; }; @@ -4918,7 +5109,7 @@ mvoutlier = derive { name="mvoutlier"; version="2.0.6"; sha256="00kim5i8xdbaqc0l mvprpb = derive { name="mvprpb"; version="1.0.4"; sha256="1kcjynz9s7vrvcgjb9sbqv7g50yiymbpkpg6ci34wznd33f7nrxm"; depends=[]; }; mvrtn = derive { name="mvrtn"; version="1.0"; sha256="0k0k76wk5zq0cjydncsrb60rdhmb58mlf7zhclhaqmli1cy697k8"; depends=[]; }; mvsf = derive { name="mvsf"; version="1.0"; sha256="1krvsxvj38c5ndvnsd1m18fkqld748kn5j2jbgdr3ca9m3i5nlwf"; depends=[mvnormtest nortest]; }; -mvtboost = derive { name="mvtboost"; version="0.2.1"; sha256="02gankqhcidgii99qqdrw8y9d923d0yphln162rd0x72axn91cz2"; depends=[gbm RColorBrewer]; }; +mvtboost = derive { name="mvtboost"; version="0.3"; sha256="1k51w1imxx8agbf4pnfmzddv034npapn2wxr4y6kl62nlj548kd4"; depends=[gbm RColorBrewer]; }; mvtmeta = derive { name="mvtmeta"; version="1.0"; sha256="0g0d4lrz854wkd0dz5aiad54i46aqkfhsq6cpbsfv0w5l2kwiqqz"; depends=[gtools]; }; mvtnorm = derive { name="mvtnorm"; version="1.0-3"; sha256="107p5s3vvwfx51r1wsy8214y3ci00dl7l4jymk702w9mxsb3nc7i"; depends=[]; }; mvtsplot = derive { name="mvtsplot"; version="1.0-1"; sha256="0g5grrha77rsnkfasw5pxnpmkl7vgb728ms8apyg8xnbmgilg9vv"; depends=[RColorBrewer]; }; @@ -4938,7 +5129,7 @@ nLTT = derive { name="nLTT"; version="1.1"; sha256="0hrrwil7vcym7zjbnzviw13p60y1 nabor = derive { name="nabor"; version="0.4.6"; sha256="0kd0h8n5yrn16vrfdchdiqzws05q0fm8z577p20dm18gdcs2vbxv"; depends=[BH Rcpp RcppEigen]; }; nadiv = derive { name="nadiv"; version="2.14.1"; sha256="1k94shkcdylaqm2j7yp23nx0c7c6n0a9im3afmfkws2ax6bf2yjf"; depends=[Matrix]; }; namespace = derive { name="namespace"; version="0.9.1"; sha256="1bsx5q19l7m3q2qys87izvq06zgb22b7hqblx0spkvzgiiwlq236"; depends=[]; }; -nanop = derive { name="nanop"; version="2.0-5"; sha256="0zdn2hgp516hcqpc2w2vzhhalcr05dlw539zj3afzi75w8rwb71z"; depends=[distrEx rgl]; }; +nanop = derive { name="nanop"; version="2.0-6"; sha256="007gdc93pk0vpfmsw7zgfma2k1045n2cxwwsyy276smy0ys9fdhp"; depends=[distrEx rgl]; }; nasaweather = derive { name="nasaweather"; version="0.1"; sha256="05pqrsf2vmkzc7l4jvvqbi8wf9f46854y73q2gilag62s85vm9xb"; depends=[]; }; nat = derive { name="nat"; version="1.7.0"; sha256="1bdkndj4klvm8i19sw60gpqhbdbsmxn3rrk0iyhd097k96qipkj6"; depends=[digest filehash igraph nabor nat_utils plyr rgl yaml]; }; nat_nblast = derive { name="nat.nblast"; version="1.5"; sha256="1slpk126fwgn90j3aazlf3pw2ij050dghc1yqadv6mjcj82qpm5i"; depends=[dendroextras nabor nat plyr rgl spam]; }; @@ -4960,22 +5151,22 @@ ndl = derive { name="ndl"; version="0.2.16"; sha256="1l56kg3x4579hzr4sig3iwrd81r ndtv = derive { name="ndtv"; version="0.6.1"; sha256="0833n3ddhx1ixqi540j6b2bfmzhpdpg8cwd6d5y7shfxslrnpay9"; depends=[animation base64 jsonlite MASS network networkDynamic sna statnet_common]; }; neariso = derive { name="neariso"; version="1.0"; sha256="1npfd5g5xqjpsm5hvhwy7y84sj5lqw9yzbnxk6aqi80gfxhfml4c"; depends=[]; }; needy = derive { name="needy"; version="0.2"; sha256="1ixgpnwrg6ph1n5vy91qhl1mqirli9586nzkmfvzjrhdvrm0j5l0"; depends=[]; }; -negenes = derive { name="negenes"; version="1.0-1"; sha256="0g8m3idjm24cf9b1wngw2pv1axgnv9mk5wqs78zgwvn0m67ypsiz"; depends=[]; }; +negenes = derive { name="negenes"; version="1.0-3"; sha256="19xlw3l90gwan0p40r0s2xy0yv8id32h1i56496spgi02vh3pnsl"; depends=[]; }; neldermead = derive { name="neldermead"; version="1.0-10"; sha256="1snavf90yb12sydic7br749njbnfr0k7kk20fy677mg648sf73di"; depends=[optimbase optimsimplex]; }; -neotoma = derive { name="neotoma"; version="1.3.2"; sha256="0c62bawr2zw937ics45hvs8dicjzrhsjk0mf8kxx3h1cw42q9ayb"; depends=[plyr RCurl reshape2 RJSONIO]; }; +neotoma = derive { name="neotoma"; version="1.4.0"; sha256="1zdjrlm81q7p373xp017g8qvc0i9wk1md4fjbgga11l92svjm50k"; depends=[plyr RCurl reshape2 RJSONIO]; }; nephro = derive { name="nephro"; version="1.1"; sha256="06lxkk67n5whgc78vrr7gxvnrz38pxlsj4plj02zv9fwlzbb9h6p"; depends=[]; }; nestedRanksTest = derive { name="nestedRanksTest"; version="0.2"; sha256="0r08jp8036cz2dl1mjf4qvv5qdcvsrad3cwj88x31xx35c4dnjgj"; depends=[]; }; netClass = derive { name="netClass"; version="1.2.1"; sha256="04yrj71l5p83rpwd0iaxdkhm49z9qp3h6b7rp9cgav244q060m9y"; depends=[AnnotationDbi graph igraph kernlab Matrix ROCR samr]; }; -netassoc = derive { name="netassoc"; version="0.4.7"; sha256="1i40njarcdddlclsizd7p9bvan70lc32d9a3qjgdp5bs6mm9l4kx"; depends=[igraph]; }; +netassoc = derive { name="netassoc"; version="0.6.0"; sha256="1lc51aqiliqmvklxilzd4wlnrzv1q6aik3cj5rz33ca17mvdvblz"; depends=[corpcor huge igraph rags2ridges vegan]; }; netgen = derive { name="netgen"; version="1.1"; sha256="0wbsssskhih6fyb0xfpnd3sjp25z8h0jyy3437ykgh7g24hh0i1z"; depends=[BBmisc checkmate ggplot2 igraph lhs lpSolve mvtnorm stringr]; }; netgsa = derive { name="netgsa"; version="2.0"; sha256="04id2wcrmi0lqvn4a8qhqkc3z076b8xd7jhw9hsmaz21g9cxdfx8"; depends=[corpcor cvTools glasso glmnet igraph]; }; netmeta = derive { name="netmeta"; version="0.8-0"; sha256="0qadg3h9aa3qx51hvqikzb5s087r5ihmp6ffxg5x1bmw86yfi2bq"; depends=[magic meta]; }; nets = derive { name="nets"; version="0.1"; sha256="0zshiavdi1z8mq6q93vsyb5wx5nq37qln9gcyvamvi2pgy5xg4k2"; depends=[igraph]; }; nettools = derive { name="nettools"; version="1.0.1"; sha256="13fw316r31g9cjlbyy9qfccsyagxb6pyvn5k32f166b7vj92mk1q"; depends=[combinat dtw igraph Matrix minerva minet rootSolve WGCNA]; }; netweavers = derive { name="netweavers"; version="1.1"; sha256="0p8hb3m0lbkf0pw9vdhv94spdba432klpqgn07jvxfhfhmr8cyz0"; depends=[Biobase BiocGenerics igraph limma]; }; -network = derive { name="network"; version="1.12.0"; sha256="04n634ia6m86zkmjdla8v6j4x11kdrx72gaj4am7iwv1ha14nfks"; depends=[]; }; -networkD3 = derive { name="networkD3"; version="0.1.8"; sha256="1hn52x4dwc6mizyqxjk4id6xai8bx5zp100b05hmjpd3q73mq97h"; depends=[htmlwidgets plyr rjson]; }; -networkDynamic = derive { name="networkDynamic"; version="0.7.1"; sha256="0iv4lyfxmjllxk0cx09gdrg7zf2myf57wd3a2gqymids5gvpsy2d"; depends=[network statnet_common]; }; +network = derive { name="network"; version="1.13.0"; sha256="11sg330xb7gcnl3f6lwhhjdabz6mk43828i2np635pqw4s4yl13s"; depends=[]; }; +networkD3 = derive { name="networkD3"; version="0.2.1"; sha256="0gg4psrzqppskczggfr9bwii3gx2v48hybr9q67aarfmrdrxyyvn"; depends=[htmlwidgets plyr rjson]; }; +networkDynamic = derive { name="networkDynamic"; version="0.8.0"; sha256="0w95zvbshqdsccy05brmxa24ykhd10hljjnwnwg6n896z54g9n9x"; depends=[network statnet_common]; }; networkDynamicData = derive { name="networkDynamicData"; version="0.1.0"; sha256="1vln4n8jldqi1a6qb9j9aaxyjb8pfgwd8brnsqr8hp9lm3axd24b"; depends=[network networkDynamic]; }; networkTomography = derive { name="networkTomography"; version="0.3"; sha256="1hd7av231zz0d2f9ql5p6c95k7dj62hp0shdfshmyfjh8900amw7"; depends=[coda igraph KFAS limSolve plyr Rglpk]; }; networkreporting = derive { name="networkreporting"; version="0.0.1"; sha256="1vfvx5gf90p31gy6kcv7l2ibzbfl382gffa79dl8gascbsg6s8z8"; depends=[functional ggplot2 plyr reshape2 stringr]; }; @@ -4989,12 +5180,14 @@ ngram = derive { name="ngram"; version="1.1"; sha256="0p5wm55anch1i0y3478f5d4siv ngramr = derive { name="ngramr"; version="1.4.5"; sha256="1cqapla0lknxl669w5x3av9nr4vy9qrfznznqj22xlqaj0p53c18"; depends=[ggplot2 httr plyr RCurl reshape2 rjson scales stringr]; }; ngramrr = derive { name="ngramrr"; version="0.1.1"; sha256="1h12nm0dg2mkq5b2zn12cij24nl8inqn04m4jxdi1lr6r81y1wsq"; depends=[tau]; }; ngspatial = derive { name="ngspatial"; version="1.0-5"; sha256="0dd7gm6irq08054ndj2gykz4nnfqfq3wbivg6fmlkdnn18kbckkk"; depends=[batchmeans Rcpp RcppArmadillo]; }; +nhanesA = derive { name="nhanesA"; version="0.6.0"; sha256="1r975kb8f5379h4vyad1jn9rbfas6y8z05fwzqm1zi36bdhh7xbz"; depends=[Hmisc magrittr plyr rvest stringr xml2]; }; nhlscrapr = derive { name="nhlscrapr"; version="1.8"; sha256="0y2shw3g84flh88a15czdsb62xwdqxhvzkn4kpbn0k9ddyfzxc48"; depends=[biglm bitops RCurl rjson]; }; nice = derive { name="nice"; version="0.4"; sha256="1alq8n8pchn9v0fvwrifdisazkh519x109bqgnpgnwf79wblmnhy"; depends=[]; }; nicheROVER = derive { name="nicheROVER"; version="1.0"; sha256="0sa7wfpzkin78vz48vwa5iac82v5l1s3zczdxz8sc2kyg22fj0aw"; depends=[mvtnorm]; }; +nivm = derive { name="nivm"; version="0.3"; sha256="111jkgirgsl1j36xgwi81wzwxial3vdw8mqzi1faldxxd9a2cixm"; depends=[bpcp ssanv]; }; nlWaldTest = derive { name="nlWaldTest"; version="1.0.1"; sha256="1rwpkkddivpcamhsp22nmy5gz2006y9kbdzj8lhh20s1vsyhn2b3"; depends=[numDeriv stringr]; }; -nleqslv = derive { name="nleqslv"; version="2.8"; sha256="1jkf02mcz16d8h8b7h5m13lpx6z2shpap5vncapszwa9js6vps67"; depends=[]; }; -nlme = derive { name="nlme"; version="3.1-121"; sha256="15cki2xn1d3bsb20kav18kmdj9r3v7kz89wmh8c7qcx75qbmr3zd"; depends=[lattice]; }; +nleqslv = derive { name="nleqslv"; version="2.9"; sha256="06x3qcscsf9cfhppw3ha1g3br3p7fy4z7ijhmg087m119laag9cx"; depends=[]; }; +nlme = derive { name="nlme"; version="3.1-122"; sha256="08kcfd5ayrznd8sabhh1wi1psx2l8jai5cgj1axcjvaa5l1r7i1n"; depends=[lattice]; }; nlmeODE = derive { name="nlmeODE"; version="1.1"; sha256="1zp1p98mzbfxidl87yrj2i9m21zlfp622dfnmyg8f2pyijhhn0y2"; depends=[deSolve lattice nlme]; }; nlmeU = derive { name="nlmeU"; version="0.70-3"; sha256="05kxymgybziiijpb17bhcd9aq4awmp5km67l2py9ypakivi0hc6l"; depends=[nlme]; }; nlmrt = derive { name="nlmrt"; version="2013-9.25"; sha256="0z2ih61rpqzk64qagiwbx396vwb28jhqk8b4kxchca0il3fzqqav"; depends=[]; }; @@ -5002,13 +5195,13 @@ nloptr = derive { name="nloptr"; version="1.0.4"; sha256="1cypz91z28vhvwq2rzqjrb nlreg = derive { name="nlreg"; version="1.2-2"; sha256="1pi7057ldiqb12kw334iavb4i92ziy1kv4amcc4d1nfsjam03jxv"; depends=[statmod survival]; }; nls2 = derive { name="nls2"; version="0.2"; sha256="0k46i865p6jk0jchy03jiq131pc20h9crn3hygzy305rdnqvaccq"; depends=[proto]; }; nlsMicrobio = derive { name="nlsMicrobio"; version="0.0-1"; sha256="0676n78265z00dacmq593c9l2239ii574djm9s7i7w8jk1kdhzx2"; depends=[nlstools]; }; -nlsem = derive { name="nlsem"; version="0.4.1"; sha256="11i1dma87bx55dhqb8j9ccc7cg3qc9ppmg6g0a61xdkw2nlg42vm"; depends=[gaussquad mvtnorm nlme]; }; +nlsem = derive { name="nlsem"; version="0.5.1"; sha256="0zcspszv7kn436ysg2v75wnwmajwn1sc3zgy1s2km1ii7fyrhpvp"; depends=[gaussquad mvtnorm nlme]; }; nlsmsn = derive { name="nlsmsn"; version="0.0-4"; sha256="1gvpy8rq020l64bdw6n7kv354l7gwa2rgxarm6k0mqq7z21fxf58"; depends=[]; }; nlstools = derive { name="nlstools"; version="1.0-2"; sha256="0mjn1j9fqqgr3qgdr0ki4lfbd0yrkanvya4y2483q3wklqa6qvjc"; depends=[]; }; nlt = derive { name="nlt"; version="2.1-3"; sha256="1j0xrrbr1hvfda8rvnc17lj96m6cz24faxvwn68ilf7j1ab2lkgn"; depends=[adlift EbayesThresh]; }; nlts = derive { name="nlts"; version="0.2-0"; sha256="14kvzc1p4anj9f7pg005pcbmc4k0917r49pvqys9a0a51ira67vb"; depends=[acepack locfit]; }; nmcdr = derive { name="nmcdr"; version="0.3.0"; sha256="1557pdv7mqdjwpm6d9zw3zfbm1s8ai3rasd66nigscmlq102w745"; depends=[CDFt]; }; -nnet = derive { name="nnet"; version="7.3-10"; sha256="0jmhl86bki1a21na2ln5m69kqkj856891jwy73nl8qcr51vl0q7i"; depends=[]; }; +nnet = derive { name="nnet"; version="7.3-11"; sha256="0kg5br2m6pn82hki1hsr7q6cjvzi92y4338qfq7c3iwy9zxd57lp"; depends=[]; }; nnlasso = derive { name="nnlasso"; version="0.2"; sha256="1q1psc6s5xw2nsz09q20n5rksq07gx21q9ap22dr7haln5jrvpzr"; depends=[]; }; nnls = derive { name="nnls"; version="1.4"; sha256="07vcrrxvswrvfiha6f3ikn640yg0m2b4yd9lkmim1g0jmsmpfp8f"; depends=[]; }; nodeHarvest = derive { name="nodeHarvest"; version="0.7-3"; sha256="0nh3g50rk9qzrarpf29kijwkz9v60682i0ag77j2ipyvhhbpwpkc"; depends=[quadprog randomForest]; }; @@ -5022,7 +5215,7 @@ nonparaeff = derive { name="nonparaeff"; version="0.5-8"; sha256="1kkn68m7cqlzx3 nonrandom = derive { name="nonrandom"; version="1.42"; sha256="0icm23hw593322z41wmjkwxqknh2pa9kpzbrch7xw1mhp93sd5ll"; depends=[lme4]; }; nontarget = derive { name="nontarget"; version="1.7"; sha256="1hnqkb8bpp89y42gjrfh7m3lxhif9dyhcmr6yfss8x3lzf018gk2"; depends=[enviPat mgcv nontargetData]; }; nontargetData = derive { name="nontargetData"; version="1.1"; sha256="07cdbpmn64sg4jfhljdcx503d55azyz58x7nkji044z3jmdryzqw"; depends=[]; }; -nopp = derive { name="nopp"; version="1.0.4"; sha256="00wn0pnqpy9xll0aa8ah45ldgk1ziw464x8zkc8iq4l2a22lgn4v"; depends=[mlogit]; }; +nopp = derive { name="nopp"; version="1.0.6"; sha256="0qcj3bci3iwq88vgbhxavvrkz8n276rx4q16f2vcqszzf6zajfr5"; depends=[mlogit]; }; nor1mix = derive { name="nor1mix"; version="1.2-1"; sha256="1sh7373w8z1mqkk8wvwzxab57pg1s3wcs6y6sx0sng7pf429x2m3"; depends=[]; }; nordklimdata1 = derive { name="nordklimdata1"; version="1.2"; sha256="0c2hbh3qy8nrs275lxpzfgqsfgwp81m4kv0layvnjj09fcybm54x"; depends=[]; }; norm = derive { name="norm"; version="1.0-9.5"; sha256="01j1h412yfjx5r4dd0w8rhlf55997spgb6zd6pawy19rgw0byp1h"; depends=[]; }; @@ -5035,7 +5228,7 @@ notifyR = derive { name="notifyR"; version="1.02"; sha256="0jx76ic5r1crcgg0n0yqn novelist = derive { name="novelist"; version="1.0"; sha256="0wzx0vkqvl9sfhbbrzylsxhm3qmjj5w8sy5w6gvd104fn84d49yk"; depends=[]; }; noweb = derive { name="noweb"; version="1.0-4"; sha256="17s65m1m8bj286l9m2h54a8j799xaqadwfrml11732f8vyrzb191"; depends=[]; }; np = derive { name="np"; version="0.60-2"; sha256="0zs1d4mmgns7s26qcplf9mlz9rkp6f9mv7abb0b9b2an23y6gmi5"; depends=[boot cubature]; }; -npIntFactRep = derive { name="npIntFactRep"; version="1.2"; sha256="0fx5923wdzz6122bbyil5imwbhgwlm50wcrscy78qdx8n4n07rv8"; depends=[ez plyr]; }; +npIntFactRep = derive { name="npIntFactRep"; version="1.3"; sha256="1m0nmnp8gqi7kapx38igcb8s2g5cjj05n4x4das7xk98hsablkk7"; depends=[ez plyr]; }; nparLD = derive { name="nparLD"; version="2.1"; sha256="1asq00lv1rz3rkz1gqpi7f83p5vhzfib3m7ka1ywpf2wfbfng27n"; depends=[MASS]; }; nparcomp = derive { name="nparcomp"; version="2.6"; sha256="111ypwyc885lvn64a5sb2k552j6wr3iihmhgx5y475axdiva5pzf"; depends=[multcomp mvtnorm]; }; npbr = derive { name="npbr"; version="1.2"; sha256="0l6r9cwrhbi37p8prrjcli7rpvlxgzma2m1wqck5y97wx1fnh4h3"; depends=[Benchmarking np quadprog Rglpk]; }; @@ -5044,8 +5237,9 @@ npde = derive { name="npde"; version="2.0"; sha256="1cp4k7jvsw9rc6rrck902nqqjaf2 nplplot = derive { name="nplplot"; version="4.5"; sha256="1dpbs0jb34gv0zj528357z1j2pwahjbp04rm7jir6qk0jhyaxxgh"; depends=[]; }; nplr = derive { name="nplr"; version="0.1-4"; sha256="03yq8f2bfdyi21d8kqcca0byjrw9a7pgp0c6fwpk1lnniaabzn2d"; depends=[]; }; npmlreg = derive { name="npmlreg"; version="0.46-1"; sha256="1gddl6diw8ix8vz7n1r4ps9cjx3q00mafpapskjk7pcz69m6hfv1"; depends=[statmod]; }; -npmv = derive { name="npmv"; version="2.2"; sha256="1aqlx1y3bxbqp13q0vajwffj8srb6s04d5r2h08m9fk5hhp9l3jf"; depends=[Formula]; }; +npmv = derive { name="npmv"; version="2.3.0"; sha256="0719p38fh37lz7yclqp1l03pn8j051jm8hfzvxjd7m5kg0p083rh"; depends=[Formula]; }; nppbib = derive { name="nppbib"; version="1.0-0"; sha256="075jb13zckkh66jwdmdlq4d2drjcc3lkj26px3w79b91223yymf2"; depends=[]; }; +npsf = derive { name="npsf"; version="0.1.6"; sha256="0zaz7yxb39x8c04bx5gzrryp9jn3sylk4gyv1nlrgqig8v7020qy"; depends=[Formula]; }; npsm = derive { name="npsm"; version="0.5"; sha256="12jq6ygp3di5rknh7izrr3bxvpn6bqnj3jhfxzf29yf0bd86hzqk"; depends=[plyr Rfit]; }; npsp = derive { name="npsp"; version="0.3-6"; sha256="1wiv4gp3y1c26xaq8zssias3j3h8mpb6izcmcarghvnfhj32l8jb"; depends=[quadprog]; }; npst = derive { name="npst"; version="2.0"; sha256="1y5ij3nmh9pj6p97jpx75g26sk508mznr0l67cwj381zfb77hj1n"; depends=[]; }; @@ -5063,6 +5257,7 @@ nutshell_audioscrobbler = derive { name="nutshell.audioscrobbler"; version="1.0" nutshell_bbdb = derive { name="nutshell.bbdb"; version="1.0"; sha256="19c4047rjahyh6wa6kcf82pj09smskskvhka9lnpchj13br8rizw"; depends=[]; }; nws = derive { name="nws"; version="1.7.0.1"; sha256="1fn92n6brjhh8hpvhax7211cphx2cn0rl99kjqksig6z7242c316"; depends=[]; }; nycflights13 = derive { name="nycflights13"; version="0.1"; sha256="15bqaphxwqpdzr4bkn6qgbjb3knja5hk34qxjd6xhpjzkgfs5c0b"; depends=[]; }; +oai = derive { name="oai"; version="0.1.0"; sha256="1cd1z51z343bh0kbw5j77zgldqhfvfmd9n0dnkzp7hfpq4py3nwp"; depends=[httr xml2]; }; oapackage = derive { name="oapackage"; version="2.0.23"; sha256="1kkwxwgb23i4m8dlh1ybskardwf8ql0m18cv9c5zi1qd2vkk5dx0"; depends=[RcppEigen]; }; oaxaca = derive { name="oaxaca"; version="0.1.2"; sha256="1ghdrpjp2p4nlwskvs8n8d8ixzf3cdq9k9q49zvq8ag0dhwyswzd"; depends=[Formula ggplot2 reshape2]; }; objectProperties = derive { name="objectProperties"; version="0.6.5"; sha256="0wn19byb1ia5gsfmdi6cj05pnlxbr3zcrjabjg3g1d7b58nz7wlh"; depends=[objectSignals]; }; @@ -5077,24 +5272,27 @@ occ = derive { name="occ"; version="1.0"; sha256="1rpgq6mqrdzz52ln897f5k8yyz5i14 oce = derive { name="oce"; version="0.9-17"; sha256="0j1sj9qlcg0yrdhpqinrpaa8dv4d8c8hjl48028x75frsc784pip"; depends=[gsw]; }; ocean = derive { name="ocean"; version="0.2-4"; sha256="1554iixfbw3k6w9xh3hgbiygszqvj5ci431cfmnx48jm27h2alqg"; depends=[ncdf4 proj4]; }; ocedata = derive { name="ocedata"; version="0.1.3"; sha256="0lzsyaz8zb6kiw86fnaav2g2wfdhyicxvm81ly5a9z4mjch3qj02"; depends=[]; }; -odds_converter = derive { name="odds.converter"; version="1.1"; sha256="0x57hrb54pvk1prxl87yz3mwvxf3fxranzg706vdiwkcnjc4damm"; depends=[]; }; +ocomposition = derive { name="ocomposition"; version="1.1"; sha256="0fk8ia95yjlvyvmjw7qg72piqa40kcqq9wlb3flc6a81pys1ycb5"; depends=[bayesm coda]; }; +odds_converter = derive { name="odds.converter"; version="1.2"; sha256="1vbbi8w0yayi22lmg1wfzpf2bmdsx0h0w3h1msm2c1h16qyyrxr8"; depends=[]; }; odeintr = derive { name="odeintr"; version="1.3"; sha256="12y5hr6f7bj3aqj4gd0hlj495c5163jn0liksspk5jpqcmpsgdg3"; depends=[BH Rcpp]; }; odfWeave = derive { name="odfWeave"; version="0.8.4"; sha256="1rp9j3snkkp0fqmkr6h6pxqd4cxkdfajgh4vlhpz56gr2l9j48q5"; depends=[lattice XML]; }; odfWeave_survey = derive { name="odfWeave.survey"; version="1.0"; sha256="0cz7dxh1x4aflvfrdzhi5j64ma5s19ma8fk9q2m086j11a1dw3jn"; depends=[odfWeave survey]; }; oem = derive { name="oem"; version="1.02.1"; sha256="0z9k0jhpp5dayyin6v8p26rgl8s983hnpsk195c9z458i7nbmrpd"; depends=[Rcpp RcppArmadillo]; }; oglmx = derive { name="oglmx"; version="1.0.3"; sha256="01r0j7d2l4pf61x2q4pa6pnkv2yzsk2jb62cvh0jz2rhkpvqjniq"; depends=[maxLik]; }; okmesonet = derive { name="okmesonet"; version="0.1.5"; sha256="1kzyzmg702ayzphn9jsk64m51mlnz37ylxiwq5gsr23vaiida680"; depends=[plyr]; }; +olctools = derive { name="olctools"; version="0.2.1"; sha256="0hnsv5b283lscj3b3pygjzyghc0glpavpijl7drv59ka9914ixl6"; depends=[Rcpp]; }; omd = derive { name="omd"; version="1.0"; sha256="0s1wcgivqapbkzjammga8m12gqgw113729kzfzgn02nsfzmsxspv"; depends=[]; }; oncomodel = derive { name="oncomodel"; version="1.0"; sha256="1jyyq9znffiv7rg26mjldbwc5yi2f4f8npsd2ykhxyacb3g96fp1"; depends=[ade4]; }; onemap = derive { name="onemap"; version="2.0-4"; sha256="00xmhm5qy0ycw0mnlyl20vfw0wxmpb36f07k0jj92c4zbpwjiygx"; depends=[tkrplot]; }; +onewaytests = derive { name="onewaytests"; version="1.0"; sha256="0k249cdy1j7gc9c7bajgv29jshv5c4yqm1145w9rfvq2rs40vx7r"; depends=[]; }; onion = derive { name="onion"; version="1.2-4"; sha256="0x3n9mwknxjwhpdg8an0ilix5cb8dyy5fqnb6nxx7ww885k0381a"; depends=[]; }; -onlinePCA = derive { name="onlinePCA"; version="1.0-1"; sha256="0gca0ijcc30b3z5i390n1yk6c7sc15z8d0zpxpfb3hh99g7vinx4"; depends=[rARPACK Rcpp RcppArmadillo]; }; -onls = derive { name="onls"; version="0.1-0"; sha256="1kfgikswddly9lar6wa1hhz89rap0pql9h181s7i68wa20xdg05z"; depends=[minpack_lm]; }; -opefimor = derive { name="opefimor"; version="1.1"; sha256="0xv57l38wx3w67h312g5xcpi9m7ggd6crqvqjh5gddq0g1g93bjq"; depends=[]; }; +onlinePCA = derive { name="onlinePCA"; version="1.2"; sha256="1q197niblb0gv4zg40wymyylxy255lhaf3pj1v8xaf16cz0b6i5r"; depends=[rARPACK Rcpp RcppArmadillo]; }; +onls = derive { name="onls"; version="0.1-1"; sha256="0m7pnlzkqwzi6jncjzxzfvznipd4wg03zd9fc0ymwm9jvhm4p14g"; depends=[minpack_lm]; }; +opefimor = derive { name="opefimor"; version="1.2"; sha256="06j5diwp42x7yrhclwyiimfwmx66y23dkwlnkd2lj2zcsgam9s8w"; depends=[]; }; openNLP = derive { name="openNLP"; version="0.2-5"; sha256="0jc4ii6zsj0pf6nlx3l0db18p6whp047gzvc7q0dbwpa8q4il2mb"; depends=[NLP openNLPdata rJava]; }; openNLPdata = derive { name="openNLPdata"; version="1.5.3-2"; sha256="1472gg651cdd5d9xjxrzl3k7np77liqnh6ysv1kjrf4sfx13pp9q"; depends=[rJava]; }; openair = derive { name="openair"; version="1.6"; sha256="0pmwibwhi44zd4yr6vaqgfa9sz7b60w3aqr8j1pn5cxqnzznwfp9"; depends=[cluster dplyr hexbin lattice latticeExtra lazyeval mapdata mapproj maps mgcv plyr RColorBrewer Rcpp reshape2 RgoogleMaps]; }; -opencpu = derive { name="opencpu"; version="1.4.6"; sha256="19anprhkwqw2kii417qy3laalrlj207zfvklc05m0vz9sra7sxj0"; depends=[brew devtools evaluate httpuv httr jsonlite knitr openssl]; }; +opencpu = derive { name="opencpu"; version="1.5.1"; sha256="09lbxwnjzrdgiq3hi2ak3ary4nqfv1368rrbxrf32ki5qh9is8la"; depends=[brew devtools evaluate httpuv httr jsonlite knitr openssl]; }; openintro = derive { name="openintro"; version="1.4"; sha256="1k6pzlsrqikbri795vic9h191nf2j7v7hjybjfkrx6847c1r4iam"; depends=[]; }; openssl = derive { name="openssl"; version="0.4"; sha256="1gfhzxjjssid2z8xmw3vnnd4gj2f6a3zzazkhpg9b1ymmcp9b288"; depends=[]; }; opentraj = derive { name="opentraj"; version="1.0"; sha256="13nqal96199l8vkgmkvl542ksnappkscb6rbdmdapxyi977qrgxk"; depends=[doParallel foreach maptools openair plyr raster reshape rgdal sp]; }; @@ -5113,6 +5311,7 @@ optimbase = derive { name="optimbase"; version="1.0-9"; sha256="0ivz24kf3yacgq5b optimsimplex = derive { name="optimsimplex"; version="1.0-5"; sha256="1aiq0w2zlra3k6x4hf2rglb6bj8w25yc8djnpgm508kkrbv3cc17"; depends=[optimbase]; }; optimx = derive { name="optimx"; version="2013.8.7"; sha256="0pbd7s02isj24npi4m1m1f008xqwzvwp3kn472wz8nmy4zrid30s"; depends=[BB dfoptim minqa numDeriv Rcgmin Rvmmin setRNG svUnit ucminf]; }; optiscale = derive { name="optiscale"; version="1.1"; sha256="1c263w9df66m7lgvzpdfm2zwx9nj8wcdpgh5gijachr2dzffmrp2"; depends=[lattice]; }; +optismixture = derive { name="optismixture"; version="0.1"; sha256="0nacfbqlnzajp1hfhf0yzm2d86fxpp4kw2zy33q8k2d4sr56bird"; depends=[Matrix mvtnorm]; }; optmatch = derive { name="optmatch"; version="0.9-5"; sha256="1dgsxd6w2fgy07yzihbrg30ya0lmy146m70cfaaxr6pnr8d0rszr"; depends=[digest Rcpp RItools survival]; }; optparse = derive { name="optparse"; version="1.3.0"; sha256="02sy28imvssr49pngdbg9qbx1h1fyjl11j7nql55m10a7cdzhwd4"; depends=[getopt]; }; optpart = derive { name="optpart"; version="2.1-1"; sha256="0m2nsrynqbw9sj7cp7c37grx9g20dld2f26g0xzbj16wz7whgp02"; depends=[cluster labdsv MASS plotrix]; }; @@ -5130,7 +5329,7 @@ orderedLasso = derive { name="orderedLasso"; version="1.7"; sha256="0vrh89nrmpi8 ordinal = derive { name="ordinal"; version="2015.6-28"; sha256="0lckjzjq2k8rlibrjf5s0ccf17vcvns5pgzvjjnl3wibr2ff4czs"; depends=[MASS Matrix ucminf]; }; ordinalCont = derive { name="ordinalCont"; version="0.4"; sha256="1inms74l4zx6r526xd0v79v18bcqa76xwsgfvap0fizyv2dvgpim"; depends=[boot fastGHQuad ucminf]; }; ordinalgmifs = derive { name="ordinalgmifs"; version="1.0.2"; sha256="1rbn2mb516hdr0chny1849m1aq0vb0vmr636b4fp914l5zh75vgi"; depends=[]; }; -ore = derive { name="ore"; version="1.2.0"; sha256="1q7jvbpjwx56h62hpi0lh0b154hcdzb6d5x1ic69mam7ml4lza80"; depends=[]; }; +ore = derive { name="ore"; version="1.2.1"; sha256="0bbliizfhfbpd75hyjvn9qq9k572vrlqvgp3bm4s48zf8zdsddid"; depends=[]; }; orgR = derive { name="orgR"; version="0.9.0"; sha256="1q4qbwnbhmja8rqiph7g7m4wxhzhk9mh91x1jgbnky8bs4ljdgrx"; depends=[data_table ggplot2 ggthemes lubridate stringr]; }; orientlib = derive { name="orientlib"; version="0.10.3"; sha256="1qi46hkz73b8722zc3w6wvsq1ydlk37yxn9rd1dqygqbs1svkmvv"; depends=[]; }; orloca = derive { name="orloca"; version="4.2"; sha256="14accc5kcvvin5qav6g3rx10by00r0b8970nd09w4c09nhwyblcd"; depends=[]; }; @@ -5143,8 +5342,9 @@ orthogonalsplinebasis = derive { name="orthogonalsplinebasis"; version="0.1.6"; orthopolynom = derive { name="orthopolynom"; version="1.0-5"; sha256="1gvhqx6jlh06hjmkmbsl83gri0gncrm3rkliyzyzmj75m8vz993d"; depends=[polynom]; }; osDesign = derive { name="osDesign"; version="1.7"; sha256="0y68pnsmq4nlmfsn28306q2kxab200pirr6ha0w4himzpnw1sil3"; depends=[]; }; osmar = derive { name="osmar"; version="1.1-7"; sha256="0q6d8nw7d580bnx66mjc282dx45zw9srczz90b520hjcli4w3i3r"; depends=[geosphere RCurl XML]; }; +osrm = derive { name="osrm"; version="1.0"; sha256="1kd2rp60krgan5qgqijlwkb0myg5npdsmrvkq2cp780k74sk2mvp"; depends=[jsonlite RCurl reshape2 XML]; }; ouch = derive { name="ouch"; version="2.9-2"; sha256="05c3bdxpjcgmimk0zl9744f0gmchhpm7myzjrx5fhpbp5h6jayaf"; depends=[subplex]; }; -outbreaker = derive { name="outbreaker"; version="1.1-5"; sha256="1k39pzqbjah4dwwjyaccb13c1aww8i4kdfjanxc4hzkl8av7s8db"; depends=[adegenet ape igraph]; }; +outbreaker = derive { name="outbreaker"; version="1.1-6"; sha256="0sk4qq2pgkl0iy3761xnxzadl4iqcf2ak872gqi5cgwq32a622cc"; depends=[adegenet ape igraph]; }; outliers = derive { name="outliers"; version="0.14"; sha256="0vcqfqmmv4yblyp3s6bd25r49pxb7hjzipiic5a82924nqfqzkmn"; depends=[]; }; overlap = derive { name="overlap"; version="0.2.4"; sha256="1pp3fggkbhif52i5lpihy7syhq2qp56mjvsxgbgwlcfbzy27ph1c"; depends=[]; }; oz = derive { name="oz"; version="1.0-20"; sha256="1d420606ldyw2rhl8dh5hpscvjx6vanbq0hrg81m7b6v0q5rkfri"; depends=[]; }; @@ -5162,6 +5362,7 @@ pack = derive { name="pack"; version="0.1-1"; sha256="0x4p8clwp49s2y67y7in530xwh packClassic = derive { name="packClassic"; version="0.5.2"; sha256="04a1sg9vx3r0sq54q9kj0kpahp6my246jy3bivgy09g5fjk0dmkj"; depends=[]; }; packHV = derive { name="packHV"; version="1.8"; sha256="0dr2picjd7mm633vw29524f3n4jpyillpzi9cg7yc2cymxnrgvyg"; depends=[survival WriteXLS]; }; packS4 = derive { name="packS4"; version="0.9.3"; sha256="0kkh4lfdbr2ydyfpymwrdkms1d4mj8430p6vxvj5wrgl4vh85gwd"; depends=[codetools]; }; +packagetrackr = derive { name="packagetrackr"; version="0.1.1"; sha256="0xjq27j7bd7lps0vp9gdinxn19wl10k2cp9wb2xjih7p6l0wd57g"; depends=[dplyr httr magrittr rappdirs]; }; packcircles = derive { name="packcircles"; version="0.1.1"; sha256="0xvw283gyjak3j66g8x5jy2jdrkcxwhfzck2wdq2q6a6nxbyb0i1"; depends=[Rcpp]; }; packdep = derive { name="packdep"; version="0.3.1"; sha256="1827h9xcvgdad9nwz9k3hi79jc33yr7dnxy4xn2frp3fdh4q81ll"; depends=[igraph]; }; packrat = derive { name="packrat"; version="0.4.4"; sha256="1yxcj9jc1cswimirnxxzir1ac0xva57w57365k8406a8dwx1v650"; depends=[]; }; @@ -5172,13 +5373,14 @@ pairedCI = derive { name="pairedCI"; version="0.5-4"; sha256="03wf526n3bbr2ai44z pairheatmap = derive { name="pairheatmap"; version="1.0.1"; sha256="1awmqr5n9gbqxadkblpxwcjl9hm73019bwwfwy1f006jpn050d6l"; depends=[]; }; pairsD3 = derive { name="pairsD3"; version="0.1.0"; sha256="0ql6pqijf24pfyid52hmf5fmh4w1ca3sm47z9vknqpnjbn47v8q2"; depends=[htmlwidgets shiny]; }; pairwise = derive { name="pairwise"; version="0.2.5"; sha256="0r08v95f6f2safi6c0x84v5gib5qnkv46dmi97rdb9l2xzly249b"; depends=[]; }; -pairwiseCI = derive { name="pairwiseCI"; version="0.1-22"; sha256="1lgir9gcikx8c9pd2wdsqnik9rwr4qkymcf4ndp8s491vj6cm6sa"; depends=[binMto boot coin MASS MCPAN mratios]; }; +pairwiseCI = derive { name="pairwiseCI"; version="0.1-25"; sha256="0wpv22db63xkgjw0nwa39clgrr2finxvl0a510hkc54ijqjx9ksh"; depends=[binMto boot coin MASS MCPAN mcprofile mratios]; }; palaeoSig = derive { name="palaeoSig"; version="1.1-3"; sha256="1zm8xr7fpnnh6l4421vjavi6bg44iars3mna4r5fw3spmbswyv7b"; depends=[MASS mgcv rioja TeachingDemos vegan]; }; paleoMAS = derive { name="paleoMAS"; version="2.0-1"; sha256="1hhb5wbj4m3ch8wnvd1zkl5bk6wa9nl6jl1dhm4z6yqkh29yn9z6"; depends=[lattice MASS vegan]; }; paleoTS = derive { name="paleoTS"; version="0.4-4"; sha256="19acfq5z42blk6ya7sj3sprddlgvhrzb9zqpvpy4q8siqkxxrjah"; depends=[mvtnorm]; }; paleobioDB = derive { name="paleobioDB"; version="0.3"; sha256="1vcfssi6w0m2wd2smyjxp1zf0y48y95386kkb8qdndqw99g089w8"; depends=[gtools maps plyr raster RCurl rjson scales]; }; paleofire = derive { name="paleofire"; version="1.1.6"; sha256="1fzmnc4ywhqb6sr3cclsqy6y9v27j69bxszlrrgbnqb0kyg28rd7"; depends=[GCD ggplot2 lattice locfit plyr raster rgdal]; }; -paleotree = derive { name="paleotree"; version="2.4"; sha256="1rrsxll5qcvr9a96wg5bdljvyy7zy26zd9f0b17xswmp77gxmahb"; depends=[ape phangorn]; }; +paleotree = derive { name="paleotree"; version="2.5"; sha256="1jn6yw8zk94j77kspd80nb28j1m0i1lpvlmwi72rfdwb5r51gdxy"; depends=[ape phangorn phytools]; }; +palettetown = derive { name="palettetown"; version="0.1.0"; sha256="0zpqbd9g50vyidd0chhk2xqlzx7mnzyilr4c84lci1xw3r3avxp0"; depends=[]; }; palinsol = derive { name="palinsol"; version="0.92"; sha256="1jxy3qx8w1r8jwgdavf37gqjjqpizdqk218xcc7b77xi8w52vxpg"; depends=[gsl]; }; palr = derive { name="palr"; version="0.0-4"; sha256="0rcb01lpi8zapnml1spx4ixxwbq9qh42sisqzrg7gxrkcjrbqxgl"; depends=[]; }; pamctdp = derive { name="pamctdp"; version="0.3.1"; sha256="1fnadgfd2ikis49j9zl2ijj8gim8lpbygwxjj6ri9jyrc1qmj9jb"; depends=[ade4 FactoClass xtable]; }; @@ -5196,11 +5398,11 @@ parallelMap = derive { name="parallelMap"; version="1.3"; sha256="026d018fr2a43c parallelSVM = derive { name="parallelSVM"; version="0.1-9"; sha256="0nhxkllpjc3775gpivj8c5a9ssl42zgvswwaw1sdhwg3cxcib99h"; depends=[doParallel e1071 foreach]; }; parallelize_dynamic = derive { name="parallelize.dynamic"; version="0.9-1"; sha256="03zypcvk1iwkgy6dmd5bxg3h2bqvjikxrbzw676804zi6y49mhln"; depends=[]; }; paramlink = derive { name="paramlink"; version="0.9-7"; sha256="02h7znac93v8ibra3ni2psxc9lpfhiiw4q8asfyrx400345ifk5b"; depends=[kinship2 maxLik]; }; -params = derive { name="params"; version="0.2"; sha256="1q750ivgnsf6sfi1apr2wgnr94fnkak1im07vkan565n8wiac0lr"; depends=[knitr whisker]; }; +params = derive { name="params"; version="0.3.0"; sha256="19rqbsz3qjqcz5z7dlx5xamsg4vxv26ghlpbi39h7fgn1z0qd68j"; depends=[whisker]; }; paran = derive { name="paran"; version="1.5.1"; sha256="0nvgk01z2vypk5bawkd6pp0pnbgb54ljy0p8sc47c8ibk242ljqk"; depends=[MASS]; }; parboost = derive { name="parboost"; version="0.1.4"; sha256="087b4as0w8bckwqpisq9mllvm523vlxmld3irrms13la23z6rjvf"; depends=[caret doParallel glmnet iterators mboost party plyr]; }; parcor = derive { name="parcor"; version="0.2-6"; sha256="10bhw50g8c4ln5gapa7wghhb050a3jmd1sw1d1k8yljibwcbbx36"; depends=[Epi GeneNet glmnet MASS ppls]; }; -parfm = derive { name="parfm"; version="2.5.8"; sha256="05bzmm5ahaip5apsv84fbqy8bag9pkkfsxvqw1cbcvlbr2zyxfgp"; depends=[eha msm survival]; }; +parfm = derive { name="parfm"; version="2.5.10"; sha256="0mk5y7rvfn873lfbscrp8dqgdsracx59dnp6dzr5rha86k4bn097"; depends=[eha msm survival]; }; parfossil = derive { name="parfossil"; version="0.2.0"; sha256="12gsc5n4ycvhzxvq5j0r3jnnrzw1q412dbvmakipyw2yx2l2s7jn"; depends=[foreach fossil]; }; parma = derive { name="parma"; version="1.5-2"; sha256="1yvk0wfcc1mgz2bif6hvw5l7zclbv4pz1cki0ymslrmxapjqnsz8"; depends=[corpcor FRAPO nloptr quadprog Rglpk slam truncnorm]; }; parmigene = derive { name="parmigene"; version="1.0.2"; sha256="1fsm6pkr17jcbzkj1hbn91jf890fviqk1lq6ls8pihsdgah1zb4d"; depends=[]; }; @@ -5211,15 +5413,16 @@ partialAR = derive { name="partialAR"; version="1.0.5"; sha256="1d8nbv3rkf0p4vg8 partialOR = derive { name="partialOR"; version="0.9"; sha256="02vbvln8lswysaafpxq5rxb6crp7yhlc13i42kybv8fr10jaagjj"; depends=[nnet]; }; partitionMap = derive { name="partitionMap"; version="0.5"; sha256="0pi066xaaq0iqr0d7cncdzjd7bacmgrivc4qvhqx0y7q1vifrdjm"; depends=[randomForest]; }; partitionMetric = derive { name="partitionMetric"; version="1.1"; sha256="1wry9d3s814yp79ayab7rzf8z5l2mwpgnrc5j7d2sac24vp4pd48"; depends=[]; }; -partitions = derive { name="partitions"; version="1.9-15"; sha256="0jgpknm4zah50w9i3fbq2f1whm4hywm2j72vxc3ignx1snx2z0gs"; depends=[gmp polynom]; }; +partitions = derive { name="partitions"; version="1.9-18"; sha256="1brzvk2zbrh0s4vbaiib6zkpcyx7ghc6ws36h3diz5nxbx3g95ik"; depends=[gmp polynom]; }; partools = derive { name="partools"; version="1.1.3"; sha256="07bvhs6a53cm0gvmxbibg8rhzvjxrhjgl65ib348a4q43pgap2v1"; depends=[]; }; partsm = derive { name="partsm"; version="1.1-2"; sha256="0cv3lgkdkn97bc85iwlv9w5pmqwwwsgb717zxnbgb5mzf4xn3f3g"; depends=[]; }; -party = derive { name="party"; version="1.0-22"; sha256="16wk9nsjjh8f464xx2izyymqwl89aygiyqir7h1kawm7flw9mrmv"; depends=[coin modeltools mvtnorm sandwich strucchange survival zoo]; }; -partykit = derive { name="partykit"; version="1.0-2"; sha256="1v1ykha642cgrj8hwj8gmz3860nmr1brgdjgal732dprzm3lg4hl"; depends=[survival]; }; +party = derive { name="party"; version="1.0-23"; sha256="0vlzs6blwz618mdccqbg572a947h0h57l6hxafkn9izr7423qih7"; depends=[coin modeltools mvtnorm sandwich strucchange survival zoo]; }; +partykit = derive { name="partykit"; version="1.0-4"; sha256="1cvjx5zkjn2rjcg1wg4kpsvs7a0d9wq450vxp6a8rnwzkhp5n1ja"; depends=[survival]; }; parviol = derive { name="parviol"; version="1.1"; sha256="1sfgic86ssd5wjf9ydss9kjd3m4jmm2d1v896sjsv8bydwymbpx3"; depends=[vioplot]; }; pass = derive { name="pass"; version="1.0"; sha256="00dzwg2lnzmrrmzq3fyrs4axswgnsn7f62l2f2a8d8gyf8qzz3nf"; depends=[lars MASS ncvreg]; }; pastecs = derive { name="pastecs"; version="1.3-18"; sha256="0ixlnc1psgqgm71bsf5z5j65lvr92ghpsk9f1ifm94dzjhi6d22i"; depends=[boot]; }; pastis = derive { name="pastis"; version="0.1-2"; sha256="0211pzj3xrmqgxjpspij95kmlpa2klpicw49n6pnz2g1fapjy2bd"; depends=[ape caper]; }; +patPRO = derive { name="patPRO"; version="1.0.0"; sha256="0bmmknfa8yvdgz693q3q3kn7qr4d7vgrigsszwnxhsrqi2kny63l"; depends=[ggplot2 gridExtra plyr RColorBrewer reshape2]; }; patchDVI = derive { name="patchDVI"; version="1.9.1616"; sha256="1akdlzw8v2p1zz09bm88d63jyxj7fv5h50p459p9ml4yc816xvji"; depends=[]; }; patchPlot = derive { name="patchPlot"; version="0.1.5"; sha256="1b4k0dvvj6qwyxbqb36knyrawvy5qq8hl45pz896c9rkqhlg02bx"; depends=[datautils]; }; patchSynctex = derive { name="patchSynctex"; version="0.1-3"; sha256="0gbbdszrprshcpnpbnvqmx0wlij2d36fw94ssfbx11d7fmjpaj37"; depends=[stringr]; }; @@ -5239,6 +5442,7 @@ pbdMPI = derive { name="pbdMPI"; version="0.2-5"; sha256="0g21zyl8dck5mxjsg4iif6 pbdNCDF4 = derive { name="pbdNCDF4"; version="0.1-4"; sha256="0fd29mnbns30ck09kkh53dgj24ddrqzks4xrrk2hh1wiy7ap1h95"; depends=[]; }; pbdPROF = derive { name="pbdPROF"; version="0.2-3"; sha256="0vk29vgsv7fhw240sagz0szg0wb649sqc05j1aj027zvz931vfl8"; depends=[ggplot2 gridExtra reshape2]; }; pbdSLAP = derive { name="pbdSLAP"; version="0.2-0"; sha256="06q9k8y7k604wa2zfspjg2v3fybn5my1vyr7zsg6j66n9g4z6039"; depends=[pbdMPI rlecuyer]; }; +pbdZMQ = derive { name="pbdZMQ"; version="0.1-1"; sha256="1b4bqdbnvvr7c1zp9k7vkd1ga3j17f6naab7lw47lcmj9y3ga0qm"; depends=[]; }; pbivnorm = derive { name="pbivnorm"; version="0.6.0"; sha256="05jzrjqxzbcf6z245hlk7sjxiszv9paadaaimvcx5y5qgi87vhq7"; depends=[]; }; pbkrtest = derive { name="pbkrtest"; version="0.4-2"; sha256="1yppp24a8rl36x6sn1jjhhgs41irbf0z5nrv454g9qwhbvfgiay5"; depends=[lme4 MASS Matrix]; }; pbo = derive { name="pbo"; version="1.3.4"; sha256="0v522z36q48k4mx5gym564kgvhmf08fsadp8qs6amzbgkdx40yc4"; depends=[lattice]; }; @@ -5248,13 +5452,14 @@ pca3d = derive { name="pca3d"; version="0.8"; sha256="03ghncfpma1fwby8kxm0v90l79 pcaBootPlot = derive { name="pcaBootPlot"; version="0.2.0"; sha256="1320d969znk9xvm1ylhc3a31nynhzyjpbg1fsryq72nhf8jxijaa"; depends=[FactoMineR RColorBrewer]; }; pcaL1 = derive { name="pcaL1"; version="1.3"; sha256="026cgi812kvbkmaryd3lyqnb1m78i3ql2phlvsd2r691y1j8w532"; depends=[]; }; pcaPP = derive { name="pcaPP"; version="1.9-60"; sha256="1rqq4zgik7cgnnnm8il1rxamp6q9isznac8fhryfsfdcawclfjws"; depends=[mvtnorm]; }; +pcadapt = derive { name="pcadapt"; version="1.0"; sha256="1llpz0mgsl948p169aknbgx52avvvrid8aj9vidjazkfgm0dk0c9"; depends=[]; }; pcalg = derive { name="pcalg"; version="2.2-4"; sha256="0qx0impxh6pzbgdhpkbl13qfql4zpsa3xiy4hc640d15zxprv6zw"; depends=[abind bdsmatrix BH clue corpcor fastICA ggm gmp graph igraph RBGL Rcpp RcppArmadillo robustbase sfsmisc vcd]; }; pcg = derive { name="pcg"; version="1.1"; sha256="194j72hcp7ywq1q3dd493pwkn1fmdg647gmhxcd1jm6xgijhvv87"; depends=[]; }; pcnetmeta = derive { name="pcnetmeta"; version="2.2.1"; sha256="0y4sn1aby38c458667fsy2ndq64i8kknmzdc32mbvzd530p1yxai"; depends=[coda rjags]; }; pco = derive { name="pco"; version="1.0.1"; sha256="0k1m450wfmlym976g7p9g8arqrvnsxgdpcazk5kh3m3jsrvrcchf"; depends=[]; }; pcse = derive { name="pcse"; version="1.9"; sha256="04vprsvcmv1ivxqrrvd1f8ifg493byncqvmr84fmc0jw5m9jrk3j"; depends=[]; }; pdR = derive { name="pdR"; version="1.3"; sha256="0y81nlvq5vwf6021m5ns6j4l44c5456jkbs2x9y7jfkw6r3v2ddf"; depends=[]; }; -pdc = derive { name="pdc"; version="1.0.2"; sha256="0d7p65rkwrh39njhszdrbv25z4jz27746y1qyhqmhkxmvkx6g1fl"; depends=[]; }; +pdc = derive { name="pdc"; version="1.0.3"; sha256="0503n7aiy0qrl790yfjvpm7bbyz1i4818rlg96q0fvzb58zqmyvc"; depends=[]; }; pdfCluster = derive { name="pdfCluster"; version="1.0-2"; sha256="0kbci54dlzn736835fh18xnf2pmzqrdmwa3jim29xcnwa1r2gklb"; depends=[geometry]; }; pdfetch = derive { name="pdfetch"; version="0.1.7"; sha256="12ddf3kyw9pppjn6haq7a3k27vl17016s4h2mc31mbb9fn6h4cjz"; depends=[httr jsonlite lubridate reshape2 XML xts zoo]; }; pdist = derive { name="pdist"; version="1.2"; sha256="18nd3mgad11f2zmwcp0w3sxlch4a9y6wp8dfdyzvjn7y4b4bq0dd"; depends=[]; }; @@ -5268,7 +5473,7 @@ pedgene = derive { name="pedgene"; version="2.7"; sha256="1qgk8a601ynvbk94zl81a9 pedigree = derive { name="pedigree"; version="1.4"; sha256="1dqfvzcl6f15n4d4anjkd0h8vwsbxjg1lmlj33px8rpp3y8xzdgw"; depends=[HaploSim Matrix reshape]; }; pedigreemm = derive { name="pedigreemm"; version="0.3-3"; sha256="1bpkba9nxbaxnivrjarf1p2p9dcz6smf9k2djawis1wq9dhylvsb"; depends=[lme4 Matrix]; }; pedometrics = derive { name="pedometrics"; version="0.6-3"; sha256="00jv9v3hrvh9jfl5vzkjh7frym9m6d9di4zv5ybwww2ba9rq2xaf"; depends=[lattice latticeExtra Rcpp]; }; -pegas = derive { name="pegas"; version="0.8-1"; sha256="116r709qp9hcvmvfn6xsis13284nl429sfc9d91p1c7fy8fl46q5"; depends=[adegenet ape]; }; +pegas = derive { name="pegas"; version="0.8-2"; sha256="1sci4m7vvxi8p8lwqkqng04pajrby0c4l91sav3ahvfgj6xldp9q"; depends=[adegenet ape]; }; penDvine = derive { name="penDvine"; version="0.2.4"; sha256="0znpvsr7zy2wgy7znha1qiajcrz1z6mypi3f5hpims33z7npa7dl"; depends=[doParallel fda foreach lattice latticeExtra Matrix quadprog TSP]; }; penMSM = derive { name="penMSM"; version="0.99"; sha256="1xdcxnagvjdpgnfa5914gb41v5y4lsvh63lbz1d2l8bl9mpff3lm"; depends=[Rcpp]; }; penalized = derive { name="penalized"; version="0.9-45"; sha256="0svmhsh0lv3d571jyhk73zd9slcd6xnp3p0l1ijab9gl2rjhlzz5"; depends=[survival]; }; @@ -5279,19 +5484,20 @@ pendensity = derive { name="pendensity"; version="0.2.8"; sha256="18mnpsmfnqkbhg pensim = derive { name="pensim"; version="1.2.9"; sha256="10nrnxwfs41bhybs7j6xgnx0pq3c802n9k8irngmh8iy4w3wbhrq"; depends=[MASS penalized]; }; peperr = derive { name="peperr"; version="1.1-7"; sha256="01a6sxcmb8v2iz2xdwhdnr92k3w2vn3hr0hg9b6mkpzjf4n45q3k"; depends=[snowfall survival]; }; peplib = derive { name="peplib"; version="1.5.1"; sha256="1bdgmwbk76ryl5gxcgf3slds92yilg9p1x1lx0hnzzwcgx99wif3"; depends=[]; }; -peptider = derive { name="peptider"; version="0.2"; sha256="1mrwa5pcmc0vbs7n39003bxia2hd6msjkl0j0b21d05accbvzph1"; depends=[discreteRV dplyr plyr]; }; +peptider = derive { name="peptider"; version="0.2.2"; sha256="109z81x6jcsx2651lclff7ak55zb1i89pyi58rxri40aamx4b1x2"; depends=[discreteRV dplyr plyr]; }; pequod = derive { name="pequod"; version="0.0-4"; sha256="12gmdfhi4dh5zhy3mwgjlpwhkqj8irwbcj13f0z23001hpis3wmh"; depends=[car ggplot2]; }; perARMA = derive { name="perARMA"; version="1.5"; sha256="1d9vrxv8r6qgxhaz3pv8n34c526gi5cd8w7wxy9qc914y8kplmzr"; depends=[corpcor gnm matlab Matrix signal]; }; -performanceEstimation = derive { name="performanceEstimation"; version="1.0.1"; sha256="102f6h8cqmfb1ch9amf9qhm4p5r8i8236z8yfpg645vbkcc3i78n"; depends=[doParallel foreach ggplot2]; }; +performanceEstimation = derive { name="performanceEstimation"; version="1.0.2"; sha256="027bcr4ipjwmm1hni2mg7n4hz4mgs1dh2npqmfp8b5kqmccyxpx6"; depends=[doParallel foreach ggplot2]; }; perm = derive { name="perm"; version="1.0-0.0"; sha256="0075awl66ynv10vypg63fcxk33qzvxddrp8mi4w08ysvimcyxijk"; depends=[]; }; permGPU = derive { name="permGPU"; version="0.14.6"; sha256="1h01nfq8hn7i29xanma70q6s5mj83znbb2lg9x7bjgdrgj38vy2m"; depends=[Biobase foreach RUnit survival]; }; permute = derive { name="permute"; version="0.8-4"; sha256="1z5pmq9dy93rpsdb73waqrqmnvvi9ygx1v5l81a2n1j1kb4lmksv"; depends=[]; }; perry = derive { name="perry"; version="0.2.0"; sha256="1lfmcq2xsxmfs7cxvhgxcsggslgjicbaks4wcjw1yjh67n559j46"; depends=[ggplot2 robustbase]; }; persiandictionary = derive { name="persiandictionary"; version="1.0"; sha256="0rgi36ngpiax3p5zk4cdgf3463vgx7zg5wxscs2j7834yh37jwax"; depends=[]; }; -perspectev = derive { name="perspectev"; version="1.0"; sha256="1qqhja7vqji9313dxxy1a9a50h5zxwxgc5s16lssczjachkqaibk"; depends=[ape boot doParallel foreach ggplot2 mapproj sp]; }; +personograph = derive { name="personograph"; version="0.1.1"; sha256="01pni8bdkbpzf4l32zal7g3mzrrqfcvsm9krax5mml7hvm4kfkiy"; depends=[grImport]; }; +perspectev = derive { name="perspectev"; version="1.1"; sha256="175s1nq5z4gfs5qb39lq230g6n0v8fxzs5hr9j2rgx0knpbjfq03"; depends=[ape boot doParallel foreach ggplot2 mapproj sp]; }; perturb = derive { name="perturb"; version="2.05"; sha256="18ydmmp8aq4rf9834dmsr4fr9r07zyn97v8a1jqz3g9njza983la"; depends=[]; }; pesticides = derive { name="pesticides"; version="0.1"; sha256="1w180hqqav0mh9sr9djj94sf55fzh4r373a7h08a2nz9nyjpq09w"; depends=[]; }; -pez = derive { name="pez"; version="1.0-0"; sha256="0d1npc2w6gzi4ki7gwqa0f4sklz0sml8q0cmgb77hpvgrny47mk3"; depends=[ade4 ape apTreeshape caper FD Matrix mvtnorm picante plotrix quantreg vegan]; }; +pez = derive { name="pez"; version="1.1-0"; sha256="1rfjchh4qzydbg9mw3k7vp2s66fllz4a1lza55ramzn259dzkgv0"; depends=[ade4 ape apTreeshape caper FD Matrix mvtnorm picante quantreg vegan]; }; pgam = derive { name="pgam"; version="0.4.12"; sha256="0vhac2mysd053bswy3xwpiz0q0qh260hziw6bygpf83vkj94qf2v"; depends=[]; }; pgirmess = derive { name="pgirmess"; version="1.6.2"; sha256="02i2jp345hyzz0s3rfxn3rpx0yl1aw6r0r0zaw471j5l9m6s85kw"; depends=[boot maptools rgdal rgeos sp spdep splancs]; }; pglm = derive { name="pglm"; version="0.1-2"; sha256="1arn2gf0bkg0s59a96hyhrm7adw66d33qs2al2s0ghln6fyk8674"; depends=[maxLik plm statmod]; }; @@ -5312,7 +5518,7 @@ phia = derive { name="phia"; version="0.2-0"; sha256="1v2znss1snqrn3bpd0513jmw0x phmm = derive { name="phmm"; version="0.7-5"; sha256="0dil0ha199yh85j1skwfdl0v02vxdmb0xcc1jdbayjr5jrn9m1zk"; depends=[lattice Matrix survival]; }; phonR = derive { name="phonR"; version="1.0-3"; sha256="09wzsq92jkxy6cd89czshpj1hsp56v9jbgqr5a06rm6bv3spa31i"; depends=[deldir plotrix splancs]; }; phonTools = derive { name="phonTools"; version="0.2-2.1"; sha256="01i481mhswsys3gpasw9gn6nxkfmi7bz46g5c84m13pg0cv8hxc7"; depends=[]; }; -phonenumber = derive { name="phonenumber"; version="0.2.0"; sha256="0dsdf87lys52pb3sc1z21fbqswrz5n89pcgxp9fak9flb9b51jky"; depends=[]; }; +phonenumber = derive { name="phonenumber"; version="0.2.2"; sha256="1m5idp538lvynmfp8m7l89js6hk5lpp26k419bdvj3hd3ap0n9lg"; depends=[]; }; phreeqc = derive { name="phreeqc"; version="1.0-9102"; sha256="09vwqd4mf64l76vgg32vm9vkc8ra6cls9nvrp3ckkj9l2fwcnbzf"; depends=[]; }; phtt = derive { name="phtt"; version="3.1.2"; sha256="1fvvx5jilq5dlgh3qlfsjxr8jizy4k34a1g3lknfkmvn713ycp7v"; depends=[pspline]; }; phyclust = derive { name="phyclust"; version="0.1-15"; sha256="1j643k0mjmswsvp9jyiawkjf2qhfrw6xf4s2viqv987zxif2kd7z"; depends=[ape]; }; @@ -5323,17 +5529,19 @@ phylobase = derive { name="phylobase"; version="0.8.0"; sha256="1zpypg6qrc39nl96 phyloclim = derive { name="phyloclim"; version="0.9-4"; sha256="0ngg8x192lrhd75rr6qbh72pqijbrhrpizl27q0vr6hp7n9ch3zx"; depends=[ape raster]; }; phylocurve = derive { name="phylocurve"; version="1.3.0"; sha256="014y7l2q3yjzj2iq9a6aspnd7dkvjfwnz46rs7x6l45jy41494wb"; depends=[abind ape drc dtw geiger GPfit phylolm phytools]; }; phyloland = derive { name="phyloland"; version="1.3"; sha256="10g40m6n2s4qvnzlqcwpy3k0j7bxdp79f586jj910b8p00ymrksp"; depends=[ape]; }; -phylolm = derive { name="phylolm"; version="2.2"; sha256="1x1mi1mcq3ijbqhr0951scqzv4zza0r3fcs0hh4gpbr8z49b6d98"; depends=[ape]; }; +phylolm = derive { name="phylolm"; version="2.3"; sha256="0fqxclg15169mqqrfw0s76idcwl9r358sg74jzn5fbg7kg6d3kva"; depends=[ape]; }; phylotools = derive { name="phylotools"; version="0.1.2"; sha256="19w7xzk6sk1g9br7vwv338nvszzh0lk5rdzf0khiywka31bbsjyb"; depends=[ape fields picante seqRFLP spaa]; }; +phyndr = derive { name="phyndr"; version="0.1.0"; sha256="03y3j4ik6flrksqm2dwh2cihn12hzfdik0fsak4zbxjdzaqn5gim"; depends=[ape]; }; phyreg = derive { name="phyreg"; version="0.7"; sha256="0saynhq4yvd4x2xaljcsfmqk7da2jq3jqk26fm9qivg900z4kf35"; depends=[]; }; physiology = derive { name="physiology"; version="0.2.2"; sha256="0z394smbnmlrnp9ms5vjczc3avrcn5nxm8np5y58k86x470w6npz"; depends=[]; }; -phytools = derive { name="phytools"; version="0.4-60"; sha256="1la0pjsb2jwr1ygj520vy15aq1fhhdnc5h1dzavbwcdcd9vl13n7"; depends=[animation ape clusterGeneration maps mnormt msm numDeriv phangorn plotrix scatterplot3d]; }; +phytools = derive { name="phytools"; version="0.5-00"; sha256="10gnnbif3yhl7xxjxwp1h7hajal46kf6jg2nqrymxwp5q5z0kpmc"; depends=[animation ape clusterGeneration maps mnormt msm numDeriv phangorn plotrix scatterplot3d]; }; phytotools = derive { name="phytotools"; version="1.0"; sha256="049znviv2vvzv23biy1l28axm7bc7biwmq4bnn0cnjqgkk48ysz3"; depends=[FME insol]; }; pi0 = derive { name="pi0"; version="1.4-0"; sha256="0qwyfan21k23q4dilnl7hqjghzm8n2qfw21wbvnidr6n9hf2fjjs"; depends=[Iso kernlab limSolve LowRankQP Matrix numDeriv quadprog qvalue rgl scatterplot3d]; }; picante = derive { name="picante"; version="1.6-2"; sha256="1zxpd8kh3ay6f3gdqkij1a6vnkr98dc1jib2r6br2kjyzshabcsd"; depends=[ape nlme vegan]; }; -picasso = derive { name="picasso"; version="0.3.0"; sha256="0z314akr1x2a28hh5hbb7mzkyaxsj4dfkdmx10l6gqllgk9j5qca"; depends=[igraph lattice MASS Matrix]; }; -pid = derive { name="pid"; version="0.32"; sha256="0lyxml25wk2sxjxg90c3mbrh4sg8ms2yk5wrznzb8k6lpgak4zqr"; depends=[DoE_base FrF2 ggplot2 png]; }; +picasso = derive { name="picasso"; version="0.4.7"; sha256="1djsw0ahghzlqsw3wrxsvqf27vcb0a8knydfrsv4nfh2rffhckj9"; depends=[igraph lattice MASS Matrix]; }; +pid = derive { name="pid"; version="0.36"; sha256="1w6h09ddq8rv7k5xl4v6nhlkm0vnmim57mg0dzk2dv9dc4v8i141"; depends=[DoE_base FrF2 ggplot2 png]; }; pingr = derive { name="pingr"; version="1.1.0"; sha256="0j03qcsyckv3zh2v4m8wz8kyfl0k8qi71rm20rc0spy1s9ng7fcb"; depends=[]; }; +pinnacle_API = derive { name="pinnacle.API"; version="1.89"; sha256="10c9vgi8wi7qamzpzrl92s7y2rb9277z090n7r6xj0vsp590n8nj"; depends=[dplyr httr jsonlite RCurl rjson uuid XML]; }; pipe_design = derive { name="pipe.design"; version="0.3"; sha256="1idgy7s6fnydcda51yj1rjil2pd1r2y6g0m5dmn8sw7wmaq2n3h6"; depends=[ggplot2 gtools]; }; pipeR = derive { name="pipeR"; version="0.6.0.6"; sha256="1d7vmccvh5ir26cv26mk0ay69rqmwmp0mgwjal9avfn9vrxq1fq3"; depends=[]; }; pitchRx = derive { name="pitchRx"; version="1.7"; sha256="0mx948bahw0zr0915hz9lcws7iq2l0ikgx4gjnnfhhpiii86xs57"; depends=[ggplot2 hexbin MASS mgcv plyr XML2R]; }; @@ -5344,12 +5552,14 @@ pkgconfig = derive { name="pkgconfig"; version="2.0.0"; sha256="1wdi86qyaxq1mwkr pkgmaker = derive { name="pkgmaker"; version="0.22"; sha256="0vrqnd3kg6liqvpbd969jjsdx0f0rvmmxgdbwwrp6xfmdg0pib8r"; depends=[codetools digest registry stringr xtable]; }; pks = derive { name="pks"; version="0.3-1"; sha256="1nr36k960yv71yfxkzchjk814sf921hdiiakxvv5f9dxpf00hxp4"; depends=[sets]; }; plRasch = derive { name="plRasch"; version="1.0"; sha256="1rnpvxw6pzl5f6zp4xl2wfndgvqz5l3kiv9sh4cpvhga0gl8zjaw"; depends=[survival]; }; +pla = derive { name="pla"; version="0.2"; sha256="1qb71zjcxvs3zbfy0sryyxizwix0nw530zsfw661a8vm8sk054kw"; depends=[]; }; plan = derive { name="plan"; version="0.4-2"; sha256="0vwiv8gcjdbnsxd8zqf0j1yh6gvbzm0b5kr7m47ha9z64d7wxch6"; depends=[]; }; planar = derive { name="planar"; version="1.5.2"; sha256="1w843qk88x3kzi4q79d5ifzgp975dj4ih93g2g6fa6wh529j4w3h"; depends=[cubature dielectric plyr Rcpp RcppArmadillo reshape2 statmod]; }; planor = derive { name="planor"; version="0.2-4"; sha256="0k5rhrnv2spsj2a94msgw03yyv0hzrf8kvlnbhfj1dl7sb1l92a1"; depends=[conf_design]; }; plantecophys = derive { name="plantecophys"; version="0.6-3"; sha256="021jycr8jffry38r1d59r20wghmsbdqr354fkjrraq9c3b469ipz"; depends=[]; }; plaqr = derive { name="plaqr"; version="1.0"; sha256="1vv15zqnmir5hi9ivyifzrc1rkn1sn5qj61by66iczmlmhqh17h8"; depends=[quantreg]; }; playwith = derive { name="playwith"; version="0.9-54"; sha256="1zmm8sskchim3ba3l0zqfvxnrqfmiv94a8l6slcf3if3cf9kkzal"; depends=[cairoDevice gridBase gWidgets gWidgetsRGtk2 lattice RGtk2]; }; +plfMA = derive { name="plfMA"; version="1.0.1"; sha256="1lgcx8jdi4y3gnf4050cjb5krrbg99m7097r1hibv8kc3kcbjx46"; depends=[cairoDevice gWidgets gWidgetsRGtk2 limma]; }; plfm = derive { name="plfm"; version="1.1.2"; sha256="1dl2pv2v7kp39hlbk5kb33kzhg9dzxjxhafdjv9dqpqb9b77akm8"; depends=[abind sfsmisc]; }; plgp = derive { name="plgp"; version="1.1-7"; sha256="02g6saabrsd8pra0szbwcbilf6w5ywg2gxqb5zdvbxds2vw36hn0"; depends=[mvtnorm tgp]; }; plm = derive { name="plm"; version="1.4-0"; sha256="13y9s7gyrgqmnzafhn4c1zkz6gdawc8nr5nbrx0pn2mbw3fqfrjh"; depends=[bdsmatrix Formula MASS nlme sandwich zoo]; }; @@ -5365,9 +5575,9 @@ plotMCMC = derive { name="plotMCMC"; version="2.0-0"; sha256="0i4kcx6cpqjd6i16w3 plotROC = derive { name="plotROC"; version="1.3.3"; sha256="090fpj3b5vp0r2zrn38yxiy205mk9kx1fpwp0g8rl4bsa88v4c9y"; depends=[ggplot2 gridSVG shiny]; }; plotSEMM = derive { name="plotSEMM"; version="2.0"; sha256="0n30m1nz9fnilbgxg5jcmx2bsscdvz5mkjkyrgx7yr3alazkaimd"; depends=[MplusAutomation plotrix plyr Rcpp shiny]; }; plotmo = derive { name="plotmo"; version="3.1.4"; sha256="0b12w6sg317vgmhyn4gh9jcnyps1pyqnh5ai15y1dfajsf2zjhca"; depends=[plotrix TeachingDemos]; }; -plotpc = derive { name="plotpc"; version="1.0.3"; sha256="0dw9k702a67c2k77dl4k2747lhsr84x41qrgj5mp9jnyfq6naciq"; depends=[]; }; +plotpc = derive { name="plotpc"; version="1.0.4"; sha256="1sf7n7mfyaijldm24bc8r8pfm8pp9cyaja7am14z2wpj2j9f9vyq"; depends=[]; }; plotrix = derive { name="plotrix"; version="3.5-12"; sha256="13gffp7zp46wal83609652x48i63zb5i20x6ycmgc97l4nanhrfi"; depends=[]; }; -pls = derive { name="pls"; version="2.4-3"; sha256="114ka4766x8fx0zvvr7cylky1jsy542nj6s7sb2dwv8zjhbclkhn"; depends=[]; }; +pls = derive { name="pls"; version="2.5-0"; sha256="135pqb6frjldv86fs00p2mgrc9vjna3jvns3slj5a300drajja1w"; depends=[]; }; plsRbeta = derive { name="plsRbeta"; version="0.2.0"; sha256="1b8yldz5nzw3gilv9wk79bxcqb0hrgsxi2cn6qlby5nf9b4zmzv8"; depends=[betareg boot Formula MASS mvtnorm plsdof plsRglm]; }; plsRcox = derive { name="plsRcox"; version="1.7.2"; sha256="1c3ll13m27ndwlc9r79ilzl0i6cyp870x66swlbg6387whf7wn2r"; depends=[kernlab lars mixOmics pls plsRglm risksetROC rms survAUC survcomp survival]; }; plsRglm = derive { name="plsRglm"; version="1.1.1"; sha256="1bx1pl1pv47z3yj3ngkd97j10v2h8jqiybcqbm3kvqhgqydm07rp"; depends=[bipartite boot car mvtnorm]; }; @@ -5380,7 +5590,7 @@ plumbr = derive { name="plumbr"; version="0.6.9"; sha256="1avbclblqfy57pd72ximvj plus = derive { name="plus"; version="1.0"; sha256="1l7lvnq7vahj8m7knmr4q3wj00ar7iq89j45a2dqn2bh0qyj68ls"; depends=[]; }; plusser = derive { name="plusser"; version="0.4-0"; sha256="1g100dh8cvn9q09j0jbkw4xmwjdp1lm4651369975fm99nrlp1j9"; depends=[lubridate plyr RCurl RJSONIO]; }; plyr = derive { name="plyr"; version="1.8.3"; sha256="06v4zxawpjz37rp2q2ii5q43g664z9s29j4ydn0cz3crn7lzl6pk"; depends=[Rcpp]; }; -pmc = derive { name="pmc"; version="1.0.0"; sha256="156kgjq8p9y02lp8rklq73wr7k7sm0wjihh2q6qziv4vgbqg157c"; depends=[dplyr geiger ggplot2 ouch tidyr]; }; +pmc = derive { name="pmc"; version="1.0.1"; sha256="19yphb0834qriq7w2y287750rrc0kqibx76yx95qwyh6ymzcvha2"; depends=[dplyr geiger ggplot2 ouch tidyr]; }; pmcgd = derive { name="pmcgd"; version="1.1"; sha256="1pybzvyjmzpcnxrjsas06diy3x83i1r5491s6ccyr63l56hs55d5"; depends=[mixture mnormt]; }; pmclust = derive { name="pmclust"; version="0.1-6"; sha256="05zjx4psvk5zjmr0iwwwig990g6h04ajn5wi0xi8bqv046r47q3h"; depends=[MASS pbdMPI rlecuyer]; }; pmg = derive { name="pmg"; version="0.9-43"; sha256="0i7d50m4w7p8ipyx2d3qmc54aiqvw0ls8igkk8s1xc7k8ympfqi6"; depends=[foreign gWidgets gWidgetsRGtk2 lattice MASS proto]; }; @@ -5388,6 +5598,7 @@ pmlr = derive { name="pmlr"; version="1.0"; sha256="1z3hbw4wabpai1q8kbn77nzxqzia pmml = derive { name="pmml"; version="1.5.0"; sha256="192jffh9xb7zfvx4crpynrbdrx1fpiq303c2xz1wjqnq7wjmb3qw"; depends=[survival XML]; }; pmmlTransformations = derive { name="pmmlTransformations"; version="1.3.0"; sha256="17dhgpldwadsvm25p8xwqsamcn1ypsqdijy2jia048qqmsy4ky86"; depends=[]; }; pmr = derive { name="pmr"; version="1.2.5"; sha256="0dq97dfjmgxlhr3a2n20vyyzfmamcicw878hdxpw31lw02xs6yls"; depends=[]; }; +pnea = derive { name="pnea"; version="1.1.1"; sha256="1snhhygdl4hir9w9d0wpm5jh4yl3l8z2hv3xrv9zy322vb1sk62d"; depends=[]; }; pnf = derive { name="pnf"; version="0.1.1"; sha256="0kasq27dnjwqzlzybc8m3wv9jwyag6z38ayv88msa7lxcnibr34i"; depends=[]; }; png = derive { name="png"; version="0.1-7"; sha256="0g2mcp55lvvpx4kd3mn225mpbxqcq73wy5qx8b4lyf04iybgysg2"; depends=[]; }; pnmtrem = derive { name="pnmtrem"; version="1.3"; sha256="0053gg368sdpcw2qzydpq0c5v2cxdlwgf5k68cbw0yx41csjgvz0"; depends=[MASS]; }; @@ -5397,7 +5608,7 @@ pocrm = derive { name="pocrm"; version="0.9"; sha256="0p7a7xm1iyyjgzyi7ik2n34gqc pogit = derive { name="pogit"; version="1.0.1"; sha256="19sawm7j5fa9s1nlz4hvhpgjj7n3rrnsh2m5a6scxis4brnaa98n"; depends=[BayesLogit ggplot2 logistf plyr]; }; poibin = derive { name="poibin"; version="1.2"; sha256="12dm1kdalbqy8k7dfldf89v6zw6nd0f73gcdx32xbmry2l2976sa"; depends=[]; }; poilog = derive { name="poilog"; version="0.4"; sha256="0bg03rd5rn4rbdpiv87i8lamhs5m7n7cj8qf48wpnirg6jpdxggs"; depends=[]; }; -pointRes = derive { name="pointRes"; version="1.0.2"; sha256="1q9vjvmxs1f5g8f2aj674wk8piqzjqxzdrvxnawgw1pfi66adnms"; depends=[ggplot2 gridExtra plyr TripleR]; }; +pointRes = derive { name="pointRes"; version="1.1.0"; sha256="189wyg0wj4c0ra8fnlwhjrcx55g89vnh7vrnninr86n5zkz8pm5i"; depends=[ggplot2 gridExtra plyr TripleR]; }; pointdensityP = derive { name="pointdensityP"; version="0.2.1"; sha256="013vamdh987w56bmz0m6j2xas4ycv1zwxs860rs5z4i55dhgf9kh"; depends=[]; }; poisDoubleSamp = derive { name="poisDoubleSamp"; version="1.1"; sha256="13wyj9jf161218y4zjv2haavlmanihp9l59cvh7x8pfr9dh2dwr8"; depends=[Rcpp]; }; poisson_glm_mix = derive { name="poisson.glm.mix"; version="1.2"; sha256="0328m279jfa1fasi9ha304k4wcybzr7hldww7wn0cl7anfxykbv8"; depends=[]; }; @@ -5412,13 +5623,15 @@ polyaAeppli = derive { name="polyaAeppli"; version="2.0"; sha256="0kyz3ap92xz7aq polyapost = derive { name="polyapost"; version="1.4-2"; sha256="0nr8mw0k79kz5zd1k81kz0i940vmlzqqscn1z1yaik0rx8i7mhs7"; depends=[boot rcdd]; }; polyclip = derive { name="polyclip"; version="1.3-2"; sha256="0gsckb5nwfq1w48g67pszk3ndzvj63r8rp7vhh77idizaczkv0r1"; depends=[]; }; polycor = derive { name="polycor"; version="0.7-8"; sha256="0hvww5grl68dff23069smfk3isysyi5n2jm4qmaynrk0m3yvhxwn"; depends=[mvtnorm sfsmisc]; }; +polyfreqs = derive { name="polyfreqs"; version="1.0.0"; sha256="01rl3s7dav1i643fq3r9x8brff48xi49jqiv3hsh8rlifny8wf0z"; depends=[Rcpp RcppArmadillo]; }; polynom = derive { name="polynom"; version="1.3-8"; sha256="05lng88c8cwj65cav31hsrca9nbrqn5rmcz79b17issyk2j0g86p"; depends=[]; }; -polysat = derive { name="polysat"; version="1.4-0"; sha256="1m0k6lb9fp05zk39fj6c2d6sj659l8g6lj4wngp9y8vwd9cld88k"; depends=[]; }; +polysat = derive { name="polysat"; version="1.4-1"; sha256="0n44l66x270biigwf8lwbzsqd3p4zv40firrw07sfbf779cbwd3h"; depends=[]; }; polytomous = derive { name="polytomous"; version="0.1.6"; sha256="137qcnncih1lm2wshwrznlcr0k552n0sqhiy73iwis59lg854caa"; depends=[Hmisc lme4 MASS]; }; polywog = derive { name="polywog"; version="0.4-0"; sha256="0wl9br0g4kgi3nz2fq28nsk6fw0ll0y715v4vz8lv3pvfwc7518j"; depends=[foreach Formula glmnet iterators Matrix miscTools ncvreg Rcpp stringr]; }; pom = derive { name="pom"; version="1.1"; sha256="02jv19apn0kmp1ric2cxajlaad2fmsz4nm4izd2c3691vzas7l83"; depends=[matrixcalc]; }; -pomp = derive { name="pomp"; version="0.65-1"; sha256="1fxfbqa6lb4x0d4h29in8crhac32aw71chyjyvnhadfqynxhhv4k"; depends=[coda deSolve mvtnorm nloptr subplex]; }; +pomp = derive { name="pomp"; version="1.2.1.1"; sha256="12xsd7hrd1dqpfwsrrsx7q46msqv90bz4nrnwgdnd7mvnp2yppn4"; depends=[coda deSolve digest mvtnorm nloptr subplex]; }; pooh = derive { name="pooh"; version="0.3-1"; sha256="0fn711jyn18byfc2nq3y154k8rb39vpnfw1a0xw73pqp1cwd2i73"; depends=[]; }; +popEpi = derive { name="popEpi"; version="0.2.1"; sha256="0xna95gqqbqlfxaarzvyq4c724sxqw0fh9kn46sf674lr13n0jj2"; depends=[data_table Epi]; }; popKorn = derive { name="popKorn"; version="0.3-0"; sha256="1zcl6ms7ghbcjyjgfg35h37ma8nspg15rk2ik82yalqlzxjf7kxw"; depends=[boot]; }; popRange = derive { name="popRange"; version="1.1.3"; sha256="0kkz6va0p8zv3skaqqcpw42014d9x9x4ilx0czz91qf46h61jgb0"; depends=[findpython]; }; popReconstruct = derive { name="popReconstruct"; version="1.0-4"; sha256="14lp0hfnzbiw81fnq7gzpr4lxyfh3g0428rm9jwjh631irz3fcc9"; depends=[coda]; }; @@ -5434,7 +5647,7 @@ portes = derive { name="portes"; version="2.1-3"; sha256="0nqh6aync5igmvg7nr5ink portfolio = derive { name="portfolio"; version="0.4-7"; sha256="0gs1a4qh68xsvl7yi6mz67lamwlqyqjbljpyax795piv46kkm06p"; depends=[lattice nlme]; }; portfolioSim = derive { name="portfolioSim"; version="0.2-7"; sha256="1vf46882ys06ia6gfiibxx1b1g81xrg0zzman9hvsj4iky3pwbar"; depends=[lattice portfolio]; }; potts = derive { name="potts"; version="0.5-4"; sha256="1818md2mdkf47r5vcqawnn84lanir9q6r72kf41lq4zbjkk2yazv"; depends=[]; }; -poweRlaw = derive { name="poweRlaw"; version="0.30.2"; sha256="1b4ngqsh5gywksb3y9cj1yjkhxs4081svwgxwf8gpsa7fnl9c0fl"; depends=[VGAM]; }; +poweRlaw = derive { name="poweRlaw"; version="0.50.0"; sha256="1y9f21sl601rb1qsljgkbnsb9jd76k1k91n7cbz7iyzy8n345jgm"; depends=[VGAM]; }; powell = derive { name="powell"; version="1.0-0"; sha256="160i4ki3ymvq08szaxshqlz7w063493j5zqvnw6cgjmxs7y0vj8y"; depends=[]; }; powerAnalysis = derive { name="powerAnalysis"; version="0.2"; sha256="15ff3wnn37sjkiyycgh16g7gwl3l321fbw12kv621dad5bki14jl"; depends=[]; }; powerGWASinteraction = derive { name="powerGWASinteraction"; version="1.1.3"; sha256="1i8gfsk9qzx54yn661i4x9k7n7b6r1jd808wv1hcq7870mzyb27k"; depends=[mvtnorm pwr]; }; @@ -5452,12 +5665,14 @@ prabclus = derive { name="prabclus"; version="2.2-6"; sha256="0qjsxrx6yv338bxm4k pracma = derive { name="pracma"; version="1.8.6"; sha256="0gwdg6hz186sxanxssinz392l07p4zkyrj1p46agm130hql9a2c8"; depends=[]; }; pragma = derive { name="pragma"; version="0.1.3"; sha256="1n30a346pph4d8cj4p4qx2l6fnwhkxa8yxdisx47pix376ljpjfx"; depends=[]; }; prais = derive { name="prais"; version="0.1.1"; sha256="0vv6h12gsbipi0gnq0w6xh6qvnvc0ydn341g1gnn3zc2n7cx8zcn"; depends=[]; }; +praise = derive { name="praise"; version="1.0.0"; sha256="1gfyypnvmih97p2r0php9qa39grzqpsdbq5g0fdsbpq5zms5w0sw"; depends=[]; }; praktikum = derive { name="praktikum"; version="0.1"; sha256="0kkydgglvqw371fxh46fi86fmdndhwq1n8qj0ynbh2gz1cn86aw1"; depends=[]; }; prc = derive { name="prc"; version="2015.6-24"; sha256="0sf664zqcq6xylhd7rvm2l2xj3f4j6llaj7j4b4847wfxnas2j02"; depends=[kyotil nlme]; }; precintcon = derive { name="precintcon"; version="2.1"; sha256="0cadia7d2pzhnfw00m4k6qgnajv61hj879pafqnnfs6synbp3px6"; depends=[ggplot2 scales]; }; predictmeans = derive { name="predictmeans"; version="0.99"; sha256="1qfqh21d3m0k2491hv5rl5k4v49j5089xsdk3bxicp30l512rax0"; depends=[ggplot2 lattice lme4 nlme pbkrtest plyr]; }; predmixcor = derive { name="predmixcor"; version="1.1-1"; sha256="0v99as0dzn0lqnbbzycq9j885rgsa1cy4qgbya37bbjd01b3pykd"; depends=[]; }; prefmod = derive { name="prefmod"; version="0.8-32"; sha256="0v5r195gzbfi6jbqz8r1x2fzj3anqxf4hxaxb9krm9rkwgphrwpi"; depends=[colorspace gnm]; }; +prepdat = derive { name="prepdat"; version="1.0.2"; sha256="1xa5cdy4kksghlh7135k1rqcghy0q0kmmw43a866b5vbs8xhxwrs"; depends=[dplyr psych reshape2]; }; presens = derive { name="presens"; version="1.0.0"; sha256="0hwciahpfp7h7dchn6k64cwjwxzm6cx28b66kv6flz4yzwvqd3pb"; depends=[birk marelac]; }; preseqR = derive { name="preseqR"; version="1.2.1"; sha256="1izfykccybnr2pnw043g680wg78hbds6hcfqirqhy1sfn6sf8lz1"; depends=[]; }; prettyGraphs = derive { name="prettyGraphs"; version="2.1.5"; sha256="19jag5cymancxy5lvkj5mkhdbxr37pciqj4vdvmxr82mvw3d75m4"; depends=[]; }; @@ -5465,12 +5680,13 @@ prettyR = derive { name="prettyR"; version="2.1-1"; sha256="173n0cp0mq00y1ydba9m prettyunits = derive { name="prettyunits"; version="1.0.2"; sha256="0p3z42hnk53x7ky4d1dr2brf7p8gv3agxr71i99m01n2hq2ri91m"; depends=[assertthat magrittr]; }; prevR = derive { name="prevR"; version="3.1"; sha256="1x8ssz1k8vdq3zx1qhfhyq371i8s3bam2rd6bm3biha5i8icglh6"; depends=[directlabels fields foreign GenKern ggplot2 gstat maptools rgdal sp]; }; prevalence = derive { name="prevalence"; version="0.4.0"; sha256="0vnmglxj1p66sgkw4ffc4wgn0w4s281fk2yifx5cn4svwijv30q0"; depends=[coda rjags]; }; -prim = derive { name="prim"; version="1.0.15"; sha256="008a8fm4as5b6j70xxwiipywhbg1wmdbgjz9r7qfnivcpfarxv7f"; depends=[misc3d rgl]; }; +prim = derive { name="prim"; version="1.0.16"; sha256="0i5jpk798qbvyv9adgjbzpg4dvf7x51bcgbdp38fzdnam6g88y5a"; depends=[misc3d rgl]; }; primer = derive { name="primer"; version="1.0"; sha256="0vkq794a9qmz9klgzz7xz35msnmhdaq3f91lcix762wlchz6v7sg"; depends=[deSolve lattice]; }; primerTree = derive { name="primerTree"; version="1.0.1"; sha256="068j5a2rh8f1h1y7rv2xacnvkn2darzvp1adhi3hqkmwsb3znhjk"; depends=[ape directlabels foreach ggplot2 gridExtra httr lubridate plyr scales stringr XML]; }; primes = derive { name="primes"; version="0.1.0"; sha256="0hhkgpkadvai9xcivfalsvr5w0irsxygyz3p2zngwl3g5rvvh5g9"; depends=[Rcpp]; }; princurve = derive { name="princurve"; version="1.1-12"; sha256="19fprwpfhgv6n6ann978ilwhh58qi443q25z01qzxml4b5jzsd7w"; depends=[]; }; prinsimp = derive { name="prinsimp"; version="0.8-8"; sha256="074a27ml0x0m23hlznv6qz6wvfqkv08qxh3v1sbkl9nxrc7ak4vn"; depends=[]; }; +pro = derive { name="pro"; version="0.1.1"; sha256="0f0iliq7bhf313hi0jbwavljic4laxfc0n3gac5y6hzm39gvvgag"; depends=[]; }; prob = derive { name="prob"; version="0.9-5"; sha256="05skjqimzhnk99z864466dc8qx58pavrky320il91yqyr8b98j8b"; depends=[combinat fAsianOptions hypergeo VGAM]; }; probFDA = derive { name="probFDA"; version="1.0.1"; sha256="093k50kyady54rkrz0n9x9z98z5ws36phlj42j25yip7pzhfd6sv"; depends=[MASS]; }; probemod = derive { name="probemod"; version="0.2.1"; sha256="1cgjr03amssc9rng8ky4w3abhhijj0d2byzm118dfdjzrgmnrf9g"; depends=[]; }; @@ -5478,13 +5694,14 @@ probsvm = derive { name="probsvm"; version="1.00"; sha256="1k0zysym7ncmjy9h7whwi prodlim = derive { name="prodlim"; version="1.5.1"; sha256="0qjyx4i66cahiqjqff63ljwxdig4lvfs2asxnhkgylwn2kb3lygv"; depends=[KernSmooth lava survival]; }; profdpm = derive { name="profdpm"; version="3.3"; sha256="07lhjavrx4fa5950w928mfpddmmnmvdapl5n6mv49m8h3bxs4nmy"; depends=[]; }; profileModel = derive { name="profileModel"; version="0.5-9"; sha256="1p9b9jr5842im195d60ja82pp7vbk85vs8b0r3fnf62j4b92aky9"; depends=[]; }; -profileR = derive { name="profileR"; version="0.2-1"; sha256="1hcydy7hqjac9mvbaim2g75ab1ziyvpbrkb4k21966m54zjk9kka"; depends=[ggplot2 MASS plyr RColorBrewer reshape]; }; +profileR = derive { name="profileR"; version="0.3"; sha256="0blbzqchgajdlj6z0lswzfvih6w8kn9ylqj9cdrnh17sg1ldxr5f"; depends=[ggplot2 lavaan MASS RColorBrewer reshape]; }; +profilr = derive { name="profilr"; version="0.1.0"; sha256="0rw5cjvvrgsdmhgrsaw4skfdk8h488b6mkmibgjj3dd3x0j3caq6"; depends=[]; }; profr = derive { name="profr"; version="0.3.1"; sha256="1w06mm89apggy6wc273b2nsp95smajr8sf3dwshykivv7mhkxs5d"; depends=[plyr stringr]; }; proftools = derive { name="proftools"; version="0.1-0"; sha256="1wzkrz7zr2pjw5id2sp6jdqm5pgrrh35zfwjrkr6mac22lniq4bv"; depends=[]; }; prognosticROC = derive { name="prognosticROC"; version="0.7"; sha256="0lscsyll41hpfzihdavygdzqw9xxjp48dmy4i17qsx5h01jl1h4i"; depends=[survival]; }; progress = derive { name="progress"; version="1.0.2"; sha256="1dpcfvdg1rf0fd4whcn7k09x70s7jhz8p7nqkm9p13b4nhil76sj"; depends=[prettyunits R6]; }; proj4 = derive { name="proj4"; version="1.0-8"; sha256="06r3lavgixrsa52d1v31laqcbw6fb9xn23akv39hvaib78diglv9"; depends=[]; }; -prop_comb_RR = derive { name="prop.comb.RR"; version="1.0"; sha256="01l8gr4qv8w9k3c885j1k93pzyifqcrv9bcgjpxa2m9z4qvl9k6c"; depends=[rootSolve]; }; +prop_comb_RR = derive { name="prop.comb.RR"; version="1.1"; sha256="0zrz0rywhmb4n3my9ihf070rpmd3xni59rr4dsl1ahq9lkd97h20"; depends=[rootSolve]; }; propOverlap = derive { name="propOverlap"; version="1.0"; sha256="0q72z9vbkpll4i3wy3fq06rz97in2cm3jjnvl6p9w8qc44zjlcyl"; depends=[Biobase]; }; propagate = derive { name="propagate"; version="1.0-4"; sha256="18vyh4i4zlsmggfyd4w0zrznk75m84k08p1qa9crind04n5581j1"; depends=[ff MASS minpack_lm Rcpp tmvtnorm]; }; prospectr = derive { name="prospectr"; version="0.1.3"; sha256="18lh03xg6bgzsdsl56bjd63xdp16sqgr3s326sgifkkak8ffbv7q"; depends=[foreach iterators Rcpp RcppArmadillo]; }; @@ -5496,15 +5713,16 @@ proto = derive { name="proto"; version="0.3-10"; sha256="03mvzi529y6kjcp9bkpk7zl protoclass = derive { name="protoclass"; version="1.0"; sha256="17d2m6r1shgb47v8mwdg1a7f5h29m5l7f5m0nsmv0xc90s9cpvk8"; depends=[class]; }; protoclust = derive { name="protoclust"; version="1.5"; sha256="03qhqfqdz45s8c1p8c6sqs10i6c2ilx4fz8wkpwas3j78lgylskg"; depends=[]; }; protr = derive { name="protr"; version="0.5-1"; sha256="1ji0vpy9rrrvbsfwi4823ywi5zbwl57zw1glxllxgwyv9l6v4bpb"; depends=[]; }; -provenance = derive { name="provenance"; version="0.2"; sha256="07wgfb5hmdd4nddl42wpqsx9vzayvngrgmcsssilbm5qbrvgv4sr"; depends=[MASS shapes smacof vegan]; }; +provenance = derive { name="provenance"; version="0.6"; sha256="0nf11f5m302r2kkhcyhjca96prxshnkcmrqk1as6f5vvypzsg2yi"; depends=[MASS shapes smacof]; }; proxy = derive { name="proxy"; version="0.4-15"; sha256="17qnrihxyyyj0lx6hka4mwkgy764ha4jx00a822xjnnbygk81iqv"; depends=[]; }; +prozor = derive { name="prozor"; version="0.1.1"; sha256="0yv9yzp8ldn888v2sg62qaq0vjg5xwjq9274x68idrlywzgplfgv"; depends=[doParallel foreach Matrix seqinr]; }; pryr = derive { name="pryr"; version="0.1.2"; sha256="1in350a8hxwf580afavasvn3jc7x2p1b7nlwmj1scakfz74vghk5"; depends=[codetools Rcpp stringr]; }; psData = derive { name="psData"; version="0.1.2"; sha256="0w8kzivqrh1b6gq803rfd10drxdwgy0cxb5sff273m6jxzak52f2"; depends=[countrycode DataCombine foreign xlsx]; }; -psbcGroup = derive { name="psbcGroup"; version="1.1"; sha256="17kpxddvy9m87i9r1hazc8g6mm35p1452ngz80byhgw9p0jkvn5p"; depends=[LearnBayes mvtnorm SuppDists]; }; +psbcGroup = derive { name="psbcGroup"; version="1.2"; sha256="19kadl21av82adi3kaa7a6h9yphp7vqb6h4c4d8q6i58xj48sxcv"; depends=[LearnBayes mvtnorm SuppDists]; }; pscl = derive { name="pscl"; version="1.4.9"; sha256="15fij6n43hry1plgzrak9vmk9xbb7n4v2frv997bhwxbs6jhhfhf"; depends=[lattice MASS]; }; pscore = derive { name="pscore"; version="0.1-2"; sha256="1sfkxs2kv8lq87j3q9ci7j38c7gzfkp2l36lwcdhiidr2nls2x0c"; depends=[ggplot2 lavaan reshape2]; }; psd = derive { name="psd"; version="1.0-1"; sha256="1ssda4g98m0bk6gkrb7c6ylfsd2a84fq4yhp472n4k8wd73mkdn6"; depends=[RColorBrewer Rcpp RcppArmadillo signal zoo]; }; -pse = derive { name="pse"; version="0.4.2"; sha256="063l4lck7c2ils0klf3pk3vkqhmskhz0m537fnjhwzd7c85wdv4x"; depends=[boot Hmisc]; }; +pse = derive { name="pse"; version="0.4.3"; sha256="01rl7f1mmqizbl6gkq39ll490224cq4h96xvb3qzpikxb2p1d9gp"; depends=[boot Hmisc]; }; pseudo = derive { name="pseudo"; version="1.1"; sha256="0dcx6b892cic47rwzazsbnsicpgyrbdcndr3q5s6z0j1b41lzknd"; depends=[geepack KMsurv]; }; psgp = derive { name="psgp"; version="0.3-6"; sha256="0h9gyadfy0djj32pgwhg8vy2gfn7i7yj5nnsm6pvfypc3k71s2wf"; depends=[automap gstat intamap Rcpp RcppArmadillo]; }; psidR = derive { name="psidR"; version="1.3"; sha256="1jdxbjvc309b1bs81v57kc1g7lgfdz84bfakh9qwh8wgjqbjr06i"; depends=[data_table foreign RCurl SAScii]; }; @@ -5513,19 +5731,22 @@ pspearman = derive { name="pspearman"; version="0.3-0"; sha256="1l5mqga7b5nvm6v9 pspline = derive { name="pspline"; version="1.0-17"; sha256="1n3mhj6q7a1v2k8xkbwji27dihcy3845wp50sx14hy4nbay5kf1r"; depends=[]; }; pssm = derive { name="pssm"; version="1.0"; sha256="1af5zvznh04vz5psbmq3xxclm2zh4gl4gxi1ps6aqmiqjpm57dwq"; depends=[abind MASS MHadaptive numDeriv]; }; psy = derive { name="psy"; version="1.1"; sha256="027whr670w65pf8f7x0vfk9wmadl6nn2idyi6z971069lf01wdlk"; depends=[]; }; -psych = derive { name="psych"; version="1.5.6"; sha256="17h0dmkycsz7m11g59j7cfihp28m55lq1nxycprafm5gz9bjnsbv"; depends=[mnormt]; }; +psych = derive { name="psych"; version="1.5.8"; sha256="0bdc49kqbv0yw68rhhgn9by3rqcc9bdg28hdn6wazrg8qvgc3c5h"; depends=[mnormt]; }; psychometric = derive { name="psychometric"; version="2.2"; sha256="1b7cx6icixh8k3bv60fqxjjks23qn09vlcimqfv2x3m3nkf8p1s9"; depends=[multilevel nlme]; }; -psychomix = derive { name="psychomix"; version="1.1-2"; sha256="0kah36ps9d0dr594vfk9fy2ag2grknjjgvmkf9vzm0ny52cisc72"; depends=[flexmix Formula lattice modeltools psychotools]; }; +psychomix = derive { name="psychomix"; version="1.1-3"; sha256="15lz6rh3101pxsam07zlgiryyzmf8m16mxnh1fsgdnz8bw0li9g7"; depends=[flexmix Formula lattice modeltools psychotools]; }; psychotools = derive { name="psychotools"; version="0.4-0"; sha256="17qwlxj00i0aqwf39hwr6mmxa6jy0j6dxfrp9p1xskbgi5cnvslk"; depends=[]; }; psychotree = derive { name="psychotree"; version="0.15-0"; sha256="08mq4gssrhydn106zm6xxwb1kk43hdzw6jqclx1ya0g8xfri2rrd"; depends=[Formula partykit psychotools]; }; psyphy = derive { name="psyphy"; version="0.1-9"; sha256="1ndc6sy662wj2qfx7r97crlqjd8fdkfvfy59qmf34bcbzbg33riz"; depends=[]; }; psytabs = derive { name="psytabs"; version="0.5"; sha256="0jcsv771ndf0fv76982rbv099ii4l55a8bj1mhgr54838ins0gg7"; depends=[lavaan mokken plyr psych R2HTML rtf semTools]; }; pt = derive { name="pt"; version="1.0"; sha256="0hjijfmc9dip3ys8xg44w0fwvyzyjyjl9hpwm7j2nzg3plv6i1fz"; depends=[]; }; ptinpoly = derive { name="ptinpoly"; version="2.4"; sha256="1jbj8z7lqg7w1mqdh230qjaydx2yb6ffgkc39k7dx8xl30g00i5b"; depends=[misc3d]; }; -ptw = derive { name="ptw"; version="1.9-10"; sha256="0p73bn5qnhbjfjvhqpmwbccw0wkk0yxy5m5svy1kly5y8grylhyx"; depends=[nloptr]; }; +ptw = derive { name="ptw"; version="1.9-11"; sha256="0vh5xv26l27pbx1g9xrj4vcv2bv75cjxs3zf5zcalrnga2lhbdjw"; depends=[nloptr]; }; +ptycho = derive { name="ptycho"; version="1.1-2"; sha256="0038909mgrmxmdgq5z45vxinqv41gdxznywhxch6nh27vwz6vdls"; depends=[coda doMC doRNG foreach plyr reshape2]; }; pubmed_mineR = derive { name="pubmed.mineR"; version="1.0.4"; sha256="044xc8yjk2qm4ppvk666ddk6kfznif6jwb49yrypxvg61ffg2s3j"; depends=[boot R2HTML RCurl XML]; }; pullword = derive { name="pullword"; version="0.1"; sha256="1mxv63q2nfnhxcn8m17d40w792l1i7diykg6h0i42pj0rsa4ww36"; depends=[RCurl]; }; pumilioR = derive { name="pumilioR"; version="1.3"; sha256="1zmcdp978p73bh9fdshxlrzgfg18j007xgxgr439rq90bwiwva6j"; depends=[RCurl XML]; }; +purge = derive { name="purge"; version="0.1.0"; sha256="1x48cxp59d4kz9i78w2sd3xv5ab22jkbilh6qzmz6jrqd1nl0xdd"; depends=[lme4 randomForest rpart]; }; +purrr = derive { name="purrr"; version="0.1.0"; sha256="1bcvqc2ccg72asyasysgm1p3hppl97wsr0az1f5x8q7c5ri2mynp"; depends=[BH dplyr magrittr Rcpp]; }; pushoverr = derive { name="pushoverr"; version="0.1.4"; sha256="1qa7cajgri3dwlvbpwn244m92n3q3apl4m5420mzsa9ngnmm8hj1"; depends=[httr]; }; pvar = derive { name="pvar"; version="2.2"; sha256="1f58czx14shd02ijyxhn46yrvfh44wrpifja8cjv522gbkrcr7yf"; depends=[Rcpp]; }; pvclass = derive { name="pvclass"; version="1.2"; sha256="099lk0x24h7g77lpr22mzpl22q2b0nr466ljgm6jcdyjbkzgx237"; depends=[Matrix]; }; @@ -5533,7 +5754,8 @@ pvclust = derive { name="pvclust"; version="1.3-2"; sha256="0w9cxr0bc591icbyn823 pvrank = derive { name="pvrank"; version="1.0"; sha256="0kvy0b1x7q23pjw2ckyqzyh3ihqnbrd067v85l9rvf0pxyycqyhx"; depends=[Rmpfr]; }; pvsR = derive { name="pvsR"; version="0.3"; sha256="1ijmqlcsc8z0aphdd3j37ci8yqsy50wnr2fwn7h8fxbyd12ax2nj"; depends=[httr nnet XML]; }; pweight = derive { name="pweight"; version="0.0.1"; sha256="0pxxfrap1bmnhbfbmkddfbqwkpw42hq37s0y26zmkxqlx4wblira"; depends=[qqman]; }; -pwr = derive { name="pwr"; version="1.1-2"; sha256="1czganj70qszz32yx2jprhr8h9a2lpg67gwfwfjf8kpk97qvkalj"; depends=[]; }; +pwr = derive { name="pwr"; version="1.1-3"; sha256="0ng0n5qn9im9fdpyv2i2g80kzfa7dk3knfjf4xdpypfdw2gjrf02"; depends=[]; }; +pwrRasch = derive { name="pwrRasch"; version="0.1-2"; sha256="13fr4yfk8aky1vv36pllx673l4lg9q7i661vbyn2zabyizd2rw3b"; depends=[]; }; pwt = derive { name="pwt"; version="7.1-1"; sha256="0926viwmwldmzlzbnjfijh00wrhgb0h4h0mlrls71pi5pjfldifa"; depends=[]; }; pwt8 = derive { name="pwt8"; version="8.1-0"; sha256="0jvskkn3c4m2lfxm9ivm8g96kcd7ynlmjpjqbrd6sqivas0z46r2"; depends=[]; }; pxR = derive { name="pxR"; version="0.40.0"; sha256="08s62kzdgak7mjzyhd32qn93q5l7sj01vhsk7fjg9nxjvm78xxka"; depends=[plyr reshape2 RJSONIO stringr]; }; @@ -5550,12 +5772,12 @@ qclust = derive { name="qclust"; version="1.0"; sha256="0cxkk4lybpawyqmy5j6kkpgm qcr = derive { name="qcr"; version="0.1-18"; sha256="16dfda3rwivsdhp7j5izzbk2rzwfabfmxgpq4kjc4h7r90n2vly2"; depends=[qcc]; }; qdap = derive { name="qdap"; version="2.2.2"; sha256="06y4a35ki7cml5sgr5q8cc8wh6rwv4xcrd7rki18ykyjhq4y4gc6"; depends=[chron dplyr gdata gender ggplot2 gridExtra igraph NLP openNLP plotrix qdapDictionaries qdapRegex qdapTools RColorBrewer RCurl reports reshape2 scales stringdist tidyr tm venneuler wordcloud xlsx XML]; }; qdapDictionaries = derive { name="qdapDictionaries"; version="1.0.6"; sha256="1icivvsi33494ycd7vfqm9zx2g2rc1m3dygs3bi0ndi798z1cvx2"; depends=[]; }; -qdapRegex = derive { name="qdapRegex"; version="0.4.0"; sha256="0i2mh1xbm1g9vxdp744g23b2lcjwn7may2cn4ijfw3qpi2bf2axl"; depends=[stringi]; }; -qdapTools = derive { name="qdapTools"; version="1.1.0"; sha256="0k3mvcjj2fg2v3z8jm2z02zmrpgjpwbpcaanmp2vlykqzacsrl52"; depends=[chron data_table RCurl XML]; }; +qdapRegex = derive { name="qdapRegex"; version="0.5.0"; sha256="0l3h1n436rj4pcimfcv7lfdwqs0qmccjgamdb6rcbxhmmdkzk2hs"; depends=[stringi]; }; +qdapTools = derive { name="qdapTools"; version="1.3.1"; sha256="0sfzqmds888r599mwm7j0qjsqfv6z59p4apmmg36hsyaxmw51233"; depends=[chron data_table RCurl XML]; }; qdm = derive { name="qdm"; version="0.1-0"; sha256="0cfxyy8s5zfb7867f9xv9scq9blq2qnw68x66m7y7nqlrrff5xdr"; depends=[]; }; qgraph = derive { name="qgraph"; version="1.3.1"; sha256="1wmpsgmzl9qg4vjjjlbxqav3ck7p26gidsqv3qryx56jx54164wg"; depends=[colorspace corpcor d3Network ellipse fdrtool ggm ggplot2 glasso gtools Hmisc huge igraph jpeg lavaan Matrix plyr png psych reshape2 sem sna]; }; qgtools = derive { name="qgtools"; version="1.0"; sha256="0irqfaj2qqx7n1jfc0kmfpgzqrhwwlj0qizsmya94zk9d27bcpn5"; depends=[MASS Matrix]; }; -qicharts = derive { name="qicharts"; version="0.3.1"; sha256="1h2hf6psz5rkbg4s29576mz6cp9vyynw30sy999dx4yyriw3c3yb"; depends=[lattice latticeExtra]; }; +qicharts = derive { name="qicharts"; version="0.3.2"; sha256="1am3w8l0cppgxhldyhl598g5m39wvdc4dpyar7zfkn0y87cvyxxw"; depends=[lattice latticeExtra]; }; qiimer = derive { name="qiimer"; version="0.9.2"; sha256="08625hz2n7yk9zk1k9sa46n2ggbw5qs0mlqkmzyjjh3qlnb1354a"; depends=[pheatmap]; }; qlcMatrix = derive { name="qlcMatrix"; version="0.9.4"; sha256="1nkk712h9nnaqshw766mvk72w6gq9abyry4q1a0ghn0naq3gyl0s"; depends=[Matrix slam]; }; qmap = derive { name="qmap"; version="1.0-3"; sha256="1c7qvmd5whi446nzssqvhz1j2mpx22nlzzdrcql84v18ry0dr18m"; depends=[fitdistrplus]; }; @@ -5563,10 +5785,11 @@ qmethod = derive { name="qmethod"; version="1.3.1"; sha256="01yj8fr6d615lydb7111 qmrparser = derive { name="qmrparser"; version="0.1.5"; sha256="0sl9n42j0dx9jqz5vv029ra6dyrg9v7mvdlya8ps3vyd6fjhwh0z"; depends=[]; }; qpcR = derive { name="qpcR"; version="1.4-0"; sha256="029qhncfiicb3picay5yd42g6qi0x981r6mgd67vdx71cac9fp59"; depends=[MASS Matrix minpack_lm rgl robustbase]; }; qqman = derive { name="qqman"; version="0.1.2"; sha256="024ln79hig5ggcyc3466r6y6zx2hwy2698x65cha5zpm51kq1abs"; depends=[]; }; -qqtest = derive { name="qqtest"; version="1.0"; sha256="12hw4d2gddb4fgdi986pyqgvlpxgk5lngfp989hq2a830kyxz1ds"; depends=[MASS]; }; +qqtest = derive { name="qqtest"; version="1.1"; sha256="1g0pxssls8id3h69chrq1qxsj4vhzizzim0lr7g5ixanqnc1ilna"; depends=[robust]; }; qrLMM = derive { name="qrLMM"; version="1.1"; sha256="1yg9ph6jy0sn4d82vn4v7yy3mqczbnzsq8qqp9dw38vh2456rmf2"; depends=[ghyp matrixcalc mvtnorm nlme psych quantreg]; }; qrNLMM = derive { name="qrNLMM"; version="1.0"; sha256="0vlinc3bggapff29dyz14vn122gy6aq3rp38v2bpnxfkbpj10lvy"; depends=[ald ghyp matrixcalc mvtnorm psych quantreg]; }; qrage = derive { name="qrage"; version="1.0"; sha256="00j74bnkcpp0h8v44jwzj67q9aaw47ajc2fvgr6dckj9rymydinl"; depends=[htmlwidgets]; }; +qrcode = derive { name="qrcode"; version="0.1.1"; sha256="12j0db8vidlgkp0dcjyrw5mhhvazl7v7gpn9wsf2m0qnz1rm4igq"; depends=[R_utils stringr]; }; qrfactor = derive { name="qrfactor"; version="1.4"; sha256="0f02lh8zrc36slwqy11x03yzfdy94p1lk5jar9h5cwa1dvi5k8gm"; depends=[cluster maptools mgraph mvoutlier pvclust]; }; qrjoint = derive { name="qrjoint"; version="0.1-1"; sha256="0q39n4y7cdmim88na3pw05w15n95bpqnxknvh6fzz9mpbbjkxqx5"; depends=[coda kernlab Matrix quantreg]; }; qrmtools = derive { name="qrmtools"; version="0.0-1"; sha256="0xjgb8clyhlrl4qdbhi85m97cbhab5q5sy2zr87gamz2y365alpr"; depends=[xts]; }; @@ -5574,9 +5797,9 @@ qrng = derive { name="qrng"; version="0.0-2"; sha256="0rs4dggvrlc3bi0wgkjw8lhv4b qrnn = derive { name="qrnn"; version="1.1.3"; sha256="0phbazi47pzhvg7k3az958rk5dv7nk2wvbxqsanppxsvyxl0ykwf"; depends=[]; }; qtbase = derive { name="qtbase"; version="1.0.11"; sha256="01fx8yabvk2rsb0mdx9f59a9qf981sl88s56iy58w5dd6r2ag6gc"; depends=[]; }; qte = derive { name="qte"; version="1.0.1"; sha256="15y6n0c9jinfz7hmm107palgy8fl15bc71gw0bcd3bawpydkrq2w"; depends=[]; }; -qtl = derive { name="qtl"; version="1.36-6"; sha256="1qn8fv0s2934pbds2962isr8y96s2k0jlh6y27rz21qlpryrbijb"; depends=[]; }; +qtl = derive { name="qtl"; version="1.37-11"; sha256="0h20d36mww7ljp51pfs66xq33yq4b4fwq9nsh02dpmfhlaxgx1xi"; depends=[]; }; qtlDesign = derive { name="qtlDesign"; version="0.941"; sha256="138yi85i5xiaqrns4v2hw46b731bdgnb301wg2h4cfrxvrw4l0d5"; depends=[]; }; -qtlbook = derive { name="qtlbook"; version="0.18-1"; sha256="09b4w7kqdlmpf0vsjgwbi9sraafzchvk18yzrx72gs151v03nxlm"; depends=[qtl]; }; +qtlbook = derive { name="qtlbook"; version="0.18-3"; sha256="0b0kv5nipdavify4vslwhq9p7nmhwk71q3xmnkj66b780605mvr6"; depends=[qtl]; }; qtlhot = derive { name="qtlhot"; version="0.9.0"; sha256="1043rksqqzgmr7q03j18wxgm706prqxq9ki9b9p2dxvc62vfcfih"; depends=[corpcor lattice mnormt qtl]; }; qtlmt = derive { name="qtlmt"; version="0.1-3"; sha256="01ql0fr2mxl8a8nd6lpig5j8vznv594ygn6bj6d31gj15r5rs8fs"; depends=[]; }; qtlnet = derive { name="qtlnet"; version="1.3.6"; sha256="044a2p3mpp203kb85s2fr3qiyypm461lrzxkfi0hnzq44qqba169"; depends=[graph igraph pcalg qtl sem]; }; @@ -5586,21 +5809,24 @@ quad = derive { name="quad"; version="1.0"; sha256="0fak12l19f260k0ygh6zimx8dabz quadprog = derive { name="quadprog"; version="1.5-5"; sha256="0jg3r6abmhp8r9vkbhpx9ldjfw6vyl1m4c5vwlyjhk1mi03656fr"; depends=[]; }; quadrupen = derive { name="quadrupen"; version="0.2-4"; sha256="0gs565zi5qkccr9f65smvzgq2d97p7i5inksp2492bjvqhsbagxj"; depends=[ggplot2 Matrix Rcpp RcppArmadillo reshape2 scales]; }; qualCI = derive { name="qualCI"; version="0.1"; sha256="09mzsy5ryyrn1gz9ahrh95cpfk7g09pmjjy0m82fh4xc7j5w6kpf"; depends=[combinat]; }; -qualV = derive { name="qualV"; version="0.3-1"; sha256="0p4yfgq2wxwis2w28mdb61x6hzm6sb9bczjdm9bc05ga5srr3sdd"; depends=[KernSmooth]; }; +qualV = derive { name="qualV"; version="0.3-2"; sha256="16pjn2la4da9466rafl5drlzx2rcf3vy68b5wz27aacyr15nvdcb"; depends=[KernSmooth]; }; qualityTools = derive { name="qualityTools"; version="1.54"; sha256="0ylp5a49b4q4max4yz30ia7r12s4jrvqn9zx5a21qcnpinf8b932"; depends=[]; }; +qualvar = derive { name="qualvar"; version="0.1.0"; sha256="07vpq5nyh40y1sq1fsg97z7bbardqakq6bx635v42pv00480h9sh"; depends=[]; }; +quantable = derive { name="quantable"; version="0.1"; sha256="0q1m971fk9i2qdyps745g89x34anw0g2hxqf5p8ggfvvr32k635r"; depends=[gplots RColorBrewer scales]; }; quantchem = derive { name="quantchem"; version="0.13"; sha256="1ga5xa7lsk04flfp1syjzpnvj3i2ypzh1m49vq1xkdwpm6axdy8n"; depends=[MASS outliers]; }; -quanteda = derive { name="quanteda"; version="0.8.2-0"; sha256="17v1xilcivj57p7w562bj4224cqi5hap4lw7h12c29n26x2b33l3"; depends=[ca data_table Matrix proxy Rcpp RcppArmadillo SnowballC stringi wordcloud]; }; +quanteda = derive { name="quanteda"; version="0.8.4-2"; sha256="0hk5jmjrb6nng86zmfv72yhbfpldvx16h62nf6drrm99gycqi7m9"; depends=[ca data_table Matrix proxy Rcpp RcppArmadillo SnowballC stringi wordcloud]; }; quantification = derive { name="quantification"; version="0.1.0"; sha256="0987389rr21fl3khgd3a1yq5821hljwm0xlyxgjy1km5hj81diap"; depends=[car]; }; quantmod = derive { name="quantmod"; version="0.4-5"; sha256="14y8xra36cg5zam2cmxzvkb8n2jafdpc8hhjv9xnwa91basrx267"; depends=[TTR xts zoo]; }; -quantreg = derive { name="quantreg"; version="5.11"; sha256="0pyc1zknkjyvaix76bn84l90zavajsc7jx17x0zanllnh34siizp"; depends=[SparseM]; }; -quantregForest = derive { name="quantregForest"; version="1.0"; sha256="11mnb32vz6m2g7nggip2y251rkwn6wr7jwdh0hqvl0pgalmipb84"; depends=[randomForest]; }; +quantreg = derive { name="quantreg"; version="5.19"; sha256="0nbrlmci2r2s9z0cr16l8bl8sz0cxfr7dw5a8fdirfmjsrw3w62c"; depends=[Matrix MatrixModels SparseM]; }; +quantregForest = derive { name="quantregForest"; version="1.1"; sha256="0gzjnwbzib4bckxirrcdjlylq90dwacwvz9k3sskffsi4fd5d3ga"; depends=[randomForest]; }; quantregGrowth = derive { name="quantregGrowth"; version="0.3-1"; sha256="0cm4ac9rn5vhqhi7f5qiilym1vp7x6bglwghw22b70nf9zvcap9h"; depends=[quantreg]; }; -quantspec = derive { name="quantspec"; version="1.0-3"; sha256="1g4arhhybw021dnz0imdfwwj328gc8yw75cgnnd00skdc402cfhk"; depends=[abind quantreg Rcpp snowfall zoo]; }; +quantspec = derive { name="quantspec"; version="1.1-0"; sha256="0dif3s5v6r6ggs2hj68hwbdilp7ql4l5z1g878di2fck7vsqxvw2"; depends=[abind quantreg Rcpp snowfall zoo]; }; questionr = derive { name="questionr"; version="0.4.3"; sha256="13mmmjxg9vkn53dp9hng330bkilzdf2zqisgs21ng08b6p9dv7n4"; depends=[classInt highr htmltools shiny]; }; queueing = derive { name="queueing"; version="0.2.5"; sha256="11a44aqq0s50vdbn7rhijajqw1rrcj1qnyjjd8dn1cc5nvq141k7"; depends=[]; }; quickpsy = derive { name="quickpsy"; version="0.1.0"; sha256="1p1rhv69bh842r77dxn73l0k2lwa5vj2xc27m470pjygap2zaqv0"; depends=[boot DEoptim dplyr ggplot2 MPDiR tidyr]; }; quint = derive { name="quint"; version="1.0"; sha256="19dxrssy4dw7v3s4hhhy6yilbc7zb6pvcnh3mm1z6vv5a1wfr245"; depends=[Formula partykit rpart]; }; quipu = derive { name="quipu"; version="1.9.0"; sha256="1py1qpbwp2smr5di8b3zmzxxhchfmr5qfhqkdiqig28mcnqcmp5n"; depends=[agricolae pixmap shiny stringr xtable]; }; +qut = derive { name="qut"; version="1.0"; sha256="0vsph874mrrh3f44lq092d06w58h9xbi6g5fnz3p3aw6k4zg2r1m"; depends=[glmnet lars Matrix]; }; qvcalc = derive { name="qvcalc"; version="0.8-9"; sha256="1ysbsm65n05vypvvpsbdfbrb60gij50vsmybzi4405g5z2ds1j72"; depends=[]; }; qwraps2 = derive { name="qwraps2"; version="0.1.1"; sha256="1kikw92i9l06rxwlnp2sa17wkd8xshryx1rbk4qjzf4yfgmgbkbd"; depends=[dplyr ggplot2]; }; r2d2 = derive { name="r2d2"; version="1.0-0"; sha256="1zl0b36kx49ymfks8rm33hh0z460y3cz6189zqaf0kblg3a32nsi"; depends=[KernSmooth MASS sp]; }; @@ -5610,6 +5836,7 @@ r2stl = derive { name="r2stl"; version="1.0.0"; sha256="18lvnxr40cm450s8qh09c3cn r4ss = derive { name="r4ss"; version="1.22.1"; sha256="1rjnglwa3i8rlzyqqr5h8yh7vglrh8zpd3829qcc1vfi4swcwwqw"; depends=[coda corpcor gplots gtools maps pso RCurl]; }; rARPACK = derive { name="rARPACK"; version="0.7-0"; sha256="1r1ypa56wkxvll9yqr50f3x2krimi22lwyrkksf5zf6laksmiq1w"; depends=[Matrix Rcpp RcppEigen]; }; rAltmetric = derive { name="rAltmetric"; version="0.6"; sha256="0ym8p9rq64ig3vlaimk38rmc2h1315bphx7v1rd6g4gypgx4ym15"; depends=[ggplot2 plyr png RCurl reshape2 RJSONIO]; }; +rAmCharts = derive { name="rAmCharts"; version="1.1.1"; sha256="1v77zliwrw92q0ax8xgssrvb4l4xid9na2qvwknmgbs4xf9hbsdi"; depends=[data_table htmlwidgets rlist]; }; rAverage = derive { name="rAverage"; version="0.4-13"; sha256="0yfy81p99a3cb31cagxdvby7l2hcc60g3mnfizd9nvgamdmw08sy"; depends=[]; }; rAvis = derive { name="rAvis"; version="0.1.4"; sha256="0svplnrn8rrr59v04nr1pz7d5r4dr1kdl0bd3kg8c3azxv47mxbp"; depends=[gdata maptools raster RCurl rgdal scales scrapeR sp stringr XML]; }; rBeta2009 = derive { name="rBeta2009"; version="1.0"; sha256="0ljzxlndn9ba36lh7s3k4biim2qkh2mw9c0kj22a507qbzw1vgnq"; depends=[]; }; @@ -5637,8 +5864,8 @@ rLiDAR = derive { name="rLiDAR"; version="0.1"; sha256="1zm3c3xpxk1ll0cq589k1kf6 rLindo = derive { name="rLindo"; version="8.0.1"; sha256="05qyc4wvpjgw8jxmwn2nwybi695fjn0cdilkprwmjg07c82f0q5n"; depends=[]; }; rNMF = derive { name="rNMF"; version="0.5.0"; sha256="1nz6h0j5ywdh48m0swmhp34hbkycd7n13rclrxaw85qi9wc42597"; depends=[knitr nnls]; }; rNOMADS = derive { name="rNOMADS"; version="2.1.4"; sha256="0a0knxqqbn52i4ixpv16h1hnajhwx788cmdiq78ysds7yfkjrwzy"; depends=[fields GEOmap MBA RCurl rvest scrapeR stringr XML]; }; -rPlant = derive { name="rPlant"; version="2.7"; sha256="0gqxb49d6qzkd533s9qp75byvz66v1csdlnmh3m2zg96aw32178r"; depends=[knitcitations RCurl rjson seqinr]; }; -rPref = derive { name="rPref"; version="0.5"; sha256="0wgyf785izfhx1jvff4as1dir1s432z9v2b2rgdxvay9y5zpc2ar"; depends=[dplyr igraph Rcpp RcppParallel]; }; +rPlant = derive { name="rPlant"; version="2.11"; sha256="0732zcq5jj04lnim38jfib242dcz595ln41lgmqj7b2n9v0h5wc6"; depends=[RCurl rjson seqinr]; }; +rPref = derive { name="rPref"; version="0.6"; sha256="14fchgkjs8p3wy2c5zksayd90jzxyx2fmisd67mbz65h3djfr3q5"; depends=[dplyr igraph Rcpp RcppParallel]; }; rPython = derive { name="rPython"; version="0.0-5"; sha256="0d608v1x8walwnx7aa3m0n7999jlbiymhl7605z4n7ps6l1140mv"; depends=[RJSONIO]; }; rSCA = derive { name="rSCA"; version="2.1"; sha256="1lpix8xsjzyhgksmigvqxpv2bvaka0b1q2kcvdyfrfcw713n19rw"; depends=[]; }; rSFA = derive { name="rSFA"; version="1.04"; sha256="0gd6ji1ynbb04rfv8jfdmp7dqnyz8pxcl5636fypd9a81fggl0gs"; depends=[MASS]; }; @@ -5653,11 +5880,12 @@ race = derive { name="race"; version="0.1.59"; sha256="13jprlnngribgvyr7fbg9d36i radar = derive { name="radar"; version="1.0.0"; sha256="1wh5j3cfbj01jx2kbm9ca5cqhbb0vw7ifjn426bllm4lbbd8l273"; depends=[]; }; radiant = derive { name="radiant"; version="0.1.83"; sha256="0456iddvsnw2p0mnchig18ccbl0z53spb3nqwx43ms31b1nbfpjw"; depends=[AlgDesign broom car dplyr ggdendro ggplot2 GPArotation gridExtra knitr lubridate magrittr markdown MASS pryr psych shiny shinyAce tidyr wordcloud]; }; radir = derive { name="radir"; version="1.0"; sha256="1aiy92r854h1l9fsa8j65w495hj7hll7k1csfnvb92h0wh0bxyzy"; depends=[hermite]; }; +rafalib = derive { name="rafalib"; version="1.0.0"; sha256="1dmxjl66bfdgrybhwyaa8d4i460liqcdw8b29a6w7shgksh29m0k"; depends=[RColorBrewer]; }; rags2ridges = derive { name="rags2ridges"; version="1.4"; sha256="1vwd39vp8xdrcz1kfsjng3lzfrfb3czsxg1kvll5d275xsrhz5ix"; depends=[expm fdrtool ggplot2 Hmisc igraph reshape snowfall]; }; rainbow = derive { name="rainbow"; version="3.3"; sha256="0xiqljshkdhhkdgcvz5n9qgbxgxskpxbq14vbpil9nqw2syj9xvj"; depends=[cluster colorspace hdrcde ks MASS pcaPP]; }; raincpc = derive { name="raincpc"; version="0.4"; sha256="0yzpyidvf24frf82pj7rarjh0ncm5dhm0mmpsf2ycqlvp0qld10i"; depends=[SDMTools]; }; rainfreq = derive { name="rainfreq"; version="0.3"; sha256="0985ck2bglg22gfj7m0hc7kpk0apljsbssf1ci99mgk47yi8fk9v"; depends=[RCurl SDMTools]; }; -ramify = derive { name="ramify"; version="0.3.1"; sha256="1anma8kwfhm4k74fakpifrymnrjxmmk48jf1apxkg3406xcxy020"; depends=[]; }; +ramify = derive { name="ramify"; version="0.3.2"; sha256="0fqspa1nlf0969g3lvvwg65zimwfdj5c2bahxvafggn832sb54k9"; depends=[]; }; ramps = derive { name="ramps"; version="0.6-13"; sha256="1y7jaajzbf6d9xwr0rg0qr43l8kncgwbpfy5rpka90g3244v8nwz"; depends=[coda fields maps Matrix nlme]; }; randNames = derive { name="randNames"; version="0.2.1"; sha256="177xdgrikvfcgjag382v5d1j72322ihnbggzxp9ip6p48ib4p3qg"; depends=[dplyr httr jsonlite]; }; randaes = derive { name="randaes"; version="0.3"; sha256="14803argy0xdd8mpn4v67gbp90qi2is4x6na9zw7i9pm504xji1x"; depends=[]; }; @@ -5666,17 +5894,18 @@ random_polychor_pa = derive { name="random.polychor.pa"; version="1.1.4-1"; sha2 randomForest = derive { name="randomForest"; version="4.6-10"; sha256="0glj08w6sbabr3n71kzd5w3jb7vhrys8rq904j27a4xk0qp4s5lv"; depends=[]; }; randomForestSRC = derive { name="randomForestSRC"; version="1.6.1"; sha256="174ky1wwdpq6wkn8hanfpfgy55jf6v1hlm6k688gjs0515y5490r"; depends=[]; }; randomGLM = derive { name="randomGLM"; version="1.02-1"; sha256="031338zxy6vqak8ibl2as0l37pa6qndln0g3i9gi4s6cvbdw3xrv"; depends=[doParallel foreach MASS]; }; -randomLCA = derive { name="randomLCA"; version="1.0-2"; sha256="14v6jmsbyzmavxjdwh9nb0lljhc7kdly4p1v2a9jypjil6kk5ibc"; depends=[boot fastGHQuad lattice]; }; +randomLCA = derive { name="randomLCA"; version="1.0-3"; sha256="0wwmrvi1xliv3qcshrnvf0bwgm8yydwba6gsdwn08jcphjxl7ygi"; depends=[boot fastGHQuad lattice]; }; randomNames = derive { name="randomNames"; version="0.1-0"; sha256="0v92w0z0dsdp6hhyyq764nlky8vmbs6vcnrna5ls47fj80f9cqa4"; depends=[data_table]; }; randomUniformForest = derive { name="randomUniformForest"; version="1.1.5"; sha256="1amr3m7h5xcb8gahrr58233chsnx1naf9x5vpjy9p5ivh71xcxf7"; depends=[cluster doParallel foreach ggplot2 gtools iterators MASS pROC Rcpp]; }; randomizationInference = derive { name="randomizationInference"; version="1.0.3"; sha256="0x36r9bjmpx90fz47cha4hbas4b31mpnbd8ziw2wld4580jkd6mk"; depends=[matrixStats permute]; }; randomizeBE = derive { name="randomizeBE"; version="0.3-2"; sha256="1mkq1fpr7bwlk01246qy6w175jcc94q8sb3pyjkdr8yms6iqk8i7"; depends=[]; }; +randomizeR = derive { name="randomizeR"; version="1.0"; sha256="0ajipzihp17hs5bvqbqssv5z701y6iyy09cahgp5f9qj12kmhplc"; depends=[ggplot2]; }; randomizr = derive { name="randomizr"; version="0.2.2"; sha256="0g870sr8zjfl1dh3ay14kd6v6jg2qw86w2wcdzr8f201xy5i1fgr"; depends=[]; }; randtests = derive { name="randtests"; version="1.0"; sha256="03z3kxl4x0l91dsv65ld9kgc58z82ld1f4lk18i18dpvwcgkqk82"; depends=[]; }; randtoolbox = derive { name="randtoolbox"; version="1.17"; sha256="107kckva43xpqncak8ll4h0mjm8lcks4jpf7dffgw5ggcc77ycrb"; depends=[rngWELL]; }; rangeMapper = derive { name="rangeMapper"; version="0.2-8"; sha256="0bxb37gy98smypjj27r3dbd0vfyvaqw2p25qv07j3isykcn2pxpn"; depends=[classInt lattice maptools raster RColorBrewer rgdal rgeos RSQLite sp]; }; ranger = derive { name="ranger"; version="0.2.7"; sha256="0ajzbbawhxmlcpy1vyka82xwfpgx07ng432w3s9xy8h58s12yljc"; depends=[Rcpp]; }; -rankdist = derive { name="rankdist"; version="1.0.0"; sha256="1hzrm21s9zlmhkxl3zqbdizhi8256cvw2l5gwx24azq7gf87mh57"; depends=[hash optimx permute Rcpp]; }; +rankdist = derive { name="rankdist"; version="1.1.2"; sha256="1nr9nr5nfziia6jykk598hm5ngkfr6yx5mypq34iyfm24877gd3q"; depends=[hash optimx permute Rcpp]; }; rankhazard = derive { name="rankhazard"; version="1.0"; sha256="1kylg8yjrixbv86i2ffhhn8f5shsj8kvi66k202ari0li92y7dsg"; depends=[survival]; }; rappdirs = derive { name="rappdirs"; version="0.3"; sha256="1yjd91h1knagri5m4djal25p7925162zz5g6005h1fgcvwz3sszd"; depends=[]; }; rapport = derive { name="rapport"; version="0.51"; sha256="1qn45nrcawr8d9pkdnpmm37dg31l28gfbnwjl62fs7y691187cqp"; depends=[lattice pander plyr reshape yaml]; }; @@ -5684,24 +5913,25 @@ rapportools = derive { name="rapportools"; version="1.0"; sha256="1sgv4sc737i12a rareGE = derive { name="rareGE"; version="0.1"; sha256="0v3a2wns77q923ilddicqzg0108f8kmfdnsff1n65icin7cfzsny"; depends=[MASS nlme survey]; }; rareNMtests = derive { name="rareNMtests"; version="1.1"; sha256="13r2hipqsf8z9k48ha5bh53n3plw1whb7crpy8zqqkcac8444b2z"; depends=[vegan]; }; rasclass = derive { name="rasclass"; version="0.2.1"; sha256="04g2sirxrf16xjmyn4zcci757k7sgvsjbg0qjfr5phbr1rssy9qf"; depends=[car e1071 nnet randomForest RSNNS]; }; -raster = derive { name="raster"; version="2.4-15"; sha256="0p2wrzagdj1v7ambj2grjg10xzahb5z1nz1qdxjf1p0v10hf3pfx"; depends=[Rcpp sp]; }; -rasterVis = derive { name="rasterVis"; version="0.35"; sha256="0kdpng32b3l0hsf24zzj5m5srcka1wr26dpxfjxxsyilg6frp83r"; depends=[hexbin lattice latticeExtra raster RColorBrewer sp zoo]; }; +rase = derive { name="rase"; version="0.2-2"; sha256="1v2yckqi2ypis4n8yckav09crjrjs2lkkw0czvdv2nmh716ayysy"; depends=[ape mvtnorm phytools polyCub rgl sm spatstat]; }; +raster = derive { name="raster"; version="2.4-20"; sha256="0mz5lznjrci0g9wiw35mj5fr2gnr65ipgpx68km99zaszphg5kls"; depends=[Rcpp sp]; }; +rasterVis = derive { name="rasterVis"; version="0.37"; sha256="1pfpjrjgcy5d4jzkf7sm427y0b6v0ipxr9p8z9sr6djhzcs3gfn0"; depends=[hexbin lattice latticeExtra raster RColorBrewer sp zoo]; }; rateratio_test = derive { name="rateratio.test"; version="1.0-2"; sha256="1a2v12z2dr893ha80fhada1820z5ih53w4pnsss9r9xw3hi0m6k5"; depends=[]; }; raters = derive { name="raters"; version="2.0.1"; sha256="16jnx6vv39k4niqkdlj4yhqx8qbrdi99bwzxjahsxr12ab5npbp1"; depends=[]; }; rationalfun = derive { name="rationalfun"; version="0.1-0"; sha256="15949vs9pdjz7426zhgqn7y87xzn79ikrpa2vyjnsid1igpyh0mp"; depends=[polynom]; }; rattle = derive { name="rattle"; version="3.5.0"; sha256="09v9q5wkmiyvym99kxw0pirzfq3jxp55gfnqlb93jvwjv8k91xy7"; depends=[RGtk2]; }; -rawFasta = derive { name="rawFasta"; version="1.0.0"; sha256="0krvs8d1r8hggjg84n7g3ncdkifa3hipbma98f49kf81fzn2npip"; depends=[]; }; rbamtools = derive { name="rbamtools"; version="2.12.3"; sha256="0vh6kal5r5v708d3a4lsmgbssjb0b9l1iypibkd9v97j00cbk6rr"; depends=[]; }; rbefdata = derive { name="rbefdata"; version="0.3.5"; sha256="12mcqz0pqgwfw5fmma0gwddj4zk0hpwmrsb74dvzqvgcvpfjnv98"; depends=[RColorBrewer RCurl rjson rtematres wordcloud XML]; }; rbenchmark = derive { name="rbenchmark"; version="1.0.0"; sha256="010fn3qwnk2k411cbqyvra1d12c3bhhl3spzm8kxffmirj4p2al9"; depends=[]; }; rbhl = derive { name="rbhl"; version="0.2.0"; sha256="169nrbpi9ijzb5qk1b1dwjayfnsjq8r67dc7bis9aicyp4hpjyzw"; depends=[httr jsonlite plyr XML]; }; +rbiouml = derive { name="rbiouml"; version="1.7"; sha256="0bk0pvx0rfk74s7lbr8lc664yplfky94j1ym098w029045k233pi"; depends=[RCurl RJSONIO]; }; rbison = derive { name="rbison"; version="0.4.8"; sha256="10kwlf7vrzw2rhsdwih5lcvjw0bz0n88mp74ayc9331d8j226214"; depends=[dplyr ggplot2 httr jsonlite mapproj plyr sp]; }; rbitcoinchartsapi = derive { name="rbitcoinchartsapi"; version="1.0.4"; sha256="0r272jvjh3rzch8dmn4s0a5n5k6dsir7pr4qswzfvafqjdiwjajz"; depends=[RCurl RJSONIO]; }; rbmn = derive { name="rbmn"; version="0.9-2"; sha256="1zy832y399cmfmhpyfh7vfd293fylf1ylmp8w8krkmzkmyfa80f2"; depends=[MASS]; }; rbounds = derive { name="rbounds"; version="2.1"; sha256="1h334bc37r1vbwz1b08jazsdrf6qgzpzkil9axnq5q04jf4rixs3"; depends=[Matching]; }; rbugs = derive { name="rbugs"; version="0.5-9"; sha256="1kvn7x931gjpxymrz0bv50k69s1x1x9mv34vkz54sdkmi08rgb3y"; depends=[]; }; rbundler = derive { name="rbundler"; version="0.3.7"; sha256="0wmahn59h9vqm6bq1gwnf6mvfkyhqh6xvdc5hraszn1419asy26f"; depends=[devtools]; }; -rcbalance = derive { name="rcbalance"; version="1.7"; sha256="0k95dkig6m9g04skz2s6iqrldmzkz3w0pcyvi1dq20h6rz9a4ic0"; depends=[MASS plyr]; }; +rcbalance = derive { name="rcbalance"; version="1.7.1"; sha256="0k2m26xc0qlb4vkairmlb96v5vb26sapzd99p4kkfli4rk8w6k1b"; depends=[MASS plyr]; }; rcdd = derive { name="rcdd"; version="1.1-9"; sha256="1mwg9prf7196b7r262ggdqsfq1i7czm1a0apk4j5014cxzyb6j5s"; depends=[]; }; rcdk = derive { name="rcdk"; version="3.3.2"; sha256="02rlg3w8dbmag8b4z4wayh7xn61xc9g3647kxg91r0mvfhmrxl2h"; depends=[fingerprint iterators png rcdklibs rJava]; }; rcdklibs = derive { name="rcdklibs"; version="1.5.8.4"; sha256="0mzkr23f4d639vhxfdbg44hzxapmpqkhc084ikcj93gjwvdz903k"; depends=[rJava]; }; @@ -5711,6 +5941,7 @@ rclinicaltrials = derive { name="rclinicaltrials"; version="1.4.1"; sha256="1x8m rcorpora = derive { name="rcorpora"; version="1.1.1"; sha256="14lnfn9armb6rz1wcs7hdrb4j2vzh6b8pi9lsj83l3zixkxx5izk"; depends=[jsonlite]; }; rcppbugs = derive { name="rcppbugs"; version="0.1.4.1"; sha256="0wb5mzw1sdrr7lc6izilv60k5v0wcvy8q31a863b63a9jvh16g8d"; depends=[BH Rcpp RcppArmadillo]; }; rcrossref = derive { name="rcrossref"; version="0.3.4"; sha256="1glgcclc4zqipccmdniqy4ajsh32y3azwkd7cc75i855gbk8vdmn"; depends=[bibtex dplyr httr jsonlite plyr XML]; }; +rcrypt = derive { name="rcrypt"; version="0.1.1"; sha256="002r5wr0bmqbj014iz8wacj883j6gqcxc786m6p9a7zdrjpx2pqi"; depends=[]; }; rda = derive { name="rda"; version="1.0.2-2"; sha256="1g2q7c0y138i9r7jgjrlpqznvwpqsj6f7vljqqfzh2l6kcj43vjj"; depends=[]; }; rdatamarket = derive { name="rdatamarket"; version="0.6.5"; sha256="1y4493cvhcgyg2j5hadx1fzmv2lzwan78jighi2dzyxxzv6pxccn"; depends=[RCurl RJSONIO zoo]; }; rdd = derive { name="rdd"; version="0.56"; sha256="1x61ik606mwn46x3qzgq8wk2f6d5qqr95h30bz6hfbjlpcxw3700"; depends=[AER Formula lmtest sandwich]; }; @@ -5723,16 +5954,16 @@ reGenotyper = derive { name="reGenotyper"; version="1.2.0"; sha256="13g4fhj25kdk readBrukerFlexData = derive { name="readBrukerFlexData"; version="1.8.2"; sha256="1cagv6l29h3p87h7c2bgba23v2wxrs2kg4zg1dk046m2x11mwx3c"; depends=[]; }; readGenalex = derive { name="readGenalex"; version="1.0"; sha256="1lhfw8xbwnjhslriaxziw4dskmjfawz5g31h2yl9ds2nwvwhmdwi"; depends=[pegas]; }; readMLData = derive { name="readMLData"; version="0.9-7"; sha256="0l752j1jq37j9pdcsbmcb23b5l8fkfsbisfr3yjy3q4rxsphc7k6"; depends=[XML]; }; -readMzXmlData = derive { name="readMzXmlData"; version="2.8"; sha256="0x5h3dh6fkc30m6gx6pzmrxr31s80d1qgpcakspjza53qn6fjb16"; depends=[base64enc digest XML]; }; +readMzXmlData = derive { name="readMzXmlData"; version="2.8.1"; sha256="03lnhajj75i3imy95n2npr5qpm4birbli922kphj0w3458nq8g8w"; depends=[base64enc digest XML]; }; readODS = derive { name="readODS"; version="1.4"; sha256="00xcas8y0cq3scgi9vlfkrjalphmd7bsynlzpy7izxa5w9b7x79f"; depends=[XML]; }; readbitmap = derive { name="readbitmap"; version="0.1-4"; sha256="08fqqsdb2wsx415mnac9mzl5sr5and0zx72ablnlidqfxv8xsi9d"; depends=[bmp jpeg png]; }; reader = derive { name="reader"; version="1.0.5"; sha256="1g22pnlfr2c974s6rqnyixknhgy2crqbxg2cg2s3ja1sk29v4gr0"; depends=[NCmisc]; }; readr = derive { name="readr"; version="0.1.1"; sha256="1raw3kihksqr274p0mdigfxpg8yrhx0phwiab22sdi1vp62c8ja6"; depends=[BH curl Rcpp]; }; -readstata13 = derive { name="readstata13"; version="0.7"; sha256="14il790jgn8l9c8gxgl2s11vzff5xz77jsgdgjs044r407a72wkb"; depends=[Rcpp]; }; +readstata13 = derive { name="readstata13"; version="0.7.1"; sha256="1px9hicamld2b6vb42kr7554ivx7va87fd4hbqz039vjs7b2s7lb"; depends=[Rcpp]; }; readxl = derive { name="readxl"; version="0.1.0"; sha256="0a0mjcn70a0nz1bkrdjwq495000kswxvyq1nlad9k3ayni2ixjkd"; depends=[Rcpp]; }; reams = derive { name="reams"; version="0.1"; sha256="07hqi0y59kv5lg0nl75xy8n48zw03y5m71zx58aiig94bf3yl95c"; depends=[leaps mgcv]; }; rebird = derive { name="rebird"; version="0.2"; sha256="11x8db6gq9qkv9skslda4j6zgzmkmiap78rlwnlvkjvk1gzz13bf"; depends=[dplyr httr jsonlite]; }; -rebmix = derive { name="rebmix"; version="2.7.1"; sha256="1m3mmqi4kfai0hx2khkblqairp59fgh0japg23rgib1djmdcqb4n"; depends=[]; }; +rebmix = derive { name="rebmix"; version="2.7.2"; sha256="1m71kvd7yska5iwgn0vzrhcbz8qmiwqrda201xqjxvvs8faqj66j"; depends=[]; }; rebus = derive { name="rebus"; version="0.0-5"; sha256="06rl6knnk93k537hhjx4r55hq6hssij7xc426ilki329vwfi5kyf"; depends=[]; }; recalls = derive { name="recalls"; version="0.1.0"; sha256="121r2lf32x4yq8zxx6pbnphs7ygn382ns85qxws6jnqzy52q41vh"; depends=[RCurl RJSONIO]; }; recluster = derive { name="recluster"; version="2.8"; sha256="05g8k10813zbkgja6gvgscdsjd99q124jx31whncc4awdsgk69s4"; depends=[ape cluster phangorn phytools picante vegan]; }; @@ -5743,15 +5974,16 @@ recommenderlabJester = derive { name="recommenderlabJester"; version="0.1-1"; sh reconstructr = derive { name="reconstructr"; version="1.1.0"; sha256="1kswvpmhk3zzwm4nv6pjb80ww95n9bd4q9j7bhk9kql8v5mnfg5m"; depends=[Rcpp]; }; recosystem = derive { name="recosystem"; version="0.3"; sha256="064rnnz4m85mwq3084m0ldj8sb5z6jwzqzkh22fagsq2xyqri15l"; depends=[Rcpp]; }; redcapAPI = derive { name="redcapAPI"; version="1.3"; sha256="08js2lvrdl9ig0pq1wf7cwkmvaah6xs65bgfysdhsyayx0lz5rii"; depends=[chron DBI Hmisc httr stringr]; }; -redist = derive { name="redist"; version="1.1"; sha256="0ddwvmzmqv5nm3azia1g0x0icj1jcd7s34f1kv01phky2pmz5wy4"; depends=[coda Rcpp RcppArmadillo sp spdep]; }; +redist = derive { name="redist"; version="1.2"; sha256="1169dh4v8mq1ag1crqmn9apyd0280qf2l0df6xwy7263gvmnqdmy"; depends=[coda Rcpp RcppArmadillo sp spdep]; }; ref = derive { name="ref"; version="0.99"; sha256="0f0yz08pqpg57mcm7rh4g0rbvlcvs5fbpjkfrq7fmj850z1ixvw0"; depends=[]; }; refGenome = derive { name="refGenome"; version="1.5.8"; sha256="12dnf6lbwmxb9zkzfv1s7ivc22z5fvdzf3glb83svyfcbw3fcmqf"; depends=[DBI doBy RSQLite]; }; referenceIntervals = derive { name="referenceIntervals"; version="1.1.1"; sha256="04199nxh216msaghkp66zsi96h76a7c42ldml0fm66v2vamcslg8"; depends=[boot car extremevalues outliers]; }; refset = derive { name="refset"; version="0.1.0"; sha256="0yj87sp6ghxv20hz5knmw3d7way1hsggk759wqxsbfprd38y6khd"; depends=[]; }; -refund = derive { name="refund"; version="0.1-11"; sha256="1afsxab1jivs4vj6diqh7352v98divna6az1dxsdn7lvw6cmph6y"; depends=[boot fda gamm4 glmnet lattice lme4 magic MASS Matrix matrixStats mgcv nlme RLRsim wavethresh]; }; +refund = derive { name="refund"; version="0.1-13"; sha256="0xyx0z378hwqmp3lzr0ashsikzzzid2gd8ngkgsmfb473z19k5lz"; depends=[boot fda gamm4 ggplot2 grpreg lattice lme4 magic MASS Matrix MCMCpack mgcv nlme pbs RLRsim]; }; +refund_shiny = derive { name="refund.shiny"; version="0.1"; sha256="05wj3pr936rksbwbmm6d0rccvzvyl6xww21whjfpg8r1x05amfrj"; depends=[dplyr ggplot2 gridExtra refund reshape2 shiny]; }; refund_wave = derive { name="refund.wave"; version="0.1"; sha256="1vnhg7gi5r8scwivqjwhrv72sq8asnm4whx3jk39saphdxpk5hxv"; depends=[glmnet wavethresh]; }; -regRSM = derive { name="regRSM"; version="0.4"; sha256="1rg74jqj8rw69q6my0n4alflx7mgfwng35ff72bxwjhn9ghhj347"; depends=[]; }; -regexr = derive { name="regexr"; version="1.0.2"; sha256="1mr8qmiz9bgq5v6f065z40aj9zllidsv6gg8mjc28zxmkz5zn6gp"; depends=[]; }; +regRSM = derive { name="regRSM"; version="0.5"; sha256="0nbp3yjk9r7qvwm7wla39155rmqnvpdb720iq3b0hcy1bbsxbk9s"; depends=[doParallel foreach Rmpi]; }; +regexr = derive { name="regexr"; version="1.1.0"; sha256="1gjv4wl4gjsh5rr0kz057x9j4dhikrm3zzlmxlhd1f9srjdmcdzy"; depends=[]; }; registry = derive { name="registry"; version="0.3"; sha256="0c7lscfxncwwd8zp46h2xfw9gw14dypqv6m2kx85xjhjh0xw99aq"; depends=[]; }; reglogit = derive { name="reglogit"; version="1.2-4"; sha256="0ma1wddxhmja268ddkpcvskqf4lwq61brswnm600fms8ks7r78d3"; depends=[boot Matrix mvtnorm]; }; regpro = derive { name="regpro"; version="0.1.0"; sha256="0d47ffsqx1633pmf3abi7wksyng2g71mz2z9nb2zqdak794l1n44"; depends=[denpro]; }; @@ -5770,11 +6002,11 @@ reldist = derive { name="reldist"; version="1.6-4"; sha256="0v86wws29zy67jidrvfx relevent = derive { name="relevent"; version="1.0-4"; sha256="10bf1s7jmas8ck1izqibqcaqg4z55ciwdpd9pm2697y8z0jhr2rj"; depends=[coda sna trust]; }; reliaR = derive { name="reliaR"; version="0.01"; sha256="000nafjp386nzd0n57hshmjzippiha6s6c4nfrcwl059dzmi088i"; depends=[]; }; relimp = derive { name="relimp"; version="1.0-4"; sha256="1i9j218b6lh6ag4a8x4vwhmqqclbzx46mpwd36s8hdqayzs6lmad"; depends=[]; }; -relsurv = derive { name="relsurv"; version="2.0-5"; sha256="0lwmdz1hm46qlkvfvvyc2v592lx2crs3cxjpkph0vg5w6a0k10i4"; depends=[date survival]; }; +relsurv = derive { name="relsurv"; version="2.0-6"; sha256="1wn3s4faipyxyllyy221vzf8il2q00z53jjr315rlkgd577908sf"; depends=[date survival]; }; remMap = derive { name="remMap"; version="0.2-0"; sha256="1k2niiaq2lr4inrx443clff9cqqvyiiwd45k7yqjd8ixnbaa3mrk"; depends=[]; }; remix = derive { name="remix"; version="2.1"; sha256="0s1gaf7vj08xd4m7lc9qpwvk0mpamabbxk71970mfazx6hk24dr0"; depends=[ascii Hmisc plyr survival]; }; remote = derive { name="remote"; version="1.0.0"; sha256="09840z50x5i8bsi49s3asqhcz84z16pyq9w50yay4h8x82w3hfh3"; depends=[foreach raster Rcpp]; }; -rentrez = derive { name="rentrez"; version="0.4.2"; sha256="00rf5bnp9d6jy93b1y30sf4vszai7zcp57r6n9d72krk9ha8ld9n"; depends=[httr jsonlite XML]; }; +rentrez = derive { name="rentrez"; version="1.0.0"; sha256="035qfvw96gv4m924d9byj0rgj8qfljacbg3asrvpdl4k186f87qk"; depends=[httr jsonlite XML]; }; repfdr = derive { name="repfdr"; version="1.1-3"; sha256="15f7x7vqwlpyzvzsybyz825a9dmglbrngjmajrsqlwffypgxjvi8"; depends=[]; }; repijson = derive { name="repijson"; version="0.1.0"; sha256="16iypvsmh5r9pk2k6npp17ya5dgkxihsj29pppd3zvdpm3vvd8k1"; depends=[geojsonio ggplot2 jsonlite OutbreakTools plyr sp]; }; replicatedpp2w = derive { name="replicatedpp2w"; version="0.1-1"; sha256="0q6mfrdjpx6nh4xgr5i7ka3xvnx9585xdhni020q4pm05rhimid2"; depends=[spatstat]; }; @@ -5797,49 +6029,48 @@ reshape = derive { name="reshape"; version="0.8.5"; sha256="08jm9fb02g1fp9vmiqmc reshape2 = derive { name="reshape2"; version="1.4.1"; sha256="0hl082dyk3pk07nqprpn5dvnrkqhnf6zjnjig1ijddxhlmsrzm7v"; depends=[plyr Rcpp stringr]; }; reshapeGUI = derive { name="reshapeGUI"; version="0.1.0"; sha256="0kb57isws8gw0nlr6v9lg06c8000hqw0fvhfjsjyf8w6zwbbq3zs"; depends=[gWidgets gWidgetsRGtk2 plyr reshape2]; }; restimizeapi = derive { name="restimizeapi"; version="1.0.0"; sha256="1ss6fng5pmqg6cafc256g9ddz8f660c68ysxfan6mn4gdaigz7lb"; depends=[RCurl RJSONIO]; }; -restlos = derive { name="restlos"; version="0.1-3"; sha256="03bsakp9kd8i468wz7xhdjqb6ck6p9wci3gk2b2bykv73c0g6n95"; depends=[geometry igraph rgl som]; }; -restorepoint = derive { name="restorepoint"; version="0.1.5"; sha256="0xmpxprirnd1yavwk3vkc0cp715d187mn0amppya7kd47iw10wsy"; depends=[]; }; +restlos = derive { name="restlos"; version="0.2-2"; sha256="083w1ldax8bnf3w4119damma2nz75c3ki187b0275i1mqxqrixp7"; depends=[geometry igraph limSolve rgl som]; }; +restorepoint = derive { name="restorepoint"; version="0.1.7"; sha256="101lh84jsz84q0ch0j5adsjgza4ggv9xvwbq0d5wik7z5wa39pa6"; depends=[]; }; retimes = derive { name="retimes"; version="0.1-2"; sha256="019sllyfahlqnqry2gqw4w5cy4cavrqnwpwrbb25cgjpdb19raja"; depends=[]; }; retistruct = derive { name="retistruct"; version="0.5.10"; sha256="1wg2a906y09hcqba42hh9r2x59w35dms2aa5mw44avigc1nwm0s2"; depends=[foreign geometry png R_matlab rgl RImageJROI RTriangle sp ttutils]; }; retrosheet = derive { name="retrosheet"; version="1.0.2"; sha256="079rfc55sy315i7zhv1a8r6drgpiglbf3b4gwyria2mfbn94a5qb"; depends=[data_table RCurl stringi XML]; }; -reutils = derive { name="reutils"; version="0.1.2"; sha256="0f2c6zxk6x2plq649b1ml6b112j6y8ys074pn30yw35ncg3h86fa"; depends=[assertthat RCurl XML]; }; +reutils = derive { name="reutils"; version="0.2.1"; sha256="14n6f8l149jlwqgvzygyy29igz2apw5ivcimrvdbkcjcicknrr80"; depends=[assertthat jsonlite RCurl XML]; }; reval = derive { name="reval"; version="2.0.0"; sha256="1yxkyc6wdp5h3cp8i42a9cf0b1cwr4nmpd7svlp7bpfxlcnqqa0d"; depends=[doParallel foreach]; }; revealedPrefs = derive { name="revealedPrefs"; version="0.2"; sha256="1f871y4wkjznzgwxfbnmrfiafq43cyf0i5hjy68ybxc7bbvfryxc"; depends=[Rcpp RcppArmadillo]; }; reweight = derive { name="reweight"; version="1.2.1"; sha256="0fv7q1zb3f4vplg3b5ykb1ydwbzmiajgd1ihrxl732ll8rkkfa4v"; depends=[]; }; rex = derive { name="rex"; version="1.0.1"; sha256="1k1s5rx3lpyh6apakaf4mw94y72zkxf14c2kj0d9njhf5j6g1sdj"; depends=[lazyeval magrittr]; }; rexpokit = derive { name="rexpokit"; version="0.24.1"; sha256="143zi6qb0l8vbx87jf58v1zfxqmvv6x4im1knd6q4dpp9gffqs22"; depends=[Rcpp SparseM]; }; rfPermute = derive { name="rfPermute"; version="1.9.2"; sha256="1rn61vscxgb0lq86id5sy56sjnfnpapzrpz363cl5x13j7028sjm"; depends=[ggplot2 gridExtra randomForest]; }; -rfUtilities = derive { name="rfUtilities"; version="1.0-1"; sha256="0y0jn4c5dpr9drjyjg2vsgsb37s0l284hvh35zm53hs8f881ycx3"; depends=[randomForest]; }; +rfUtilities = derive { name="rfUtilities"; version="1.0-2"; sha256="1hhiyrvz25pf1fxzcmaf8m5c3v57hxv8qvmrk2a87wdsrklh073c"; depends=[randomForest]; }; rfigshare = derive { name="rfigshare"; version="0.3.7"; sha256="1qgzn0mpjy4czy0pnbi395fxxx84arkg8r7rk8aidmd34584gjiq"; depends=[ggplot2 httpuv httr plyr RJSONIO XML yaml]; }; -rfishbase = derive { name="rfishbase"; version="0.2-2"; sha256="09pa5zpw9rclf5pqj1wjjhdcblca9sm9xcs9ka3xfa7azj7n9ljd"; depends=[RCurl XML]; }; +rfishbase = derive { name="rfishbase"; version="2.0.3"; sha256="027hi9ala3cgbriv724kkmy7imkjwakhm0pg70rshkqhy1dm63jw"; depends=[dplyr httr lazyeval tidyr]; }; rfisheries = derive { name="rfisheries"; version="0.1"; sha256="1g0h3icj7cikfkh76yff84hil23rfshlnnqmgvnfbhykyr2zmk61"; depends=[assertthat data_table ggplot2 httr rjson]; }; rfoaas = derive { name="rfoaas"; version="0.1.6"; sha256="0wfpf6k0xsjzpabyziqyllksj1p9n6ix1lnk02mkz0bzl97hnilq"; depends=[httr]; }; rfordummies = derive { name="rfordummies"; version="0.1.1"; sha256="0k725wgba9132cfbm0ppgy476iyh9gcn6bdh9gjqab5sj3jb0iva"; depends=[]; }; rforensicbatwing = derive { name="rforensicbatwing"; version="1.3"; sha256="0ff4v7px4wm5rd4f4z8s4arh48hgayqjfpnni2997c92wlsq3d12"; depends=[Rcpp]; }; rgabriel = derive { name="rgabriel"; version="0.7"; sha256="1c6awfppm1gqg7rm3551k6wyhqvjpyidqikjisg2p2kkhmyfkyzx"; depends=[]; }; rgam = derive { name="rgam"; version="0.6.3"; sha256="0mbyyhhyr7ijv2sq9n7g0vaxivngwf4nbb5398xpsh7fxvgw5zdw"; depends=[Rcpp RcppArmadillo]; }; -rgauges = derive { name="rgauges"; version="0.2.0"; sha256="0p42hh32wcjcchsalpsan52kvz6nd1gw28xnydqgfzkzcqkl22dd"; depends=[data_table ggplot2 gridExtra httr lubridate plyr reshape2 scales]; }; rgbif = derive { name="rgbif"; version="0.8.8"; sha256="1flabwa0fjwa38idyddbag9a7cyifpdc66nap25pw061a886jndd"; depends=[data_table ggplot2 httr jsonlite magrittr V8 whisker XML]; }; rgcvpack = derive { name="rgcvpack"; version="0.1-4"; sha256="1vlvw9slrra18qaizqk2xglzky0i6z3bsan85x908wrg8drss4h5"; depends=[]; }; -rgdal = derive { name="rgdal"; version="1.0-4"; sha256="0c0fwq11ql1spw3791x7yd8fcmi0rlsxvk2bhf0951kvc99vbyv9"; depends=[sp]; }; +rgdal = derive { name="rgdal"; version="1.0-7"; sha256="0kp3lypxzdbjlp0v8zyn5xif1bijxjq5b64nirxgc1p5m5z2klfr"; depends=[sp]; }; rgenoud = derive { name="rgenoud"; version="5.7-12.4"; sha256="19y0297fsxggjrdjv8n3a5klbqf8y3mq4mmdz6xx28cz3k65dk4n"; depends=[]; }; rgeolocate = derive { name="rgeolocate"; version="0.4.1"; sha256="1xrgk8nzd0j2zhq6m4jlck5vg151bynwjswkqav38iljh9087wv2"; depends=[httr Rcpp]; }; -rgeos = derive { name="rgeos"; version="0.3-11"; sha256="1x5fna4n5ck0wfdrplj5q5cvv289fzsmlr95q86na78lvwn14fzl"; depends=[sp]; }; +rgeos = derive { name="rgeos"; version="0.3-13"; sha256="1j9lsf6l15ncksr0wv2zrycnb1g2bknbys3jgb3sfb0b2iayi488"; depends=[sp]; }; rgexf = derive { name="rgexf"; version="0.15.3"; sha256="0iw1vk32ad623aasf6f8hl0qkj59f1dsc2riwqc775zvs5w7k2if"; depends=[igraph Rook XML]; }; rggobi = derive { name="rggobi"; version="2.1.20"; sha256="1a7l68h3m9cq14k7y96ijgh0iz3d6j4j2anxg50pykz20lnykr9g"; depends=[RGtk2]; }; -rgl = derive { name="rgl"; version="0.95.1247"; sha256="1zmb09lljng1dmwd23w5ld8z9wr0xd0s365vz54il0ndwrqfhsi1"; depends=[]; }; +rgl = derive { name="rgl"; version="0.95.1337"; sha256="15l3g113kgaf4324y5n5x4fbkwlimmz9qrc0qkc629q2jjp0njkv"; depends=[]; }; rglobi = derive { name="rglobi"; version="0.2.8"; sha256="1033cmwairf4nm9r6nvi1ddgq0j9mzchlzvj1hph0vlcbb53ybqh"; depends=[RCurl rjson]; }; rgp = derive { name="rgp"; version="0.4-1"; sha256="1p5qa46v0sli7ccyp39iysn04yvq80dy2w1hk4c80pfwrxc6n03g"; depends=[emoa]; }; rgpui = derive { name="rgpui"; version="0.1-2"; sha256="0sh5wj4f2wj6g3r7xaq95q89n0qjavchi5kfi6sj1j34ykybbs3g"; depends=[emoa rgp shiny]; }; rgr = derive { name="rgr"; version="1.1.11"; sha256="01hlj3nqzfsffr4k7d3iyp4mfqs1sy94d0scy64wh9kkplrzkh4i"; depends=[fastICA MASS]; }; -rgrass7 = derive { name="rgrass7"; version="0.1-0"; sha256="19fwf3gaq25x3imj9kc1112cf9dhafp0d1gjly2xh2gz1kam5wl6"; depends=[sp XML]; }; -rhandsontable = derive { name="rhandsontable"; version="0.1"; sha256="0nssb7gqx3rsc2mbic2mlzldq5vpmp97qv9c62d7pkbxxwxlm1f0"; depends=[htmlwidgets jsonlite magrittr]; }; +rgrass7 = derive { name="rgrass7"; version="0.1-2"; sha256="1prs239d5d7mffqf9y3apllb6kxl3bz968z0l4kkvl2nk82xqq98"; depends=[sp XML]; }; +rhandsontable = derive { name="rhandsontable"; version="0.2.1"; sha256="00wyh9i20a9f5dbibwvgip6d9m6i4kr0yxrwp5d5qgh6bdcqgpj4"; depends=[htmlwidgets jsonlite magrittr]; }; rhosp = derive { name="rhosp"; version="1.07"; sha256="09wq96micv9wpr3sx8ir7frkanpy3zi3mwn6rbixw2kxvn5wkkfn"; depends=[]; }; ri = derive { name="ri"; version="0.9"; sha256="00y01n9cx95bjhdpnh7vi0xd5p6al3sxbjszbyxafn7m9mygmnhv"; depends=[]; }; riceware = derive { name="riceware"; version="0.4"; sha256="0pky0bwf10qcdgg9fgysafr35xbmnr9q0jbh56fawj99nbyj3m70"; depends=[random]; }; rich = derive { name="rich"; version="0.3"; sha256="122xb729xlm8gyb7b3glw4sdvrh98wh89528kcbibpx83bp3frc0"; depends=[boot permute vegan]; }; ridge = derive { name="ridge"; version="2.1-3"; sha256="1i5klabnv328kgy7p11nwdid2x7hzl1j80yqqshbraladszyfpwk"; depends=[]; }; -ridigbio = derive { name="ridigbio"; version="0.3"; sha256="0f2jqmm2gpq4inipmmzbhgv1a417czrycqsha5q3h16rqz6jzcfq"; depends=[httr jsonlite plyr]; }; +ridigbio = derive { name="ridigbio"; version="0.3.1"; sha256="1ayga1xlq12a2js7zmb5xqg2hcjslm76j84ynhawwpkx26ilmb0g"; depends=[httr jsonlite plyr]; }; rinat = derive { name="rinat"; version="0.1.4"; sha256="1m5k1wcinm6is3mf86314scgy3xfifz7ly7il5zgqyg9jkkpywbz"; depends=[ggplot2 httr jsonlite maps plyr]; }; rindex = derive { name="rindex"; version="0.12"; sha256="1k9zihvrp955c4lh70zjlsssviy2app8w6mv5ln4nawackbz0six"; depends=[regtest]; }; rio = derive { name="rio"; version="0.2"; sha256="0v64zkxcs2bajdh9hqlhacc6msy7l3h31cvcxpj6in5hb3m1wfv3"; depends=[curl data_table foreign haven jsonlite openxlsx readODS readxl XML]; }; @@ -5864,12 +6095,12 @@ rkafkajars = derive { name="rkafkajars"; version="1.0"; sha256="0ss9gjjq92hba6nk rknn = derive { name="rknn"; version="1.2-1"; sha256="1x9r01314q0wgqwqzd7d13ycjzb4jzghzd3whgjvm2rsmnabai95"; depends=[gmp]; }; rkt = derive { name="rkt"; version="1.4"; sha256="01c8fwnml1n0sw5lw9p2nz15i1zhxirr0kh39qvjmdiw97c1v1yq"; depends=[]; }; rkvo = derive { name="rkvo"; version="0.1"; sha256="0ci8jqf9nc8hb063nckxdnp0nlyr4ghby356lxm00anw44jlmw8v"; depends=[Rcpp]; }; -rlecuyer = derive { name="rlecuyer"; version="0.3-3"; sha256="1n0vny3k5s5152y0ggz9vfn4bqay9ncbdzkw9g4703pszrbwq7xh"; depends=[]; }; -rlist = derive { name="rlist"; version="0.4.2.3"; sha256="1p35l7zslhid0913hga7cw240ra43skcgwwdp5fwhclhd89ay9rj"; depends=[data_table jsonlite XML yaml]; }; +rleafmap = derive { name="rleafmap"; version="0.2"; sha256="1i2qczipg7lr6fl35lcl896r54jia7libxx83darrfzc1hd9sdcq"; depends=[knitr raster sp]; }; +rlecuyer = derive { name="rlecuyer"; version="0.3-4"; sha256="0d5mcdzn6f5nhwzs165a24z36d0b8gd0cyfyzffvr6p96h8qydy7"; depends=[]; }; +rlist = derive { name="rlist"; version="0.4.5.1"; sha256="015iiy989r6www7la2flnqw1967j1m4rip5sn33v1zp1immh40m2"; depends=[data_table jsonlite XML yaml]; }; rlm = derive { name="rlm"; version="1.1"; sha256="147hn780hjbp8ly3mc5q05g36b080ndq0z0r0vq75c2qfkhybvdc"; depends=[]; }; -rlme = derive { name="rlme"; version="0.4"; sha256="02683sklihj3726a90jryybf855rvbz9v3dm9z9yhb32q9bfmy34"; depends=[magic MASS mgcv nlme quantreg Rcpp robustbase stringr]; }; rmaf = derive { name="rmaf"; version="3.0.1"; sha256="0w247mamwgibr5576p5c2lzaiz2lv2c25n7gw9q99s7rc4bps7j7"; depends=[]; }; -rmarkdown = derive { name="rmarkdown"; version="0.7"; sha256="19vp2kipzw073llgvnqwdaarqf1ny33803gp4rf3lhyyp7y508cg"; depends=[caTools htmltools knitr yaml]; }; +rmarkdown = derive { name="rmarkdown"; version="0.8"; sha256="0l1vb18jwjg7hp1z831bg5y0wnd0nl26gs0a459yxkjbsxnw68bj"; depends=[caTools htmltools knitr yaml]; }; rmatio = derive { name="rmatio"; version="0.11.0"; sha256="0cmlh16nf3r94gpczq0j46g4dgjy9q1c647rqd9i14hvfrpxzcfa"; depends=[lattice Matrix]; }; rmeta = derive { name="rmeta"; version="2.16"; sha256="1s3n185kk0ddv8v6c7mbc7cpj6yg532r7is6pjf9vda7317rxywy"; depends=[]; }; rmetasim = derive { name="rmetasim"; version="2.0.4"; sha256="1a3bhiybzdvgqnnyh3d31d6vdsp4mi33sv8ks9b9xd9r369npk86"; depends=[ade4 ape gtools]; }; @@ -5878,7 +6109,7 @@ rminer = derive { name="rminer"; version="1.4.1"; sha256="1rbs5k3jxjbxr3pdlg0359 rmngb = derive { name="rmngb"; version="0.6-1"; sha256="1wyq8jvzqpy1s6w0j77ngh5x2q7mpj0ib01m8mla20w6yr6xbqjk"; depends=[Hmisc]; }; rmongodb = derive { name="rmongodb"; version="1.8.0"; sha256="035a76ak6wi21hdvgzzbggz0qnb53rrr2wfx97ngc8ijwhw8hjh7"; depends=[jsonlite plyr]; }; rmp = derive { name="rmp"; version="1.0"; sha256="1g0785fwjbwbj82sir3n7sg3idsjzdhrpxc7z88339cv9g4rl7ry"; depends=[]; }; -rms = derive { name="rms"; version="4.3-1"; sha256="07198lzk3yzl9vnqcfxqgp5kpb50s1ydg33m883rcr3a5pd9m094"; depends=[ggplot2 Hmisc lattice multcomp nlme polspline quantreg rpart SparseM survival]; }; +rms = derive { name="rms"; version="4.4-0"; sha256="1czibh0py82nwq7i6h2slgry3zz4x368wgcxydjb0mf81yxyg936"; depends=[ggplot2 Hmisc lattice multcomp nlme polspline quantreg rpart SparseM survival]; }; rms_gof = derive { name="rms.gof"; version="1.0"; sha256="1n0h3nrp11f2x70mfjxpk2f3g4vwjaf4476pjjwy49smxxlxwz82"; depends=[]; }; rnaseqWrapper = derive { name="rnaseqWrapper"; version="1.0-1"; sha256="1fa3hmwrpccf09dlpginl31lcxpj5ypxspa0mlraynlfl5jrivch"; depends=[ecodist gplots gtools]; }; rnbn = derive { name="rnbn"; version="1.0.3"; sha256="05amrx12b7p4pca1wbysn1n2rxbg5r54mpmga4i3xlpijx9baj80"; depends=[httr]; }; @@ -5902,14 +6133,15 @@ robustX = derive { name="robustX"; version="1.1-4"; sha256="1s2aav2jr22dgrl7xzk0 robustbase = derive { name="robustbase"; version="0.92-5"; sha256="0wsdgqbkr0amid71q52cij9wnyss2sh1fm75g8cp4d6dndh327rl"; depends=[DEoptimR]; }; robustfa = derive { name="robustfa"; version="1.0-5"; sha256="04nk5ipml54snsmiqf5sbhx490i46gnhs7yibf4wscrsj1bh2mqy"; depends=[rrcov]; }; robustgam = derive { name="robustgam"; version="0.1.7"; sha256="0s1z7jylj757g91najbyi1aiqnssd207jfm9yhias746540qp3kw"; depends=[mgcv Rcpp RcppArmadillo robustbase]; }; -robustlmm = derive { name="robustlmm"; version="1.7-4"; sha256="0c9syqz1hbwwc9kfnsc1f321zy76q9c0rxgb9j1ac33sp5w5g88c"; depends=[ggplot2 lattice lme4 Matrix nlme robustbase xtable]; }; +robustlmm = derive { name="robustlmm"; version="1.7-6"; sha256="0b2qlwkc5in85ll2x7pbk8915x0dn473i5xf6z3g2swsbg0ykvaz"; depends=[ggplot2 lattice lme4 Matrix nlme robustbase xtable]; }; robustloggamma = derive { name="robustloggamma"; version="0.4-31"; sha256="19ycdvpzns46gjnkddwznnszs0941blpss7l0cqligv91cz7bkjc"; depends=[robustbase]; }; -robustreg = derive { name="robustreg"; version="0.1-8"; sha256="0ankpqdnjl5w3w73h6gp78klkjk43xjzhv8wv3vffdsr2fbpl8js"; depends=[Matrix Rcpp RcppArmadillo]; }; +robustreg = derive { name="robustreg"; version="0.1-9"; sha256="1jjydpiz7wwyvivq7vbyrlyf6y9pd036p2xls0kkq7w1d3vpzjwk"; depends=[Matrix Rcpp RcppArmadillo]; }; robustvarComp = derive { name="robustvarComp"; version="0.1-2"; sha256="187mcpih509hx15wjjr7z2h6h76mz2v0d8xgsxjd8wz7l3dnlp2f"; depends=[GSE numDeriv plyr robust robustbase]; }; rocc = derive { name="rocc"; version="1.2"; sha256="00yxbbphhwkg4sj2h7pd9vw86yavl711nk8yylwmjd3qv39qjml0"; depends=[ROCR]; }; rockchalk = derive { name="rockchalk"; version="1.8.92"; sha256="1mi1w8323m4q0s17cnafnlswgnlxqb5c9nq3rv8fq77k7klmq5rz"; depends=[car lme4 MASS tables]; }; rococo = derive { name="rococo"; version="1.1.2"; sha256="08204y3g3xd2srpcpnbkq1laqfr3wrhy73whlxf83gffw8j0iyv8"; depends=[Rcpp]; }; rodd = derive { name="rodd"; version="0.1-1"; sha256="0x7w7v04nqb1gl4h32a674gwc68h6p9pff2piisyd74cgx90sm1b"; depends=[Matrix matrixcalc numDeriv quadprog rootSolve]; }; +rollply = derive { name="rollply"; version="0.4.2"; sha256="122c41rqc88ikxws251ddppah18ficir7p00x7wiynqplmhps3nl"; depends=[plyr Rcpp scales stringr]; }; rootSolve = derive { name="rootSolve"; version="1.6.5.1"; sha256="02ydj4ydgljs80nrrrxb4dhfa7m12rw65xy79d7g71w97326w8p2"; depends=[]; }; ropensecretsapi = derive { name="ropensecretsapi"; version="1.0.1"; sha256="0d4yl0h4am3blskdnzk119hk374c3vx0cg99r20w07yh8jfafrw7"; depends=[RCurl RJSONIO]; }; ror = derive { name="ror"; version="1.2"; sha256="0n8mk35rm3rp0c7a3i961kij21a177znh9hkq4snqqlw9vf50hdg"; depends=[igraph rJava ROI ROI_plugin_glpk]; }; @@ -5928,15 +6160,16 @@ rpart_utils = derive { name="rpart.utils"; version="0.5"; sha256="00ahvmly6cdf7q rpartScore = derive { name="rpartScore"; version="1.0-1"; sha256="15zamlzbf6avir8zfw88531zg5c0a6sc5r9v5cy9h08ypf34xf4y"; depends=[rpart]; }; rpartitions = derive { name="rpartitions"; version="0.1"; sha256="1gklsi4pqhk16xp9s49n1lr9ldm1vx61pvphjqsqkzrlxwcpx3j8"; depends=[hash]; }; rpca = derive { name="rpca"; version="0.2.3"; sha256="135q3g8jmn9rwamrc9ss45cnbfyw8kxcbrf0kinw8asz70fihj9z"; depends=[]; }; -rpf = derive { name="rpf"; version="0.45"; sha256="1d22wjhv14rl16kljn42j4hba30x28zd5svddrpxp1kraxjq5mn7"; depends=[mvtnorm RcppEigen]; }; +rpdo = derive { name="rpdo"; version="0.0.1"; sha256="1j84pj35mw30fkmqqln76yf6gpjz382hlyp2lwf1hj455il06910"; depends=[]; }; +rpf = derive { name="rpf"; version="0.48"; sha256="1b7fx14haq4m237bai1m77hrpb1clkvd7q5dxc8a6wvjnnc3z48w"; depends=[mvtnorm RcppEigen]; }; rpg = derive { name="rpg"; version="1.4"; sha256="0sisn5l1qxlqg6jq4lzr7w3axkaw5jlpz8vl9gp2hs0spxsjhcyn"; depends=[RApiSerialize Rcpp uuid]; }; rphast = derive { name="rphast"; version="1.6"; sha256="0ni8969bj3pv0wl8l0v352pqw2d5mlshsdw1rb6wlxk7qzfi5cl2"; depends=[]; }; rplexos = derive { name="rplexos"; version="1.1.4"; sha256="1q9vlxhglmrwxh9g4wq98nc321kq7jhgkykp9hwl3bd26a1jcfjp"; depends=[data_table DBI doParallel dplyr foreach lubridate Rcpp RSQLite stringi tidyr]; }; -rplos = derive { name="rplos"; version="0.5.2"; sha256="0h8i6payk5yg0sxn07zw10jrbkf9pac6ljmkj6jsy681wirp20gg"; depends=[dplyr ggplot2 httr jsonlite lubridate plyr reshape2 solr whisker]; }; +rplos = derive { name="rplos"; version="0.5.4"; sha256="05849f29km726qr1ksczqpa3acr76bn5v6kxk06zakj7s5k74drh"; depends=[dplyr ggplot2 httr jsonlite lubridate plyr reshape2 solr whisker]; }; rplotengine = derive { name="rplotengine"; version="1.0-5"; sha256="1wwpfnr5vi8z26alm8y5gply0y4iniagimldzy2z696djzz8p8p8"; depends=[xtable]; }; rportfolios = derive { name="rportfolios"; version="1.0"; sha256="1zcv5ddmk15l0p03nlffimlhhpcc7l1c05xl2d1xlfk58rkvqns6"; depends=[]; }; rprime = derive { name="rprime"; version="0.1.0"; sha256="1v6n1qi0i7x8xgizbyvp1mnwc316lsan4rvam44fgjj45fcd79gd"; depends=[assertthat plyr stringi stringr]; }; -rprintf = derive { name="rprintf"; version="0.1-2"; sha256="1jsn6i3ikcdbrg8g89hmb1ky3a84fykx5gpnbswplhidh2qhb9jz"; depends=[stringr]; }; +rprintf = derive { name="rprintf"; version="0.2.1"; sha256="0rwqpln0igxb4m6d6jyp7h3shfb8sbp0kj7cgkffjp88hn9qm4h3"; depends=[stringi]; }; rpsychi = derive { name="rpsychi"; version="0.8"; sha256="1h40kbqvvwwjkz5hrclj6j22zhav3yyfbbhqahs1whwjkksnam4w"; depends=[gtools]; }; rpubchem = derive { name="rpubchem"; version="1.5.0.2"; sha256="0lvi7m8jb2izsfia3c0qigsd1k1x9r02gymlwfg29pb8k10lwcjf"; depends=[car RCurl RJSONIO XML]; }; rpud = derive { name="rpud"; version="0.0.2"; sha256="03xddc6kh39wlcv8dvpnv4h0f5qx5cv327xip26zk7gg7pgrn05x"; depends=[]; }; @@ -5950,7 +6183,6 @@ rrcovNA = derive { name="rrcovNA"; version="0.4-7"; sha256="1b3ffcs1szwswsayz8q3 rredis = derive { name="rredis"; version="1.7.0"; sha256="0wzamwpmx20did8xj8x9dllri2ps83viyqjic18ari7i4h1bpixv"; depends=[]; }; rriskDistributions = derive { name="rriskDistributions"; version="2.1"; sha256="1sc0bj5sivclbq0grif99vclnlhg1k9dz4xdvng6vv392xkwbmfd"; depends=[eha mc2d msm tkrplot]; }; rrlda = derive { name="rrlda"; version="1.1"; sha256="06n9jah190cz25n93jlb5zb0xrx91bjvxgswwdx9hdf0fmwrpkvz"; depends=[glasso matrixcalc mvoutlier pcaPP]; }; -rrules = derive { name="rrules"; version="0.1-0"; sha256="0f9msp289akzricjrm8dvfbh2dihfbszr7ms4fld1cr30zssajin"; depends=[]; }; rsae = derive { name="rsae"; version="0.1-5"; sha256="1f3ry3jwa6vg2vq2npx2pzzvfwadz8m48hjrqjk860nfjrymwgx5"; depends=[]; }; rsatscan = derive { name="rsatscan"; version="0.3.9200"; sha256="00vgby24jknq8nl7rnqcwg7gawcxhwq8b7m98vjx2hkqx39n4g21"; depends=[foreign]; }; rscala = derive { name="rscala"; version="1.0.6"; sha256="065ll2xza09hi05w4hq35jl6y1nvwrv93ld983nxaji81z9pfgzx"; depends=[]; }; @@ -5960,17 +6192,18 @@ rsdmx = derive { name="rsdmx"; version="0.4-7"; sha256="1k4imwcw720hwqshmnl6kx9p rseedcalc = derive { name="rseedcalc"; version="1.3"; sha256="18zmpjv6g8f7pmvqlp6khxyys9kdnq5x4zxwb6gwybsh4jxrymkp"; depends=[]; }; rsem = derive { name="rsem"; version="0.4.6"; sha256="16nsbp4s20396h2in0zymbpmsn24gqlbik0vgv86zhy1yg1rz9ia"; depends=[lavaan MASS]; }; rsgcc = derive { name="rsgcc"; version="1.0.6"; sha256="12f8xsg6abmhdgkrrc8sfzmv4i1pycq1g0jfad664d17yciw7rhh"; depends=[biwt cairoDevice fBasics gplots gWidgets gWidgetsRGtk2 minerva parmigene snowfall stringr]; }; +rsggm = derive { name="rsggm"; version="0.3"; sha256="17yzvd5vs2avp0nzk7x9bi4d7p6n9nv7675qpgfpwkfqp25lax73"; depends=[glasso MASS Matrix QUIC]; }; rsig = derive { name="rsig"; version="1.0"; sha256="129k78i8kc30bzlphdb68vv3sw2k6xyiwrhw08vhzz6mf3jxlqsh"; depends=[BBmisc glmnet Matrix superpc survcomp survival]; }; -rsm = derive { name="rsm"; version="2.7-2"; sha256="0pn018n36h1xhhlsimggbfgfgl9nh5a49x8amkqy3drrnamjl577"; depends=[]; }; +rsm = derive { name="rsm"; version="2.7-3"; sha256="1frj0v986chlv6qsx0k93ascscd43mk9dam9f5vqsxcfzwnbi3yf"; depends=[]; }; rsml = derive { name="rsml"; version="1.2"; sha256="1w9bqs32sn5ry5qjgnqnns56ylr59cq5kczjsssw3yvc8a8lr39x"; depends=[rgl XML]; }; rsnps = derive { name="rsnps"; version="0.1.6"; sha256="1pqdmg1cwpm0cvr5ma7gzni88iq5kqv1w40v8iil3xvcmns8msjk"; depends=[httr jsonlite plyr RCurl stringr XML]; }; rspa = derive { name="rspa"; version="0.1.8"; sha256="1zgk1v1yk9c51wbsl3skqfrznqj84146dzfwg7q3jy2hpdgf1cg6"; depends=[editrules]; }; rspear = derive { name="rspear"; version="0.1-2"; sha256="1rjg84plnvlcp3p2929f1afl43lb92d3bfsvlhsaw92z7iva1vad"; depends=[plyr]; }; rstackdeque = derive { name="rstackdeque"; version="1.1.1"; sha256="0i1qqbfj0yrqbkad8bqc1qlxmyxpn7zycbnq83cdmfbilcmi87ql"; depends=[]; }; -rstan = derive { name="rstan"; version="2.7.0-1"; sha256="0b26wp91rkzkpp50jv5n87nqxi8hvhkzy8zphsr10il98k3l52dq"; depends=[BH inline Rcpp RcppEigen StanHeaders]; }; +rstan = derive { name="rstan"; version="2.8.0"; sha256="0rrrw3icwrymj2ddg6jbx4fl6ghp8jqjb5kgjlbvc0b7y0ahqfga"; depends=[BH ggplot2 gridExtra inline Rcpp RcppEigen StanHeaders]; }; rstiefel = derive { name="rstiefel"; version="0.10"; sha256="0b2sdgpb3hzal34gd9ldd7aihlhl3wndg4i4b3wy6rrrjkficrl1"; depends=[]; }; rstpm2 = derive { name="rstpm2"; version="1.2.2"; sha256="0mmawy16b8yvzm8d5rx3dbchs7ybr2s5v6clqg88jkrff7141i7m"; depends=[bbmle mgcv numDeriv Rcpp RcppArmadillo survival]; }; -rstream = derive { name="rstream"; version="1.3.3"; sha256="1fw9bm4ilrgbbgpwy4v483g1w1ag2yzh2p820vni14y649hi5r3f"; depends=[]; }; +rstream = derive { name="rstream"; version="1.3.4"; sha256="1sgwk9mh3v3vv8gm537hfng6p2sqafd9ykraiw00s0z60fa80jnx"; depends=[]; }; rstudioapi = derive { name="rstudioapi"; version="0.3.1"; sha256="0q7671d924nzqsqhs8d9p7l907bcam56wjwm7vvz44xgj0saj8bs"; depends=[]; }; rsubgroup = derive { name="rsubgroup"; version="0.6"; sha256="1hz8rnbsl97ch6sjwxdicn2sjyn6cajg2zwmfp03idzpb3ixlk7l"; depends=[foreign rJava]; }; rsunlight = derive { name="rsunlight"; version="0.4.0"; sha256="0hmpmf0ma0bycb65bq18q4y78187y9rq0vsj2d8hdmkksvyqjviy"; depends=[httr jsonlite plyr stringr]; }; @@ -5981,26 +6214,28 @@ rtematres = derive { name="rtematres"; version="0.2"; sha256="1d0vrprvnlk4hl2dbc rtf = derive { name="rtf"; version="0.4-11"; sha256="04z0s5l9qjlbqahmqdaqv7mkqavsz4yz25swahh99xfwp9plknfl"; depends=[R_methodsS3 R_oo]; }; rtfbs = derive { name="rtfbs"; version="0.3.4"; sha256="1z5rhxgi44xdv07g3l18ricxdmp1p59jl8fxawrh5jr83qpcxsks"; depends=[rphast]; }; rtiff = derive { name="rtiff"; version="1.4.5"; sha256="0wpjp8qwfiv1yyirf2zj0696zb7m7fpzn953ii8vbmgzhakgr8kw"; depends=[pixmap]; }; -rtkpp = derive { name="rtkpp"; version="0.8.6"; sha256="0alg3002q8mcqd55prmsa6hfwg0qfrv30aq5p85v094l8cl7qd8l"; depends=[Rcpp]; }; +rtkpp = derive { name="rtkpp"; version="0.9.2"; sha256="09x98mgbz3a9vn59qarzsfml5qaw9mz2hg36sn8z1pgpjq7a75sp"; depends=[Rcpp]; }; rtop = derive { name="rtop"; version="0.5-5"; sha256="05yygg85f981x2amf9y8nr4ymya3pkwlig8i1rf9b49jx11h5w8j"; depends=[gstat sp]; }; rts = derive { name="rts"; version="1.0-10"; sha256="0fvs82n8lxbm4n8w22ahx7j38xhaafwvr3sqr3lrfni2cs346pzs"; depends=[raster sp xts zoo]; }; rtype = derive { name="rtype"; version="0.1-1"; sha256="0wjf359w7gb1nrhbxknzg7qdys0hdn6alv07rd9wm6zynnn1vwxy"; depends=[]; }; rucm = derive { name="rucm"; version="0.4"; sha256="1s3q6wfp9nb50rqsaq6h2wb48qvxncmlf8l4gm18pr25wkangfxq"; depends=[KFAS]; }; -rugarch = derive { name="rugarch"; version="1.3-4"; sha256="1za92hqfaws8azf2zml1q8mlbirrdw3rb4rvwg6sclfx7z7gsqkh"; depends=[chron expm ks nloptr numDeriv Rcpp RcppArmadillo Rsolnp SkewHyperbolic spd xts zoo]; }; +rugarch = derive { name="rugarch"; version="1.3-6"; sha256="0ysycv0qldp4dnj8yh22v860d40ycp2c0la87zblgl86r7g4f03b"; depends=[chron expm ks nloptr numDeriv Rcpp RcppArmadillo Rsolnp SkewHyperbolic spd xts zoo]; }; runittotestthat = derive { name="runittotestthat"; version="0.0-2"; sha256="15zdcvqkr5ivq6wk6dw8k6diginc6z7mdc18pswim90d99j2g9sm"; depends=[assertive RUnit]; }; -runjags = derive { name="runjags"; version="2.0.1-4"; sha256="1any5f7paf8a8yyvk594iixvh1l1dc87pil292sd1pq1lh2510lw"; depends=[coda lattice]; }; +runjags = derive { name="runjags"; version="2.0.2-8"; sha256="00jqaz68mr3jmi7ifklwyjsh7jaxbk6pc1fxprgz29nbc1r7hi0r"; depends=[coda lattice]; }; ruv = derive { name="ruv"; version="0.9.6"; sha256="12zi775nx6k1j9sz691x6r9r0arfnhwddf5nxbr1xk25dj9qa210"; depends=[]; }; rv = derive { name="rv"; version="2.3.1"; sha256="0bjqwk7djl625fws3jlzr1naanwmrfb37hzkyy5szai52nqr2xij"; depends=[]; }; rvHPDT = derive { name="rvHPDT"; version="3.0"; sha256="05nrfnyvb8ar7k2bmn227rn20w1yzkp1smwi4sysc00hyjrlyg8s"; depends=[gtools]; }; rvTDT = derive { name="rvTDT"; version="1.0"; sha256="09c2fbqnlwkhaxfmgpsdprl0bb447ajk9xl7qdlda201fvxkdc8v"; depends=[CompQuadForm]; }; rvalues = derive { name="rvalues"; version="0.3"; sha256="0fkf0gngrx1rfa67blzf3xxjwhlp2m2jplxw3z3j9vgl6ray0nqs"; depends=[]; }; rversions = derive { name="rversions"; version="1.0.2"; sha256="0xmi461g1rf5ngb7r1sri798jn6icld1xq25wj9jii2ca8j8xv68"; depends=[curl xml2]; }; -rvertnet = derive { name="rvertnet"; version="0.3.0"; sha256="12gsd9p5v0kqdzrjksz10s54h3v3a79njahgajpz6qf3sm6f3jmj"; depends=[dplyr ggplot2 httr jsonlite maps plyr]; }; -rvest = derive { name="rvest"; version="0.2.0"; sha256="1bg9l0wzh9xs7rpacl8s6q33hkjvv85vsl8079qsri0lr856wni7"; depends=[httr magrittr selectr XML]; }; +rvertnet = derive { name="rvertnet"; version="0.3.4"; sha256="1a5hzp91n7bzappz099gq5zjsjmzazj8kxfjb21bgdcb141mb82a"; depends=[dplyr ggplot2 httr jsonlite maps plyr]; }; +rvest = derive { name="rvest"; version="0.3.0"; sha256="0w87r7xb5a0i6mxcwsqlxwj1ihankirbga4g1m61hwss764shi0n"; depends=[httr magrittr selectr xml2]; }; rvgtest = derive { name="rvgtest"; version="0.7.4"; sha256="1lhha5nh8fk42pckg4ziha8sa6g20m0l4p078pjj51kz0k8929ng"; depends=[]; }; +rwirelesscom = derive { name="rwirelesscom"; version="1.3"; sha256="096y174xchiijh5yygaikhgbk77x627b7l4557dzbqr9v0rpb56f"; depends=[ggplot2]; }; rworldmap = derive { name="rworldmap"; version="1.3-1"; sha256="0wrg6ap39bq88sv5axxd90yyqafn77amk5429pxd9v5a2hdm3g8w"; depends=[fields maptools sp]; }; rworldxtra = derive { name="rworldxtra"; version="1.01"; sha256="183z01h316wf1r4vjvjhbj7cg4xarn4b8qbmnn5y7nrrdndzi163"; depends=[sp]; }; rwt = derive { name="rwt"; version="1.0.0"; sha256="112wp682z4gkxsd3bqnlkdrh42bfzwnnhzyangxi2dh0qw63bgcr"; depends=[matlab]; }; +rwunderground = derive { name="rwunderground"; version="0.1.0"; sha256="10m0wgym6rdrgvmhh79q4jf0lh8wlrg04mvq0yvgnqfgcxn4rmir"; depends=[countrycode dplyr httr]; }; ryouready = derive { name="ryouready"; version="0.3"; sha256="0nms3zfkis2fsxkyj3dr95vz3kk6pkm7l5ga7iz8pxy1ywrawj2i"; depends=[car stringr]; }; rysgran = derive { name="rysgran"; version="2.1.0"; sha256="1l2mx297iyipap8cw2wcw5gm7jq4076bf4gvgvij4q35vp62m85z"; depends=[lattice soiltexture]; }; rzmq = derive { name="rzmq"; version="0.7.7"; sha256="0gf8gpwidfn4756jqbpdbqsl8l4ahi3jgavrrvbbdi841rxggfmx"; depends=[]; }; @@ -6011,10 +6246,11 @@ sBF = derive { name="sBF"; version="1.1.1"; sha256="0dankakl4rwl9apl46hk57ps4mvn sExtinct = derive { name="sExtinct"; version="1.1"; sha256="1l6232z6c4z3cfl1da94wa6hlv9hj5mcb85fj1y0yparkvvl8249"; depends=[lattice]; }; sGPCA = derive { name="sGPCA"; version="1.0"; sha256="16aa5jgvkabrlxaf1p7ngrls79mksarh6di3vp26kb3d3wx087dx"; depends=[fields Matrix]; }; sROC = derive { name="sROC"; version="0.1-2"; sha256="0cp6frhk9ndffb454dqp8fzjrla76dbz0mn4y8zz1nbq1jzmz0d3"; depends=[]; }; +sValues = derive { name="sValues"; version="0.1.1"; sha256="15vghqn13qr6l5grx4immaj0d7p6q000sc0h40q01dhbcj7hnz0q"; depends=[caTools ggplot2 reshape2]; }; sac = derive { name="sac"; version="1.0.1"; sha256="1rl5ayhg5y84fw9w3zf43dijjlw9x0g0w2z4haw5xmxfni72ms8w"; depends=[]; }; saccades = derive { name="saccades"; version="0.1-1"; sha256="138a6g3hjmcyvflpxx1lhgxnb8svrynplrjnvzij7c4bzkp8zip6"; depends=[zoom]; }; sadists = derive { name="sadists"; version="0.2.1"; sha256="0m3rlbhgzl0xvx8bcaswbi9nsrgfhdmkywx7ynayl6q0lmslhk6a"; depends=[hypergeo orthopolynom PDQutils]; }; -sads = derive { name="sads"; version="0.2.2"; sha256="03z404jn809cyhi2ybrhmxa7xhsygrjz9hal9s5ya1jkzc4261z4"; depends=[bbmle GUILDS MASS poilog VGAM]; }; +sads = derive { name="sads"; version="0.2.3"; sha256="1k9jcxr0j4p20c8jaxv73j60zjq6lxn51aq3mk7d94njq5f4iw9s"; depends=[bbmle GUILDS MASS poilog VGAM]; }; sae = derive { name="sae"; version="1.1"; sha256="1izww27cqd94yrfbszbzy44plznxsirzn0752ag7xw7qzm5ywp3d"; depends=[MASS nlme]; }; sae2 = derive { name="sae2"; version="0.1-1"; sha256="0fbbh2s0gjhyhypaccnd37b5g2rhyzq7mrm6s0z36ldg1pzi4dd9"; depends=[MASS]; }; saeSim = derive { name="saeSim"; version="0.7.0"; sha256="03zfw18fvx8blh9iijh3rnglg8zbsvd9dq3kqv6ajz3hwr90z29g"; depends=[dplyr functional ggplot2 MASS parallelMap spdep]; }; @@ -6032,22 +6268,22 @@ samplingVarEst = derive { name="samplingVarEst"; version="0.9-9"; sha256="04wgsq samplingbook = derive { name="samplingbook"; version="1.2.0"; sha256="1vynz6hsnz5d0vg66f8k67h24rb809k9chb4waymk6vwnp8lksz9"; depends=[pps sampling survey]; }; samr = derive { name="samr"; version="2.0"; sha256="0rsfca07pvmhfn7b49yk2ycw00wsq6dmrpv9haxz8q0xv7n5n2q9"; depends=[impute matrixStats]; }; sand = derive { name="sand"; version="1.0.2"; sha256="1y371ds86gcq2id996vp56h5dax2wm0mlk1ks2mp1k81n63l7wmf"; depends=[igraph igraphdata]; }; -sandwich = derive { name="sandwich"; version="2.3-3"; sha256="1x2x0yxlrhdfyhk6jw4pim03yl5mg1wsi8cxxpbf9x4p68vd0w8y"; depends=[zoo]; }; +sandwich = derive { name="sandwich"; version="2.3-4"; sha256="0kbdfkqc8h3jpnlkil0c89z1192q207lii92yirc61css7izfli0"; depends=[zoo]; }; sanitizers = derive { name="sanitizers"; version="0.1.0"; sha256="1c1831fnv1nzpq8nw9krgf9fm8v54w0gvcn4443b6jghnnbhn2n6"; depends=[]; }; sanon = derive { name="sanon"; version="1.4"; sha256="0zg0paiz3rb0fk2mgi8rlzqy9vq3afy5vx6s15k1xqz8rjgsbd1x"; depends=[]; }; sapa = derive { name="sapa"; version="2.0-1"; sha256="11xgd2ijfz5yn0zyl5gfy97h2cxi1vyxkrijy2s9b78wm7fzpnkv"; depends=[ifultools splus2R]; }; sas7bdat = derive { name="sas7bdat"; version="0.5"; sha256="0qxlapb6wdhzpwlmzlhscy3av7va3h6gkzsppn4sx5q960310an3"; depends=[]; }; -satellite = derive { name="satellite"; version="0.1.0"; sha256="0dfbxa7y5jbd1gcpdk0ahkfsfn1cpjfy58wnwk257j4c460inafl"; depends=[plyr raster Rcpp]; }; +satellite = derive { name="satellite"; version="0.2.0"; sha256="00znkb9wsg7yqxykb5bhl1chqir26h4ixhcqzxg6j1c4hpd2sakk"; depends=[plyr raster Rcpp]; }; saturnin = derive { name="saturnin"; version="1.1.1"; sha256="0cjp4h1s9ivn17v8ar48mxflaj9vgv92c8p9l2k5bc9yqx9mcs36"; depends=[Rcpp RcppEigen]; }; saves = derive { name="saves"; version="0.5"; sha256="1b4mfi2851bwcp0frx079h5yl6y1bhc2s8ziigmr8kwy1y1cxw10"; depends=[]; }; saws = derive { name="saws"; version="0.9-6.1"; sha256="0w40j6xczqs74z1z3na4510w06px7yn55s2mw9mddd6736l56fv1"; depends=[gee]; }; sbgcop = derive { name="sbgcop"; version="0.975"; sha256="0f47mvwbsym4khwgl0ic3pqkw3jwdah9a48qi3q93d46p2xich61"; depends=[]; }; sbioPN = derive { name="sbioPN"; version="1.1.0"; sha256="0yvg55xnkhm35hfl7rldy2grb26hm4a68jr4x9n45fs7hhdylxri"; depends=[]; }; sbmSDP = derive { name="sbmSDP"; version="0.2"; sha256="1sl46lqi6w0s7ghv4bywhic56cm2vib3kawprga760m6igargx4y"; depends=[Rcpp RcppArmadillo]; }; -sca = derive { name="sca"; version="0.8-9"; sha256="024yxm1rlyz3hx9viv2nb6rapy938diaknc3nzkgq0ffky2gf0s3"; depends=[]; }; +sca = derive { name="sca"; version="0.9-0"; sha256="1xqdcxxsrsl8v2i8ifqcgb38vayz8ymay2sw4m9hmpma54a6r9j5"; depends=[]; }; scaRabee = derive { name="scaRabee"; version="1.1-3"; sha256="1yap3hi36f8hk93jn59nxrbgq8iw0xwkkm3pc2gb50cpcpaq41pd"; depends=[deSolve lattice neldermead]; }; scagnostics = derive { name="scagnostics"; version="0.2-4"; sha256="0fhc7d2nfhm8w6s6z1ls6i8d7c90h4q7rb92rz8pgq3xh031hpcf"; depends=[rJava]; }; -scales = derive { name="scales"; version="0.2.5"; sha256="12xrmn1vh64dl46bq7n7pa427aicb2ifjrby9in3m32nyvir0kac"; depends=[dichromat labeling munsell plyr RColorBrewer Rcpp]; }; +scales = derive { name="scales"; version="0.3.0"; sha256="1kkgpqzb0a6lnpblhcprr4qzyfk5lhicdv4639xs5cq16n7bkqgl"; depends=[dichromat labeling munsell plyr RColorBrewer Rcpp]; }; scalreg = derive { name="scalreg"; version="1.0"; sha256="06iqij1cyiw55ijzk2byrwh3m5iwsra7clx8l4v69rc236q8zbdi"; depends=[lars MASS]; }; scam = derive { name="scam"; version="1.1-9"; sha256="1hx8y324bgwvv888d34wq0nnmqalfh5f26b5n36saaizm4a12wyf"; depends=[Matrix mgcv]; }; scape = derive { name="scape"; version="2.2-0"; sha256="0dgbh65fg6i5x4lpfkshn382zcc4jk1wp62pwd2l2f59pyfb92a3"; depends=[coda Hmisc lattice]; }; @@ -6055,12 +6291,14 @@ scar = derive { name="scar"; version="0.2-1"; sha256="04x42414qxrz8c7xrnmpr00r46 scatterD3 = derive { name="scatterD3"; version="0.1.1"; sha256="1xrs1a68x29fyzg6a3frr3nlapi1k6nk3ndg54fm6f54k8hvxdf3"; depends=[htmlwidgets]; }; scatterplot3d = derive { name="scatterplot3d"; version="0.3-36"; sha256="0bdxfdw23921h3rbpq0y4aixplzpkk95wgm2932kh0x7a4bnhswh"; depends=[]; }; schoRsch = derive { name="schoRsch"; version="1.2"; sha256="1dz4mws227a5h3kkmpnz06liy9n3k01ihvcxxwnj8283w3b23bci"; depends=[]; }; -scholar = derive { name="scholar"; version="0.1.2"; sha256="1h1a6psgmiifi7p87ar3fr0mcfmg44yh4683dmqxrxrfcvgaxvca"; depends=[plyr R_cache stringr XML]; }; +scholar = derive { name="scholar"; version="0.1.3"; sha256="1r3w5pc75wfl9xc587as3ys61z1dab9q678152xihmb2imk3kh4l"; depends=[plyr R_cache stringr XML]; }; schoolmath = derive { name="schoolmath"; version="0.4"; sha256="06gcmm294d0bs5whvknrq48sk7li961lzy4bcncjg052zbbpn67x"; depends=[]; }; +schumaker = derive { name="schumaker"; version="0.1"; sha256="0jfiy6xhq1mn9ad85g2liqf9m4png4yanxgca5lkpvzncp7jj8f3"; depends=[]; }; schwartz97 = derive { name="schwartz97"; version="0.0.6"; sha256="0l34f30l75zrg3n377jp0cw7m88cqkgzy6ql78mrx8ra88aspfzn"; depends=[FKF mvtnorm RUnit]; }; scidb = derive { name="scidb"; version="1.2-0"; sha256="17y1bml8kb896l3hsw356qdj25sfbdvm10dyxhaafdgcbp5ywcrn"; depends=[digest iterators Matrix RCurl zoo]; }; scio = derive { name="scio"; version="0.6.1"; sha256="0h15sscv7k3j7qyr70h00n58i5f44k96qg263mxcdjk9mwqr0y65"; depends=[]; }; sciplot = derive { name="sciplot"; version="1.1-0"; sha256="0na4qkslg3lns439q1124y4fl68dgqjck60a7yvgxc76p355spl4"; depends=[]; }; +scmamp = derive { name="scmamp"; version="0.2.1"; sha256="0yik9wwl5blhlj5hrkarlxzbqqva808xy8z8ks0rrqfbc2fdpmbf"; depends=[ggplot2 graph reshape2 Rgraphviz]; }; score = derive { name="score"; version="1.0.2"; sha256="1p289k1vmc7qg70rv15x05dyb92r7s6315whr1ibi40sqln62a5s"; depends=[msm]; }; scorer = derive { name="scorer"; version="0.1.0"; sha256="1qbcbhymagaqpcbysj33ncjz1kxg9ig0anrv7pl8s8m2kpqn4vmb"; depends=[]; }; scoring = derive { name="scoring"; version="0.5-1"; sha256="0vxjcbp43h2ipc428qc0gx7nh6my7202hixwhnmspl4f3kai3wkp"; depends=[]; }; @@ -6075,10 +6313,10 @@ sdPrior = derive { name="sdPrior"; version="0.3"; sha256="0d3w75p3r2h07xhp7fj4si sda = derive { name="sda"; version="1.3.7"; sha256="1v0kp6pnjhazr8brz1k9lypchz8k8gdaby8sqpqzjsj8klghlcjp"; depends=[corpcor entropy fdrtool]; }; sdcMicro = derive { name="sdcMicro"; version="4.5.0"; sha256="1cz34g6si7f8kgybcvcsr0lkcspqp3vrkvfqsfdjd0mb8lv5pbjj"; depends=[brew car cluster data_table e1071 knitr MASS Rcpp robustbase sets xtable]; }; sdcMicroGUI = derive { name="sdcMicroGUI"; version="1.2.0"; sha256="0bhrpric17y1ljm18a00i6bkxfq1cpljfkib8qbb4jyj5s50f3ps"; depends=[cairoDevice foreign gWidgets gWidgetsRGtk2 Hmisc sdcMicro vcd]; }; -sdcTable = derive { name="sdcTable"; version="0.19.1"; sha256="00d2fi9z4n39waq90f6r4hpvhmz0w55nzaj9w0hmnmc9mr4z4p4p"; depends=[data_table lpSolveAPI Rcpp Rglpk stringr]; }; +sdcTable = derive { name="sdcTable"; version="0.19.6"; sha256="0b2p6dhcqci4hs4bmy2vmv2fgsh1ji2gw2xwq2ljq40n7r55ly5r"; depends=[data_table lpSolveAPI Rcpp Rglpk stringr]; }; sdcTarget = derive { name="sdcTarget"; version="0.9-11"; sha256="18cf276mh1sv16xn0dn8par4zg8k7y8710byxiih6db4i616fjpi"; depends=[doParallel foreach magic tuple]; }; sddpack = derive { name="sddpack"; version="0.9"; sha256="1963l8jbfwrqhqcpif73di9i5mb996r4f8smjyil6l7sdir7cg9l"; depends=[]; }; -sde = derive { name="sde"; version="2.0.13"; sha256="194dkwrww9win5chhlffjv1xkhpxx2bcv6hf81xaqk7pdf7ifj80"; depends=[fda MASS zoo]; }; +sde = derive { name="sde"; version="2.0.14"; sha256="1j4lvbc4f78dkz7fkwb07498a0xnnz0xrszgmhz80s2fvc1c5djs"; depends=[fda MASS zoo]; }; sdef = derive { name="sdef"; version="1.6"; sha256="1y1l5fl7lh636kyvc2hwssdnifl055nrz3riplj4qqw88lkm1mk8"; depends=[]; }; sdmvspecies = derive { name="sdmvspecies"; version="0.3.1"; sha256="1rpbj55598862vb4bwrvcbskm10xibsvx58fpvkn58zbm6ab2534"; depends=[ggplot2 GPArotation psych raster]; }; sdnet = derive { name="sdnet"; version="2.03.3"; sha256="1884pil3brm7llczacxda6gki501ddyc5m8ggqjix64kbvw37slv"; depends=[]; }; @@ -6087,10 +6325,11 @@ sdtoolkit = derive { name="sdtoolkit"; version="2.33-1"; sha256="0pirgzcn8b87hjb sdwd = derive { name="sdwd"; version="1.0.2"; sha256="0l0w4jn2p9b7acp8gmlv4w8n662l397kbrm4glslik0vnmjv151w"; depends=[Matrix]; }; seacarb = derive { name="seacarb"; version="3.0.8"; sha256="0fhf5wqazhxahillgg2xpncb4n5yjvr02251wpb2v4s39v88a5yd"; depends=[oce]; }; sealasso = derive { name="sealasso"; version="0.1-2"; sha256="0cjy3fj170p5wa41c2hwscmhqxwkjq22vhg9kbajnq7df2s20jcp"; depends=[lars]; }; +searchConsoleR = derive { name="searchConsoleR"; version="0.1.2"; sha256="02a28ism9kgfdmn00pdv9p6xg24c5kr5n0shghg5fq9yhxap59iv"; depends=[googleAuthR stringr]; }; searchable = derive { name="searchable"; version="0.3.3.1"; sha256="0xc87i2q42j7dviv9nj4hkgjvpfiprkkjpgzwsy47vp7q8024dv0"; depends=[magrittr stringi]; }; seas = derive { name="seas"; version="0.4-3"; sha256="1n0acg6fvaym4nx1ihw0vmb79csds0k4x9427qmcyxbl9hxxmllp"; depends=[]; }; season = derive { name="season"; version="0.3-5"; sha256="08f382kq51r5g9p5hsnjf17dwivhx1vfgmmwp1vzmbqx1drlqkzx"; depends=[coda ggplot2 MASS mgcv survival]; }; -seasonal = derive { name="seasonal"; version="0.90.0"; sha256="0r5l69vl0lqi9hdxi90wx22v38p3izwx3cn124awzlak49i2qn0l"; depends=[]; }; +seasonal = derive { name="seasonal"; version="1.0.0"; sha256="09hng20bd4w06rskgfkb61x3g29hj1zigjgs9s79ybxikis4kv5a"; depends=[]; }; seawaveQ = derive { name="seawaveQ"; version="1.0.0"; sha256="19vm1f0qkmkkbnfy1hkqnfz6x2a7g9902ka76bhpcscynl69iy56"; depends=[lubridate NADA survival]; }; secr = derive { name="secr"; version="2.9.5"; sha256="0qm3blx9m8frxzb5dqxw98ijq5f5gaxn194kcrbiz3wxfqswhn3f"; depends=[abind MASS mgcv nlme raster sp]; }; secrdesign = derive { name="secrdesign"; version="2.3.0"; sha256="1f5swggkky721z0js2jr1gb3mrx9h6qlld70bjd86x9f73s9cm0n"; depends=[abind secr]; }; @@ -6101,11 +6340,13 @@ seem = derive { name="seem"; version="1.0"; sha256="0cjdi9c89bqvrx9gzxph958cfqic seewave = derive { name="seewave"; version="2.0.2"; sha256="1dr2kldx85fbzawy5lp5z3044hsh72vdyirl15b12w8nrh2p1a5z"; depends=[tuneR]; }; seg = derive { name="seg"; version="0.5-1"; sha256="0gsdbq7b5wpknhlilrw771japr63snvx4vpirvzph4fjyby1c7rg"; depends=[sp splancs]; }; segmag = derive { name="segmag"; version="1.2.2"; sha256="130saznhssg0qsc34fcw80x92mmqhjgizrb4fxpjsg7a8jjrclp8"; depends=[Rcpp]; }; -segmented = derive { name="segmented"; version="0.5-1.1"; sha256="0rkbhg8wwqk08jfd29sh4ifx427kmd4mfqrssllckha9hcglqhz7"; depends=[]; }; +segmented = derive { name="segmented"; version="0.5-1.2"; sha256="1fgbcnwv0a4h567ad7bdhgf8v9ngfspiwj583nscmdfk1rcmv6k4"; depends=[]; }; seismic = derive { name="seismic"; version="1.0"; sha256="02d11c3filzghi8cvryikaidmk40d4z3qxsqs7bjdhxyf814caw8"; depends=[]; }; seismicRoll = derive { name="seismicRoll"; version="1.0.1"; sha256="1lls2gbx994j7y3kwpf00ngga5qlzqxwc3cy9x21gy9iq2s8hn0x"; depends=[Rcpp]; }; +sejmRP = derive { name="sejmRP"; version="1.1"; sha256="0afbj9r9pxpzjy1k6rwymqy02zli9k5ahiz7695fiyshjfhl2q62"; depends=[DBI dplyr RPostgreSQL rvest stringi XML]; }; selectMeta = derive { name="selectMeta"; version="1.0.8"; sha256="0i0wzx5ggd60y26lnn4qk4n8h27ahll9732026ppks1djx14cdy0"; depends=[DEoptim]; }; selectiongain = derive { name="selectiongain"; version="2.0.40"; sha256="1xzvz747242wfv789dl3gqvgbc8l1c4i2r3p95766ypcjw51j55d"; depends=[mvtnorm]; }; +selectiveInference = derive { name="selectiveInference"; version="1.1.1"; sha256="1vww8qmdb2jssas5vfa5srldakd7afcb4bnhsk63zvxvx0wn0v7p"; depends=[glmnet intervals]; }; selectr = derive { name="selectr"; version="0.2-3"; sha256="1ppm1f6mwfwbq92iwacyjn46k1d8148j4zykmjvw8as6c8blgap1"; depends=[stringr XML]; }; selectspm = derive { name="selectspm"; version="0.2"; sha256="0wvhlzhl0janhms107xczmilpmr4y26jgk0ag3g34iqba7fbnfqd"; depends=[ecespa spatstat]; }; selfea = derive { name="selfea"; version="1.0.1"; sha256="0zyxbd5vg8nhigill3ndcvavzbb9sbh5bz6yrdsvzy8i5gzpspvx"; depends=[ggplot2 MASS plyr pwr]; }; @@ -6116,7 +6357,7 @@ semPLS = derive { name="semPLS"; version="1.0-10"; sha256="0q5linjyv5npkw4grx3vq semPlot = derive { name="semPlot"; version="1.0.1"; sha256="0sdp970qb4mz5vzncfmqxvg1z12gmiyqi3yaz9x2drm3rgzavy83"; depends=[colorspace corpcor igraph lavaan lisrelToR plyr qgraph rockchalk sem XML]; }; semTools = derive { name="semTools"; version="0.4-9"; sha256="1fiw6ajksbzsvrfs5wq7l4bwnp8jd068w6ifklv3jwsbyqa4lvkf"; depends=[lavaan]; }; semdiag = derive { name="semdiag"; version="0.1.2"; sha256="0kjcflw7dn907zx6790w7hnf5db6bf549whfsc0c2r173kf13irp"; depends=[sem]; }; -semiArtificial = derive { name="semiArtificial"; version="1.2.0"; sha256="11pwdqpsf5d5g74s2b8ixmrh2khkha3d4akzlkn652s98qr55dpc"; depends=[cluster CORElearn fpc MASS mclust nnet RSNNS timeDate timeSeries]; }; +semiArtificial = derive { name="semiArtificial"; version="2.0.1"; sha256="1bjjqcm6r3hxj5752ywdzllh7wr4rwzqlrkf50wpdl05za3fbfd9"; depends=[cluster CORElearn dendextend fpc ks logspline MASS mclust nnet robustbase RSNNS timeDate]; }; semisupKernelPCA = derive { name="semisupKernelPCA"; version="0.1.5"; sha256="1v8wdq63b1gqicj8c9a24k0w7cc0bkg0mnc9z5mklsfcl7g0g6k9"; depends=[datautils irlba]; }; semsfa = derive { name="semsfa"; version="1.0"; sha256="1x227rigjk9glq5x9lp6xxcf3y9i73rv3mrj7lkr2ycnsx8zz57h"; depends=[doParallel foreach iterators mgcv moments np]; }; sendmailR = derive { name="sendmailR"; version="1.2-1"; sha256="0z7ipywnzgkhfvl4zb2fjwl1xq7b5wib296vn9c9qgbndj6b1zh4"; depends=[base64enc]; }; @@ -6124,7 +6365,7 @@ sendplot = derive { name="sendplot"; version="4.0.0"; sha256="0ia2xck94nwirwxi38 sensR = derive { name="sensR"; version="1.4-5"; sha256="1vp06ghmk852wkc4vmp4k68z6v623hsay69c8nm3m8xvf2vrqfgb"; depends=[MASS multcomp numDeriv]; }; sensitivity = derive { name="sensitivity"; version="1.11.1"; sha256="1v4lzy687r66jmxgm0fy81wgj70ak58hd13h1jn60wb5j3p91qki"; depends=[boot]; }; sensitivityPStrat = derive { name="sensitivityPStrat"; version="1.0-6"; sha256="0rfzvkpz7dll3173gll6np65dyb40zms63fkvaiwn0lk4aryinlh"; depends=[survival]; }; -sensitivitymv = derive { name="sensitivitymv"; version="1.2"; sha256="0h8lbl5yhxgzdrajjydb2ap9q3dnm1abxdk8gdhp84m1bv8pznkj"; depends=[]; }; +sensitivitymv = derive { name="sensitivitymv"; version="1.3"; sha256="1bxf85q91smnsl2lsig43vk0c63c805d8ry1xh3w6q675djj14ad"; depends=[]; }; sensitivitymw = derive { name="sensitivitymw"; version="1.1"; sha256="1bknnfkkqgmchabcjdfikm37sn5k41ar8lpnjw58i8qh7yzq237i"; depends=[]; }; sensory = derive { name="sensory"; version="1.0"; sha256="0mfjj3lsx5i8bc8ikhqwycmfryzg9vd64m6ahqjf6xva7bj5h1v6"; depends=[gtools MASS Matrix]; }; separationplot = derive { name="separationplot"; version="1.1"; sha256="0qfkrk8n6jj8l7ywngwsaikfwmd9hbrpr43x0l9wkjjp1asgs5l6"; depends=[]; }; @@ -6134,11 +6375,11 @@ seqMeta = derive { name="seqMeta"; version="1.6.0"; sha256="1ha6vsaapac6p18r5df2 seqPERM = derive { name="seqPERM"; version="1.0"; sha256="1i8ai4gxybh08wxjh96m6xlqxhh7ch0xihjs879snmy4zqfi0pap"; depends=[]; }; seqRFLP = derive { name="seqRFLP"; version="1.0.1"; sha256="1i98hm8wgwr8b6hd237y2i9i0xgn35w4n2rxy4lqc5zq71gkwkvk"; depends=[]; }; seqinr = derive { name="seqinr"; version="3.1-3"; sha256="0bbjfwbqg74wsamb3iz01g0ssdpdpg65gh00y9xlnpk4wb990n4n"; depends=[ade4]; }; -seqminer = derive { name="seqminer"; version="4.5"; sha256="18s2gvc55fx3x4bnfa580gqhrc62pz4az2i9dvbpnnk4aazj3ny8"; depends=[]; }; +seqminer = derive { name="seqminer"; version="4.9"; sha256="0n7nhqpgkacrh9s1ppg7gyj0l930vy6a113wjmd7fmb2sl0qw9wv"; depends=[]; }; seqmon = derive { name="seqmon"; version="0.2"; sha256="075hc6vgl1w3nisrihf5w6mkkg9q601jsqxm9hk9yagyvvd7d78w"; depends=[]; }; sequences = derive { name="sequences"; version="0.5.9"; sha256="17571m525b6a3k4f0m936wfq401181gx1fpb7x4v0fhaldzdmk3a"; depends=[Rcpp]; }; sequenza = derive { name="sequenza"; version="2.1.1"; sha256="0vrdmfy8qyzjflyl5skcy9mazl56py5gzb1kn1xh2hiv3mshdrfx"; depends=[copynumber squash]; }; -seriation = derive { name="seriation"; version="1.1-1"; sha256="127dg4n85phaj9r4y8898clh6sm78rk8pjk6v6zxfy79f7a1k96d"; depends=[cluster colorspace gclus gplots MASS registry TSP]; }; +seriation = derive { name="seriation"; version="1.1-2"; sha256="1nrbnkhrf8x83ssssgi9jn60172afkldh1vwfjrhyh6c9nka6pa5"; depends=[cluster colorspace gclus gplots MASS registry TSP]; }; seroincidence = derive { name="seroincidence"; version="1.0.4"; sha256="0m3hlbv3277qyhqi3liwbna7czd6kdc7gqaxc7xn5x8d2hsc45hk"; depends=[]; }; servr = derive { name="servr"; version="0.2"; sha256="0gah99snaj8lk5zfzbxi3jwvpnlff9diz9gqv4qalfxpmb7fp6lc"; depends=[httpuv jsonlite mime]; }; sesem = derive { name="sesem"; version="1.0.1"; sha256="0s4xkv6bc5nxhj09mk9agnj11b9h7swccs9jrn4lg3fy12vqhf5a"; depends=[gplots lavaan mgcv]; }; @@ -6149,22 +6390,22 @@ settings = derive { name="settings"; version="0.2.2"; sha256="0bssy42kkb1aww9ynd setwidth = derive { name="setwidth"; version="1.0-4"; sha256="0i565phbfj0rff13nyz6sy8cn4cch4fcjfgkns3z6c94w11b4703"; depends=[]; }; severity = derive { name="severity"; version="2.0"; sha256="1mp19y2pn7nl9m8xfljc515kk5dirv0r2kypazpmd956lcivziqq"; depends=[]; }; sfa = derive { name="sfa"; version="1.0-1"; sha256="1acqxgydf8j5csdkx0yf169x3yaa31r0ccdrqarh6vj1hacm89ad"; depends=[]; }; -sfsmisc = derive { name="sfsmisc"; version="1.0-27"; sha256="16hkm0ylwipc1zqsi8fiwyqvl9hpjgl7kyvgamibxlbp1y669qgm"; depends=[]; }; +sfsmisc = derive { name="sfsmisc"; version="1.0-28"; sha256="0fa4blrlgwdnj8wgv1h7c143r3g9rnnsnnrlgxa8inmajb1ck07b"; depends=[]; }; sft = derive { name="sft"; version="2.0-7"; sha256="1fq1b32f08i4k9bv4hh7rhk1jj7kgans6dwh1bmawaqkchyab3jr"; depends=[fda]; }; -sgPLS = derive { name="sgPLS"; version="1.2"; sha256="1q3pf4sfh8l2qwxm0qd3sg29kvvprpcyis0afbcjhvfr10w91xpw"; depends=[mixOmics]; }; +sgPLS = derive { name="sgPLS"; version="1.3"; sha256="06mac5sxsd7fpy3lwn4x8bm2l2x0fnq246dxg6770w8ydipy7q8k"; depends=[mixOmics]; }; sgRSEA = derive { name="sgRSEA"; version="0.1"; sha256="0vyypnq81l36x0j44q2l9wbf3x4krz4fzypi7vyqhaq97mkzaw5j"; depends=[]; }; -sgd = derive { name="sgd"; version="0.1"; sha256="16jqzshkg1n1azyfjadyg454ar0hk2dmw9ba1wrn6rh7mxsngik6"; depends=[BH MASS Rcpp RcppArmadillo]; }; -sgeostat = derive { name="sgeostat"; version="1.0-25"; sha256="04zl932s6zb26r42h2l8qf3d43bmrq67281mrkh4spn4vcddv5da"; depends=[]; }; -sglOptim = derive { name="sglOptim"; version="1.0.122.1"; sha256="0ld53rdxai85r9hwz9jrsxr08lxin0ksxa6823r7cr96w18c1ssm"; depends=[BH Matrix Rcpp RcppArmadillo RcppProgress]; }; +sgd = derive { name="sgd"; version="1.0"; sha256="1ljv7rr65h81n8z35vdcbqp0dfbqlginc6xn9jmpidn20gkxlj1w"; depends=[BH bigmemory ggplot2 MASS Rcpp RcppArmadillo]; }; +sgeostat = derive { name="sgeostat"; version="1.0-26"; sha256="0srsly6a3rraczshqqfmpwqz3459yxbsr70d4lz8b0kvflhds7p3"; depends=[]; }; +sglOptim = derive { name="sglOptim"; version="1.2.0"; sha256="06a70q7i93pyyadqngg1qd0kz52m73fpqlji6jxsiyixajcqn2q5"; depends=[BH Matrix Rcpp RcppArmadillo RcppProgress]; }; sglasso = derive { name="sglasso"; version="1.2.1"; sha256="18dag7wvz0l959igg4g77psi8idvqyikg676yy9ga3k69kl11hdk"; depends=[igraph Matrix]; }; sglr = derive { name="sglr"; version="0.7"; sha256="11gjbvq51xq7xbmpziyzwqfzf4avyxj2wpiz0kp4vfdj3v7p4fp9"; depends=[ggplot2 shiny]; }; sgof = derive { name="sgof"; version="2.2"; sha256="087f4nbx9ppzi5za3f4w4msq2gd3r08v16fihppa30nqydg3ssbj"; depends=[poibin]; }; sgr = derive { name="sgr"; version="1.3"; sha256="0zxmrbv3fyb686hcgfy2w1w2jffxf41ab8yc90dsgf931s9c55wn"; depends=[MASS]; }; -sgt = derive { name="sgt"; version="1.1"; sha256="0j4xxh5lypcl0hyfx7gzrhb40z36ygn97hf1nl6m8wj4dncg39jf"; depends=[maxLik]; }; +sgt = derive { name="sgt"; version="2.0"; sha256="0qb3maj5idwafs40fpdfrwzkadnh5yg8fvfzfs51p9yy69kbmlkx"; depends=[numDeriv optimx]; }; shape = derive { name="shape"; version="1.4.2"; sha256="0yk3cmsa57svcvbnm21pyr0s0qbhnllka8nmsg4yb41frjlqph66"; depends=[]; }; shapeR = derive { name="shapeR"; version="0.1-5"; sha256="17fq4gsdvyniq7n4x1xdvb5kk50184i7why3pdf1djjhknym087j"; depends=[gplots jpeg MASS pixmap vegan wavethresh]; }; shapefiles = derive { name="shapefiles"; version="0.7"; sha256="08ghndihs45kylbzd9wnxffn8ixvxjhjnjldjyd526ai2sj8xcgf"; depends=[foreign]; }; -shapes = derive { name="shapes"; version="1.1-10"; sha256="038xps6f8b6w9qa9csqk33ggmb311h5zxwsxr027bd95a3vmyijx"; depends=[MASS rgl scatterplot3d]; }; +shapes = derive { name="shapes"; version="1.1-11"; sha256="1zxckrl4pc6ppdbhp5h5ib4yp7iw7z3kciqibrijvbvjpkl1fl35"; depends=[MASS rgl scatterplot3d]; }; sharpshootR = derive { name="sharpshootR"; version="0.7-2"; sha256="04plsgmyil6znmcqx2j78n2vjj4y4mprb3wqbhwagapdhvp9rcis"; depends=[ape aqp circular cluster Hmisc igraph lattice latticeExtra plyr RColorBrewer reshape2 scales soilDB sp vegan]; }; sharx = derive { name="sharx"; version="1.0-4"; sha256="1flcflx6w93s8bk4lcwcscwx8vacdl8900ikwkz358jbgywskd5n"; depends=[dclone dcmle Formula]; }; shiny = derive { name="shiny"; version="0.12.2"; sha256="0hdgvqsg0s7va55z2pf76898fslcnghpcjvwsqlfw2q441h7dkh9"; depends=[digest htmltools httpuv jsonlite mime R6 xtable]; }; @@ -6174,12 +6415,13 @@ shinyFiles = derive { name="shinyFiles"; version="0.6.0"; sha256="08cvpvrsr1bh0y shinyRGL = derive { name="shinyRGL"; version="0.1.0"; sha256="07llg1yg5vmsp89jk60ly695zvxky6n06ar77mjxzlyc294akwmy"; depends=[rgl shiny]; }; shinyTree = derive { name="shinyTree"; version="0.2.2"; sha256="08n2s6pppbxn23ijp6vms609p4qwlmfh9g0k5hdfqsqxjrz1nndi"; depends=[shiny]; }; shinybootstrap2 = derive { name="shinybootstrap2"; version="0.2.1"; sha256="17634l3swlvgj1sv56nvrpgd6rqv7y7qjq0gygljbrgpwmfj198c"; depends=[htmltools jsonlite shiny]; }; -shinydashboard = derive { name="shinydashboard"; version="0.5.0"; sha256="1q2g0vdid14id489ybfhf6x67bmc4g2zhamw3vx9piqvdlfmnqg5"; depends=[htmltools shiny]; }; -shinyjs = derive { name="shinyjs"; version="0.0.8.3"; sha256="0dd20p3j4yk9q6846s1ykxvp94kp06nykxrq29nhba8jgf9gm2g0"; depends=[shiny]; }; +shinydashboard = derive { name="shinydashboard"; version="0.5.1"; sha256="1p417ngxw9bk90kgz6n8f23w360knjdg6kkvrbarf7s91wfc8wcb"; depends=[htmltools shiny]; }; +shinyjs = derive { name="shinyjs"; version="0.2.0"; sha256="1jprnnqnwgylbzbg8bflkwaxq5jaylb3d74dcqdss71glwpml2ya"; depends=[digest htmltools shiny]; }; +shinystan = derive { name="shinystan"; version="2.0.1"; sha256="0rjqawyv2gpwdz75nnwzxi93fjx2vfvxv14ihhmhz8zly3pjaadc"; depends=[DT dygraphs ggplot2 gridExtra gtools markdown reshape2 shiny shinyjs shinythemes threejs xtable xts]; }; shinythemes = derive { name="shinythemes"; version="1.0.1"; sha256="0wv579cxjlnd7wkfqzy2x3qk7d1abql1nhw10rx1c4c808vsylkw"; depends=[shiny]; }; shopifyr = derive { name="shopifyr"; version="0.28"; sha256="1ypqgiqimdwj9fjy9ykk42rnkipb4cvdxy5m9z9jklvk5a7cgrml"; depends=[R6 RCurl RJSONIO]; }; -shotGroups = derive { name="shotGroups"; version="0.6"; sha256="0khcgzli6114yqrglmsvhr8rwkkkwdkd06b50isbc24vpv6xbfx9"; depends=[boot coin CompQuadForm energy KernSmooth mvoutlier robustbase]; }; -showtext = derive { name="showtext"; version="0.4-2"; sha256="18r1xwyjca9ccr2yf8r786pgji38myqp35abxsvd7wv7k3avhwd9"; depends=[showtextdb sysfonts]; }; +shotGroups = derive { name="shotGroups"; version="0.6.1"; sha256="1fvqgqd9vzpvpb25w8bxhapmc1bahgkap9ab7hwp8hvnrn0kiwg0"; depends=[boot coin CompQuadForm energy KernSmooth mvoutlier robustbase]; }; +showtext = derive { name="showtext"; version="0.4-3"; sha256="1kshp6w6f8kbnii182cldn754880sf33fapwc092sk8bzaajk7dw"; depends=[showtextdb sysfonts]; }; showtextdb = derive { name="showtextdb"; version="1.0"; sha256="14iv5nyc9wszy1yhbggk7zs042kv10lwk92pn9751hfws53yq6hf"; depends=[sysfonts]; }; shp2graph = derive { name="shp2graph"; version="0-2"; sha256="09gbb7f9h3q2p56dwb2813mr36115ah70szq47jimpymzkd2x08m"; depends=[igraph maptools]; }; shrink = derive { name="shrink"; version="1.2.0"; sha256="0r207mj57kjn6wfmz4f2l4wmbz7g1pvj96gpl0s76vkdjzbh1l47"; depends=[MASS rms survival]; }; @@ -6197,35 +6439,38 @@ signalHsmm = derive { name="signalHsmm"; version="1.3"; sha256="0hx389ibk473mfyc signmedian_test = derive { name="signmedian.test"; version="1.5.1"; sha256="05n7a4h2bibv2r64cqschzhjnm204m2lm1yrwxvx17cwdp847hkm"; depends=[]; }; simFrame = derive { name="simFrame"; version="0.5.3"; sha256="154d4k6x074ib813dp42l5l8v81x9bq2c8q0p5mwm63pj0rgf5f3"; depends=[lattice Rcpp]; }; simMSM = derive { name="simMSM"; version="1.1.41"; sha256="04icijrdc269b4hwbdl3qz2lyxcxx6z63y2wbak1884spn6bzbs8"; depends=[mvna survival]; }; -simPH = derive { name="simPH"; version="1.3.2"; sha256="0zlzlan2syl51smc3wm52yiak82v1f3pjgsba3w677a37g3badls"; depends=[data_table dplyr ggplot2 gridExtra lazyeval MASS mgcv quadprog reshape2 stringr survival]; }; -simPop = derive { name="simPop"; version="0.2.9"; sha256="1vi2jab57aqf1jyf87vrybz5qbhv7wdjhsm963z3cpyva2bj0i60"; depends=[colorspace data_table doParallel e1071 foreach laeken lattice MASS nnet Rcpp vcd]; }; +simPH = derive { name="simPH"; version="1.3.4"; sha256="18hqvbqmckr83xa2qvgwbjszwfahqpirdlwskg1gcq5l8x2v6dax"; depends=[data_table dplyr ggplot2 gridExtra lazyeval MASS mgcv quadprog stringr survival]; }; +simPop = derive { name="simPop"; version="0.2.15"; sha256="1dx7xjd7zqp7gv84vl5mm8wiv0mg1wlsx68gmz68j39a4g45yr0q"; depends=[colorspace data_table doParallel e1071 foreach laeken lattice MASS nnet Rcpp vcd VIM]; }; simSummary = derive { name="simSummary"; version="0.1.0"; sha256="1ay2aq6ajf1rf6d0ag3qghxpwj0f8b3fhpr2k0imzmpbyag1i3gj"; depends=[abind gdata svUnit]; }; simTool = derive { name="simTool"; version="1.0.3"; sha256="1x018p5mssrhz2ghs3ly9wss12503h93gl7zk0mqh1bcrzximh0k"; depends=[plyr reshape]; }; simba = derive { name="simba"; version="0.3-5"; sha256="14kqxqavacckl5s1518iiwzrmlgbxz1lxy33y8c9qq7xaln41g9h"; depends=[vegan]; }; simboot = derive { name="simboot"; version="0.2-5"; sha256="0slznwk8i3z76sxbfd4y5rp28jr6jv4i5ynnckpr10i59ba04wlq"; depends=[boot mvtnorm]; }; -simcausal = derive { name="simcausal"; version="0.2.0"; sha256="1isnax63p4xdy820lyfpbjqfz9h7k6zkhpqz87knlnz2ys1dcqa4"; depends=[data_table reshape2]; }; +simcausal = derive { name="simcausal"; version="0.4.0"; sha256="1f533y80bp1svxcbxw8lggp2jr3s6ifk5gpd0d7cgn6cdshvcy5y"; depends=[assertthat data_table Matrix R6 stringr]; }; simctest = derive { name="simctest"; version="2.4.1"; sha256="0v4l3dqhr551kr1kivsndk4ynkiaarp8hp65vgng4q8jm60il98c"; depends=[]; }; -simecol = derive { name="simecol"; version="0.8-6"; sha256="0h48klfwk0836byncqn9d0z8mkh6lc8qm4zivyk5af79mr5s0bn5"; depends=[deSolve]; }; +simecol = derive { name="simecol"; version="0.8-7"; sha256="0p6kmv65k3zy5q4v8casc2cp3c2ckblmycd1y1nnn7z7fnd57g8h"; depends=[deSolve minqa]; }; +simest = derive { name="simest"; version="0.1"; sha256="05ypbqarmkz0ipb7qiy8lj9mhcdsacmq5drkg0r064ky78w0nv3w"; depends=[coneproj nnls]; }; simex = derive { name="simex"; version="1.5"; sha256="01706vbmfgcg13w1kq8v5rnk5xggbd1n7fv50c6bvhdyc1dly313"; depends=[]; }; simexaft = derive { name="simexaft"; version="1.0.7"; sha256="13w9m35qrrp8kkz4gqp7fg9jv8fs99y19n21bdxsd3f5mlkbvqgl"; depends=[mvtnorm survival]; }; +simmr = derive { name="simmr"; version="0.2"; sha256="0g83icm98aavdvvi5fcxnka4lbs9c39sqm32n2w5405ywpv9w8nl"; depends=[boot coda compositions ggplot2 MASS reshape2 rjags]; }; simone = derive { name="simone"; version="1.0-2"; sha256="071krim64s7fjwvwq7bjr0pw33mw9am9wpyypcy4gs7g1hj8wcir"; depends=[mixer]; }; simpleNeural = derive { name="simpleNeural"; version="0.1.1"; sha256="0rm6kvz1mppvgcvwsgg3nz6ci37l95ins64g0jh4rw6lfmy0grjc"; depends=[]; }; simpleboot = derive { name="simpleboot"; version="1.1-3"; sha256="1qprjisfflhzg8ll12p3q1zcfdiyc45glic2j9cw9nhx5rb065fk"; depends=[boot]; }; simplexreg = derive { name="simplexreg"; version="1.1"; sha256="0iyrkynhrkdix27r105wv0yn5yc8cgrf6hlv4byi9mz6y05f9i7p"; depends=[Formula plotrix]; }; +simplr = derive { name="simplr"; version="0.1-1"; sha256="14gv2cwygjjfc9yjdrcn68scgyh469kypmf4mqy5p18gsxfj3h1c"; depends=[]; }; simrel = derive { name="simrel"; version="1.0-1"; sha256="0905rjqh8c08vyg090h0i7sx89vdryignslldzfz2r5yrszl4ga8"; depends=[FrF2 sfsmisc]; }; simsalapar = derive { name="simsalapar"; version="1.0-5"; sha256="1z3dwylfrl08pq2k5ppfma3ijh356qc7wwdvgyp3wmw1bcq1amyf"; depends=[colorspace gridBase sfsmisc]; }; simsem = derive { name="simsem"; version="0.5-11"; sha256="0k93wck82wpxrckf7g8x7iik0134wmz5n8y2d086lb24ic2231zz"; depends=[lavaan]; }; siplab = derive { name="siplab"; version="1.1"; sha256="1b5drhla4p7n1y1cp7kqwqzw0b286kgij9j6wsks5vjgy5qfal1x"; depends=[spatstat]; }; sirad = derive { name="sirad"; version="2.0-7"; sha256="009icj1jil757vvsf88sgmdz40swrx1qvrhnx7wwj7p3dlh78pvw"; depends=[ncdf raster RNetCDF zoo]; }; sirt = derive { name="sirt"; version="1.8-9"; sha256="19kkn2a18kpv6vk45xbi3662mfbmcrz06aq994fzynar2nbix3f0"; depends=[CDM coda combinat gtools ic_infer igraph lavaan lavaan_survey MASS Matrix mirt mvtnorm pbivnorm psych qgraph Rcpp RcppArmadillo semPlot sfsmisc sm survey TAM]; }; -sisVIVE = derive { name="sisVIVE"; version="1.1"; sha256="1p1l07pgd88ap3bp0zwinnzda07pfg6cn92ync2pkqn5l0gmfxbs"; depends=[lars]; }; +sisVIVE = derive { name="sisVIVE"; version="1.2"; sha256="03lnk0p97nf4a8rw8ypy3xfzj4idwm00a0gfrkiwb7xq606sl0vb"; depends=[lars]; }; sisus = derive { name="sisus"; version="3.9-13"; sha256="0lz9ww07dvdx6l3k5san8gwq09hycc3mqwpgzmr2ya9z8y27zadr"; depends=[coda gdata gtools MASS moments polyapost rcdd RColorBrewer]; }; sitar = derive { name="sitar"; version="1.0.3"; sha256="194jyd93h811bvscxklx5cm3vjk9xl8ixmrim49nzrwckdrzfnm0"; depends=[nlme quantreg]; }; sitools = derive { name="sitools"; version="1.4"; sha256="0c0qnvsv06g6v7hxad96fkp9j641v8472mbphvaxa60k3xc7ackb"; depends=[]; }; sivipm = derive { name="sivipm"; version="1.0-0"; sha256="1r548kfsi90rzisx37nw3w9vwj3gs4ck5zhwlskbdzgigb78spfp"; depends=[seqinr]; }; -sjPlot = derive { name="sjPlot"; version="1.8.2"; sha256="1fnqsayg31gk0qggs3024i4nrdardfqqsyggf8l8c6zamcx680fa"; depends=[car dplyr ggplot2 MASS psych scales sjmisc tidyr]; }; +sjPlot = derive { name="sjPlot"; version="1.8.3"; sha256="137j5wwn2vc4cljiagx4dlf3vkf5c2l1i13jsn03w0mkncacl78y"; depends=[car dplyr ggplot2 magrittr MASS psych scales sjmisc tidyr]; }; sjdbc = derive { name="sjdbc"; version="1.5.0-71"; sha256="0i9wdfadfcabayq78ilcn6x6y5csazbsgd60vssa2hdff0ncgvk1"; depends=[rJava]; }; -sjmisc = derive { name="sjmisc"; version="1.0.3"; sha256="0yar8nr1jrazjngaxnawdhh75l5z47rc84nzvv8yz8kxb46pmgy6"; depends=[MASS]; }; +sjmisc = derive { name="sjmisc"; version="1.1"; sha256="0224adxkypwhlysgr9q7q9mblswkpylg06r611li7wgvk7wgx6sy"; depends=[MASS]; }; skatMeta = derive { name="skatMeta"; version="1.4.3"; sha256="0bknv066ya4yl4hl4y02d9lglq2wkl9c2j1shzg3d64dg4sjvbak"; depends=[CompQuadForm coxme Matrix survival]; }; skda = derive { name="skda"; version="0.1"; sha256="0a6mksr1d0j3pd0kz4jb6yh466gvl4fkrvgvnlmvivpv6b2gqs3q"; depends=[]; }; skellam = derive { name="skellam"; version="0.1.3"; sha256="1w46ri4k8xg07phl7j4cb5b3qndplr027n047wzc15xcjliggg89"; depends=[]; }; @@ -6235,19 +6480,19 @@ sla = derive { name="sla"; version="0.1"; sha256="0fr5n65ppwsh9z7a6rma9ak0bl8x3n slackr = derive { name="slackr"; version="1.2"; sha256="1ymj3x52wyp0mp41xnnycg0vhdmv8whimwk1hzfsqr30pccnvn9j"; depends=[data_table ggplot2 httr jsonlite]; }; slam = derive { name="slam"; version="0.1-32"; sha256="000636dwj4kmj5w1w5s6bqixh78m7262y3fgizj7rfhcnc2gz7ad"; depends=[]; }; sld = derive { name="sld"; version="0.3"; sha256="18xj57v9gg78d894cr1h6wp10i05hrnmwhmq6yh6211kdyj9ljp1"; depends=[lmom]; }; -slfm = derive { name="slfm"; version="0.2.0"; sha256="0hchwxhbq2ca50gbc8qjcjksdx3d3ms0bzqc00hyrakrf7bn0qkp"; depends=[coda lattice Rcpp RcppArmadillo]; }; +slfm = derive { name="slfm"; version="0.2.2"; sha256="01n9y6kyl7z1ynckp2hkrv2yl9jf30zcbbi3sx9jrcha557fg1cf"; depends=[coda lattice Rcpp RcppArmadillo]; }; slp = derive { name="slp"; version="1.0-3"; sha256="09jyrp6y3rigy043d8s5i7nh89pgpvn3cv51mr729c9ccr6jdjb1"; depends=[mgcv]; }; sm = derive { name="sm"; version="2.2-5.4"; sha256="0hnq5s2fv94gaj0nyqc1vjdjd64vsp9z23nqa8hxvjcaf996rwj9"; depends=[]; }; smaa = derive { name="smaa"; version="0.2-4"; sha256="1rp0hib79x1rf2v5h1d2gp6ixq7r8v33qy5bz5sfphi94xwasm7l"; depends=[]; }; smac = derive { name="smac"; version="1.0"; sha256="1inn7i5k0q5vln24kazh3gl3szf6lxwnjr2rw70jcyn9dr9iy952"; depends=[]; }; -smacof = derive { name="smacof"; version="1.6-2"; sha256="10yg4dxyv08wq1a74jac6jnmzhbjm6qip3vg5ca06w5pqk6lbdgn"; depends=[colorspace Hmisc nnls polynom rgl scatterplot3d]; }; -smacpod = derive { name="smacpod"; version="1.1.1"; sha256="1pmgxvww24mcgrvv87axqvw457r5wl57scqy93inmzia2mgyva1p"; depends=[spatstat]; }; +smacof = derive { name="smacof"; version="1.7-0"; sha256="0fs7k8nn9dsw3nx10gjlmpfn76rdwmydyx65zvd6li65991i7yap"; depends=[colorspace Hmisc nnls polynom]; }; +smacpod = derive { name="smacpod"; version="1.4.1"; sha256="17f28nax92nkfgs972gqcjnnz6sw4p8n36rrhx00dy19vr569kp5"; depends=[plotrix SpatialTools spatstat]; }; smam = derive { name="smam"; version="0.2-2"; sha256="1p6bzk4b9kpmfs4nxmcgc46hgdpldqg0pzpc0zhvs187z2nrfw75"; depends=[Matrix]; }; smart = derive { name="smart"; version="1.0.1"; sha256="0ki3qn71zrw0nyv395qijcwahnxyv1p21j8x6cxr9spah2wzz8lb"; depends=[elasticnet gplots gtools igraph Matrix pcaPP PMA]; }; smatr = derive { name="smatr"; version="3.4-3"; sha256="0iiazln4albj7k5w67slvyn98cqg4f6k409mml0n1pvlkki0h7gy"; depends=[plyr]; }; smbinning = derive { name="smbinning"; version="0.2"; sha256="1zps1gdn5s7ynbkxmxp5s3xvzixdkcrfyvz5qrv77s4825lkj57x"; depends=[Formula gsubfn partykit sqldf]; }; smcUtils = derive { name="smcUtils"; version="0.2.2"; sha256="0d1kmg386j0zrpp8vgxjwvpf1i25l86xrh82767xkp0n9qj8srwq"; depends=[]; }; -smcfcs = derive { name="smcfcs"; version="1.0.0"; sha256="04r8a2p8549pq8yl92ajj893w1rj03s14q6dv14vp0873zrxkxza"; depends=[MASS survival VGAM]; }; +smcfcs = derive { name="smcfcs"; version="1.1.0"; sha256="1mrs627v2jd4lp1avqq492f3z87xlh83d4r9kv1arhrjq601qkbk"; depends=[MASS survival VGAM]; }; smco = derive { name="smco"; version="0.1"; sha256="1sj3y1x6pc32cwzyhn9gaxs964xh5xl4vw08hsa8kfcxhh2r0s99"; depends=[]; }; smcure = derive { name="smcure"; version="2.0"; sha256="1j7fxnb0sx57a0l929c3haz4f1y829ymlq0cvdh0cia4qp6ydv60"; depends=[survival]; }; smdata = derive { name="smdata"; version="1.1"; sha256="1hcr093xfkp88fn75imjkmfnp9cfsng5ndxpa8m2g0l29qhpxfvk"; depends=[]; }; @@ -6267,12 +6512,12 @@ smoothmest = derive { name="smoothmest"; version="0.1-2"; sha256="14cri1b6ha8w4h smoothtail = derive { name="smoothtail"; version="2.0.4"; sha256="0wbz9r9a7a3pjkdrsxhkjfm2qrbz4jrpsx4s1vm3kz7czkh55yg7"; depends=[logcondens]; }; sms = derive { name="sms"; version="2.3"; sha256="0grxyp590hj2rvw1fw3yidzkl8nqqp5a14bp9xfpdph2nyas61qq"; depends=[doParallel foreach]; }; smss = derive { name="smss"; version="1.0-1"; sha256="17a0x92hxzn212yiz87n7ssyi3bdhnyawxk1kkmk46q1ss22a1pm"; depends=[]; }; -sn = derive { name="sn"; version="1.2-3"; sha256="0m3177c5jcf3avzmjc2aqrv0s5sdczj2n4xm39rhss1kxpcwxy0s"; depends=[mnormt numDeriv]; }; +sn = derive { name="sn"; version="1.2-4"; sha256="1dkzccl9787jzyqr1lqhlw38rh16an7qnp2fvv4xpv6imdagf4m8"; depends=[mnormt numDeriv]; }; sna = derive { name="sna"; version="2.3-2"; sha256="1dmdv1bi22gg4qdrjkdzdc51qsbb2bg4hn47b50lxnrywdj1b5jy"; depends=[]; }; snapshot = derive { name="snapshot"; version="0.1.2"; sha256="0cif1ybxxjpyp3spnh98qpyw1i5sgi1jlafcbcldbqhsdzfz4q10"; depends=[]; }; snht = derive { name="snht"; version="1.0.2"; sha256="1rs9q8fmvz3x21ymbmgmgkqr7hqf3ya3xb33zj31px799jlldpb9"; depends=[ggplot2 gridExtra mgcv plyr reshape zoo]; }; snipEM = derive { name="snipEM"; version="1.0"; sha256="0f98c3ycl0g0l3sgjgk7xrjp6ss7n8zzlyzvpcb6agc60cnw3w03"; depends=[GSE MASS mvtnorm Rcpp RcppArmadillo]; }; -snn = derive { name="snn"; version="1.0"; sha256="0pln5kxm7sqwp6zj158lyrkn49p8v26wkqpsxzin5hk5rxjz0jmf"; depends=[]; }; +snn = derive { name="snn"; version="1.1"; sha256="0yywn3v1iz9xizwli3gmzprkx66b5a813mbp8hq2vsj8n4lfj8r5"; depends=[]; }; snow = derive { name="snow"; version="0.3-13"; sha256="1habq43ncac9609xky3nqfkbq52cz36dg8jbdihag269z1kazdnf"; depends=[]; }; snowFT = derive { name="snowFT"; version="1.4-0"; sha256="0gw2kn80jh1a6sg6ni9kj6ikvyq29c9dmx52k9m6gzcfpa7l0qbk"; depends=[rlecuyer snow]; }; snowfall = derive { name="snowfall"; version="1.84-6"; sha256="1n9v9m4c02pspgkxfmq7zdk41s2vjcsk06b0kz9km4xy1x7k0hsg"; depends=[snow]; }; @@ -6281,9 +6526,9 @@ snpEnrichment = derive { name="snpEnrichment"; version="1.6.3"; sha256="0hg1cgyr snpRF = derive { name="snpRF"; version="0.4"; sha256="1amxc4jprrc6n5w5h9jm2as025gqdqkla2asz7x97sjdnnj9kzzn"; depends=[]; }; snpStatsWriter = derive { name="snpStatsWriter"; version="1.5-6"; sha256="04qhng888yih8gc7yd6rrxvvqf98x3c2xxz22gkwqx59waqd4jlq"; depends=[colorspace snpStats]; }; snpar = derive { name="snpar"; version="1.0"; sha256="0c9myg748jm7khqs8yhg2glxgar1wcf6gyg0xwbmw0qc41myzfnq"; depends=[]; }; -snplist = derive { name="snplist"; version="0.13"; sha256="1v9n3gdvygx4s6hlm0ijyw04szxwn9c1dqnhaqn61a8yfkmmnxn8"; depends=[biomaRt DBI R_utils Rcpp RSQLite]; }; +snplist = derive { name="snplist"; version="0.14"; sha256="0xv76ws8dgcjbl7prks6rfrhjqz0l8dd06jj74ndvlpil97y0n7y"; depends=[biomaRt DBI R_utils Rcpp RSQLite]; }; sns = derive { name="sns"; version="1.1.0"; sha256="1pppf1h39kv8jjngkcrq091ldzz3knjgcn81gfg7y54yndb2mapr"; depends=[coda mvtnorm numDeriv]; }; -soc_ca = derive { name="soc.ca"; version="0.7.1"; sha256="0lg1bpbd0crywa29xc79cn3kr614wq4hr09xpwk17nv7q8qw8cnh"; depends=[ellipse ggplot2 gridExtra scales]; }; +soc_ca = derive { name="soc.ca"; version="0.7.2"; sha256="0vzdfh51kq0ry49bh2cv9sjbkv957inwwi9isf2mgd8mk8ks7z70"; depends=[ellipse ggplot2 gridExtra scales]; }; softImpute = derive { name="softImpute"; version="1.4"; sha256="07cxbzkl08q58m1455i139952rmryjlic4s2f2hscl5zxxmfdxcq"; depends=[Matrix]; }; softclassval = derive { name="softclassval"; version="1.0-20150416"; sha256="1zrf0nmyy4pfs4dzardghzznw1ahl21w4nykfh2pp8il4dpi21fs"; depends=[arrayhelpers svUnit]; }; soil_spec = derive { name="soil.spec"; version="2.1.4"; sha256="129iqr6fdvlchq56jmy34s6qc2j5fcfir6pa5as5prw0djyvbdv0"; depends=[GSIF hexView KernSmooth pls sp wavelets]; }; @@ -6294,7 +6539,8 @@ soiltexture = derive { name="soiltexture"; version="1.3.3"; sha256="1a0j10f6mxwr soilwater = derive { name="soilwater"; version="1.0.2"; sha256="0rkyh7rcaapp1bxih88ivbaqnrig9jy32694jbg8z04b115hmdpm"; depends=[]; }; solaR = derive { name="solaR"; version="0.41"; sha256="003f8dka0jqlfshzc3d4z9frq5jb5nq6sw3sm44x7rj79w3ynpyg"; depends=[lattice latticeExtra RColorBrewer zoo]; }; solarius = derive { name="solarius"; version="0.2.3"; sha256="164va71v77b0lyhccgrb47idhi7dlgyyw1vbs2iqci77ld6x50yl"; depends=[data_table ggplot2 plyr]; }; -solr = derive { name="solr"; version="0.1.4"; sha256="0b1f6mf8fi2ql8j06b0mkk7nyy5wj1zsg46lfxi6bp8n4ywbym9n"; depends=[assertthat httr plyr rjson XML]; }; +solidearthtide = derive { name="solidearthtide"; version="1.0.2"; sha256="0274f7vyjymx6hd7ik68hznip57ni4cxp1bw7z91v1jzp3ch17rv"; depends=[]; }; +solr = derive { name="solr"; version="0.1.6"; sha256="0hlysi1yw4l98dcb1shznzrgia9pqzfj0p1hmnfz5gz2j64lf4h4"; depends=[assertthat httr plyr rjson XML]; }; som = derive { name="som"; version="0.3-5"; sha256="01xsysmqj0zhzifqpwcrs0mflh56ndv4q3nm5n5imx7wmzx2lrzp"; depends=[]; }; soma = derive { name="soma"; version="1.1.1"; sha256="1mc1yr9sq9h2z60v40aqmil0xswj5hgxfdh4racq297qw3a97my4"; depends=[reportr]; }; someKfwer = derive { name="someKfwer"; version="1.2"; sha256="0widny5l04ja91fy16x4giwrabwqhx0fs3yl48pv9xh4zj6sx563"; depends=[]; }; @@ -6310,15 +6556,15 @@ sos4R = derive { name="sos4R"; version="0.2-11"; sha256="0r4lficx8wr0bsd510z4cp6 sotkanet = derive { name="sotkanet"; version="0.9.14"; sha256="11yly63kda8qrj0hkbd5y4zclvqazjvg2cv1a2g83sskd15zxxgj"; depends=[RCurl rjson]; }; soundecology = derive { name="soundecology"; version="1.3"; sha256="1kcmsas359xcwqd0lxffr5p996jikqdag6idibq57qb6rnz3hgfz"; depends=[ineq oce pracma seewave tuneR vegan]; }; source_gist = derive { name="source.gist"; version="1.0.0"; sha256="03bv0l4ccz9p41cjw18wlz081vbjxzfgq3imlhq3pgy9jdwcd8fp"; depends=[RCurl rjson]; }; -sp = derive { name="sp"; version="1.1-1"; sha256="1485jylvwbf99snbmp0xs13h5wlvfgwf04cbny4zgn43nipsvsik"; depends=[lattice]; }; +sp = derive { name="sp"; version="1.2-0"; sha256="000q506265zdsqs3d7rwls7wahxhpjd60z3igi18qqif236xd54j"; depends=[lattice]; }; sp23design = derive { name="sp23design"; version="0.9"; sha256="1ihvcld19cxflq2h93m9k9yaidhwixvbn46fqqc1p3wxzplmh8bs"; depends=[mvtnorm survival]; }; spBayes = derive { name="spBayes"; version="0.3-9"; sha256="1zdyz5jqbixwj59q9f1x8f3knz0jwdfl0abj0w6cxrllkb38yg10"; depends=[abind coda Formula magic]; }; -spBayesSurv = derive { name="spBayesSurv"; version="1.0.2"; sha256="0pxndjksrd22p60pvc4czxwqhrpx5ik0yr23nz7kmg6wnp36hc6w"; depends=[coda Rcpp RcppArmadillo survival]; }; +spBayesSurv = derive { name="spBayesSurv"; version="1.0.3"; sha256="1vglfqqk4pg8kc6jnnw7br2lvwmz7szcpfqms95ij3bmawhazhrw"; depends=[coda Rcpp RcppArmadillo survival]; }; spMC = derive { name="spMC"; version="0.3.6"; sha256="0h71m55jmv80kx5ccsrpsakrh4qw5f3kx2qizwi10jlybwggqv0m"; depends=[]; }; spTDyn = derive { name="spTDyn"; version="1.0"; sha256="0yrnbf9g1n1hrrra2vp6412wfky1bhy3b6raif9k82xvi9p9m6pz"; depends=[coda sp]; }; -spTest = derive { name="spTest"; version="0.1.1"; sha256="0bzj5vmb4bwqi8f75f21pwrdi1n4zgq7xandh3dzsq2dahnrmhzh"; depends=[]; }; +spTest = derive { name="spTest"; version="0.2.2"; sha256="026ciw1nq5jr3ji40ys3qxyifllg2fa1hmcvcdzn61f4paax78l0"; depends=[fields]; }; spThin = derive { name="spThin"; version="0.1.0"; sha256="06qbk0qiaw7ly1ywbr4cnkmqfasymr7gbhvq8jjbljm0l69fgjpp"; depends=[fields knitr spam]; }; -spTimer = derive { name="spTimer"; version="2.0-0"; sha256="0ldby68p4y5cz5dj2m33jcbgd3mw9nv0py4llg8aj10bxylarmfv"; depends=[coda sp]; }; +spTimer = derive { name="spTimer"; version="2.0-1"; sha256="15yrbxx44cqphhr71b5hiimwwjiwwpzny16xjb87nn2lc4mb53by"; depends=[coda sp]; }; spa = derive { name="spa"; version="2.0"; sha256="1np50qiiy3481xs8w0xfmyfl3aypikl1i1w8aa5n2qr16ksxrnq3"; depends=[cluster MASS]; }; spaMM = derive { name="spaMM"; version="1.5.1"; sha256="1sv5ndg7jmyivwkj7y7i4da862qb8p3z7m83vmbphwbykpl7jfs5"; depends=[geometry lpSolveAPI MASS Matrix nlme proxy Rcpp RcppEigen]; }; spaa = derive { name="spaa"; version="0.2.1"; sha256="0qlfbfvv97avbnixm5dz9il3dmd40wnpvv33jh7fa0mh740bircy"; depends=[]; }; @@ -6328,7 +6574,7 @@ spacejam = derive { name="spacejam"; version="1.1"; sha256="1mdxmfa1aifh3h279ckl spacetime = derive { name="spacetime"; version="1.1-4"; sha256="1amxdjjqxibllwnb70chqmfnn66n95yf0wjmbrkjnzjszhbb25q2"; depends=[intervals lattice sp xts zoo]; }; spacodiR = derive { name="spacodiR"; version="0.13.0115"; sha256="0c0grrvillpwjzv6fixviizq9l33y7486ypxniwg7i5j6k36nkpl"; depends=[colorspace picante Rcpp]; }; spacom = derive { name="spacom"; version="1.0-4"; sha256="1jfsbgy7b0mwl4n2pgrkkghx9p8b0wipvg4c5jar6v8ydby6qg94"; depends=[foreach iterators lme4 Matrix nlme spdep]; }; -spam = derive { name="spam"; version="1.0-1"; sha256="033s5ka05kg97fmc3l1li3z6x5225rwhrdxh57wwn4axrjwy1nyy"; depends=[]; }; +spam = derive { name="spam"; version="1.2-1"; sha256="1jkdfwvlxap1q3w42zwzic6l13rh5kzvb9js8nzywibr8kk8wx4s"; depends=[]; }; spanel = derive { name="spanel"; version="0.1"; sha256="1riyvvfij277mclgik41gyi01qv0k466wyk2wbqqhlvrlj79yzsc"; depends=[]; }; spanr = derive { name="spanr"; version="1.0"; sha256="1x29hky347kvmk9q75884vf6msgcmfi3w4lyarq99aasi442n1ps"; depends=[plyr stringr survival]; }; sparc = derive { name="sparc"; version="0.9.0"; sha256="0jsirrkmvrfxav9sphk8a4n52fg0d1vnk3i8m804i4xl0s7lrg8s"; depends=[]; }; @@ -6337,7 +6583,7 @@ spareserver = derive { name="spareserver"; version="1.0.1"; sha256="094q5i6v4v37 spark = derive { name="spark"; version="1.0.1"; sha256="03viih0r7bpv6zkm5ckk0c99lf2iv0fkgrzkbs1gg7ki9qyxji8c"; depends=[magrittr]; }; sparkTable = derive { name="sparkTable"; version="1.0.0"; sha256="1d5vv7whayblq5g4pjrngkqf3d1pi4f0gibnskllv7rdad10n4nd"; depends=[boot Cairo ggplot2 gridExtra pixmap Rglpk RGraphics shiny StatMatch xtable]; }; sparktex = derive { name="sparktex"; version="0.1"; sha256="0r6jnn9fj166pdhnjbsaqmfmnkq0qr1cjprihlnln9jad05mrkjx"; depends=[]; }; -sparr = derive { name="sparr"; version="0.3-6"; sha256="1imgph2bf575rm06l4vsz0nhizkrwa3p5j6b6gdn30l0hlhxjp0j"; depends=[MASS rgl spatstat]; }; +sparr = derive { name="sparr"; version="0.3-7"; sha256="1q1lc4yhdvhvwh5v3cw90p47v5mw2r13brfz6paz9qg0bhd015lg"; depends=[MASS rgl spatstat]; }; sparseBC = derive { name="sparseBC"; version="1.1"; sha256="1w60n2875n809lbrn0hd4kdmsyfd64aikgzxchza8b59x77l0psy"; depends=[fields glasso]; }; sparseHessianFD = derive { name="sparseHessianFD"; version="0.2.0"; sha256="1sj9d2d8bfjd00jr682gj21d4y0hjm91l3hj7356fpq461nb9pl8"; depends=[Matrix Rcpp RcppEigen]; }; sparseLDA = derive { name="sparseLDA"; version="0.1-6"; sha256="0k9v2pjx4q4nhvpjhv496v4gfr5h19w0h2h7za7j6zqfn6aygvz6"; depends=[elasticnet lars MASS mda]; }; @@ -6351,20 +6597,20 @@ spartan = derive { name="spartan"; version="2.2.1"; sha256="1syrvx3gmgsi3f49j27z spatcounts = derive { name="spatcounts"; version="1.1"; sha256="0rp8054aiwc62r1m3l4v5dh3cavbs5h2yb01453bw9rwis1pj2qm"; depends=[]; }; spate = derive { name="spate"; version="1.4"; sha256="1cr63qm3hgz6viw6ynzjv7q5ckfsan7zhbp224gz4cgx5yjg0pn3"; depends=[mvtnorm truncnorm]; }; spatgraphs = derive { name="spatgraphs"; version="2.62"; sha256="1h7sv6qc5zhaiaqlrzagrlc2mxlasdzilmi5q9nrd1vsdzsqxvb4"; depends=[]; }; -spatial = derive { name="spatial"; version="7.3-10"; sha256="0jcx476b7jpl16aqixr3h10sp0n9bwrk5jf2xgyd9sdifiba1xzk"; depends=[]; }; +spatial = derive { name="spatial"; version="7.3-11"; sha256="04aw8j533sn63ybyrf4hyhrqm4058vfcb7yhjy07kq92mk94hi32"; depends=[]; }; spatial_gev_bma = derive { name="spatial.gev.bma"; version="1.0"; sha256="1rjn0gsbgiv69brhnm0zj25ya3nyfh4yf6jizng85mvss3viv3hj"; depends=[coda msm SpatialExtremes]; }; spatial_tools = derive { name="spatial.tools"; version="1.4.8"; sha256="0qnsjfx974na87p3n7sp711sc13v6dmpvb2kjpvscixs8rsy03y1"; depends=[abind doParallel foreach iterators mmap raster rgdal]; }; spatialCovariance = derive { name="spatialCovariance"; version="0.6-9"; sha256="1m86s9a059spp97y37dcirrgjshcqzpdj11cq92vji624w4nrhlb"; depends=[]; }; spatialEco = derive { name="spatialEco"; version="0.1-1"; sha256="1k7xdgg541mwr9rk3h8pi7hgb61wza14azvmbxqd92m29p2yqn00"; depends=[cluster RANN raster RCurl rgeos rms SDMTools sp spatstat spdep]; }; spatialTailDep = derive { name="spatialTailDep"; version="1.0.2"; sha256="107yldc43pgbadxdisnc7vq8vyvcps1b1isyvxd0kyf59xldiq47"; depends=[cubature mvtnorm SpatialExtremes]; }; +spatialfil = derive { name="spatialfil"; version="0.15"; sha256="01fbn9zblz7rjsgqy3ikdqpf0p0idvb6m96mf7m7qi2ps5f48vzj"; depends=[abind fields]; }; spatialkernel = derive { name="spatialkernel"; version="0.4-19"; sha256="0gbl6lrbaxzv2f975k0vd6ghrljgf1kjazld3hm7781kv1f87lji"; depends=[]; }; spatialnbda = derive { name="spatialnbda"; version="1.0"; sha256="14mx5jybymasyia752f3vnr5vmswcavbz8bpqr69vlxphw27qkwk"; depends=[mvtnorm SocialNetworks]; }; -spatialprobit = derive { name="spatialprobit"; version="0.9-10"; sha256="1z88nss69pixazqk3b6rpyc7mjryfznrgw9swfyfxky0bsdfj6mv"; depends=[Matrix mvtnorm spdep tmvtnorm]; }; +spatialprobit = derive { name="spatialprobit"; version="0.9-11"; sha256="1cpxxylc0pm7h9m83m2cklrh4jni5x79r5m5gibxi6viahwxn9kc"; depends=[Matrix mvtnorm spdep tmvtnorm]; }; spatialsegregation = derive { name="spatialsegregation"; version="2.40"; sha256="0kpna2198nrj93bjsdgvj85wnjfj18psdq919fjnnhbzgzdkxs7l"; depends=[spatstat]; }; spatstat = derive { name="spatstat"; version="1.42-2"; sha256="1wsdxl711p4vhaz69if1whjfrj81xkr6d2piw5hz0l04c6dcbac9"; depends=[abind deldir goftest Matrix mgcv polyclip tensor]; }; spatsurv = derive { name="spatsurv"; version="0.9-10"; sha256="0hfdmp206rw6lgdlmkasl7l1hq1avwnp726cw2fzhrbp88a1s2jm"; depends=[fields geostatsp iterators Matrix OpenStreetMap RandomFields raster RColorBrewer rgeos rgl sp spatstat stringr survival]; }; spc = derive { name="spc"; version="0.5.1"; sha256="1299lhk8snrhm7xpq0ccmq5kmpapc13rxcyvljs4c7frj645rwz4"; depends=[]; }; -spca = derive { name="spca"; version="0.6.0"; sha256="156bz3w3999vhjpsa9cs21rf2r9hv49vw1pfak0r37kbvf2d4rm6"; depends=[MASS]; }; spcadjust = derive { name="spcadjust"; version="0.9"; sha256="05w32bznv6s5jwwv4l1392zng6ia36205j88d0i6l9hcbp2g599a"; depends=[]; }; spcosa = derive { name="spcosa"; version="0.3-5"; sha256="15q0f2sfhm1b13zs5a50yfvqhgcn4fyncf0h5ivin2k9g5xvq4k4"; depends=[ggplot2 rJava sp]; }; spcov = derive { name="spcov"; version="1.01"; sha256="1brmy64wbk56bwz9va7mc86a0ajbfy09qpjafyq2jv7gm7a35ph5"; depends=[]; }; @@ -6372,7 +6618,7 @@ spcr = derive { name="spcr"; version="1.2.1"; sha256="0cm59cfw3c24i1br08fdzsz426 spd = derive { name="spd"; version="2.0-1"; sha256="00zxh4ri47b61jkcjf5idl9hhlfld6rhczsnhmjsax59884f2i8m"; depends=[KernSmooth]; }; spdep = derive { name="spdep"; version="0.5-88"; sha256="1m2bxbf472xq7wr76znjirslx3hb1ylk6lp7x5003ka3i2zpakxn"; depends=[boot coda deldir LearnBayes MASS Matrix nlme sp]; }; spduration = derive { name="spduration"; version="0.13.1"; sha256="13z7ykrb84smnjhabq6h7mxva16r44hx9c6kgjy91xypz1ynk26f"; depends=[corpcor MASS plyr Rcpp RcppArmadillo separationplot xtable]; }; -spdynmod = derive { name="spdynmod"; version="1.1"; sha256="09lc8gyp9nw3w1vcid19q064plga7v99h8nfmg57i76dpny3s9ys"; depends=[animation deSolve raster]; }; +spdynmod = derive { name="spdynmod"; version="1.1.1"; sha256="05vv1ryagl9j66w351bi8f0q5sp3a369wdp3blr20fcpb8hd0r17"; depends=[animation deSolve raster]; }; spe = derive { name="spe"; version="1.1.2"; sha256="0xyx42n3gcsgqmy80nc9la6p6gq07anpzx0afwffyx9fv20fvys0"; depends=[]; }; speaq = derive { name="speaq"; version="1.2.1"; sha256="0glvw1jdyc8w8b8m7l74d0rl74xfs4zmanmx4i41l7ynswhmqm01"; depends=[MassSpecWavelet]; }; speccalt = derive { name="speccalt"; version="0.1.1"; sha256="0j7rbidmmx78vgwsqvqjbjjh92fnkf2sdx0q79xlpjl2dph7d6l6"; depends=[]; }; @@ -6380,14 +6626,14 @@ speciesgeocodeR = derive { name="speciesgeocodeR"; version="1.0-3"; sha256="0iyl specificity = derive { name="specificity"; version="0.1.1"; sha256="1gvlyx9crkzm3yyp1ln5j9czcg83k7grm6ijabhl919gjjr1p60n"; depends=[car]; }; spectral_methods = derive { name="spectral.methods"; version="0.7.2.133"; sha256="0k8kpk94d2qzqdk3fnf6h9jmwdyp8h3klr0ilm5siwq5wkcz339l"; depends=[abind DistributionUtils foreach JBTools ncdf_tools nnet raster RColorBrewer RNetCDF Rssa]; }; spectralGP = derive { name="spectralGP"; version="1.3.3"; sha256="1jf09nsil4r90vdj7n1k6ma9dzzx3bwv0fa7svil9pxrd2zlbkbs"; depends=[]; }; -speedglm = derive { name="speedglm"; version="0.3"; sha256="07pq0ymg7x9c9pq79d476slca43jv4682iackd446glw2qffac1y"; depends=[MASS Matrix]; }; +speedglm = derive { name="speedglm"; version="0.3-1"; sha256="0zkzy17fjxcchh48dapjf856vn3la7sx1ki4v1w8cwapz634wz2j"; depends=[MASS Matrix]; }; speff2trial = derive { name="speff2trial"; version="1.0.4"; sha256="0dj5mh2sdp6j4ijgv14hjr39rasab8g83lx1d9y50av11yhbf2pw"; depends=[leaps survival]; }; sperich = derive { name="sperich"; version="1.5-7"; sha256="1apgq5nsl6nw674dy7bc7r7z962wcmqsia5n67a8n6c5lcgcif3f"; depends=[foreach rgdal SDMTools sp]; }; sperrorest = derive { name="sperrorest"; version="0.2-1"; sha256="17jq8r98pq3hsyiinxg30lddxwpwi696srsvm3lfxrzk11076j6v"; depends=[ROCR rpart]; }; spfrontier = derive { name="spfrontier"; version="0.1.12"; sha256="1jy1604gppis7vbn55pv13bywy1aqwzshwj03bbfln0qxikzqzi0"; depends=[ezsim maxLik moments mvtnorm spdep tmvtnorm]; }; -spgrass6 = derive { name="spgrass6"; version="0.8-6"; sha256="0vpv2vycd6rdnwm1f73733x1nclhr2x4x1s5116szskni77b0pii"; depends=[sp XML]; }; +spgrass6 = derive { name="spgrass6"; version="0.8-8"; sha256="16zsd4y4y6ksa40pgj97vmy51894z5pdaldbmdfydrb8b7c6ypzp"; depends=[sp XML]; }; spgs = derive { name="spgs"; version="1.0"; sha256="1f75dvp6m5w5phg158ykvl4myvw6q4vysb2pc3bgm0f9fpcadfip"; depends=[]; }; -spgwr = derive { name="spgwr"; version="0.6-26"; sha256="02kwpg927r2d2zrnhb5cjp1p8j0pal344hzvzsl4d0hz0xcipp8f"; depends=[sp]; }; +spgwr = derive { name="spgwr"; version="0.6-28"; sha256="1gwyfwsz9n7bz0n6sp6qd8qcl23r2i2kb38csxsh3pkrinnxy181"; depends=[sp]; }; sphereplot = derive { name="sphereplot"; version="1.5"; sha256="1i1p20h95cgw5wqp9bwfs9nygm4dxzsggz08ncjs1xrsvhhq9air"; depends=[rgl]; }; sphet = derive { name="sphet"; version="1.6"; sha256="0149wkak7lp2hj69d83rn05fzh9bsvyc1kyg0d3b69sx92kqlwr0"; depends=[Matrix nlme sp spdep]; }; spi = derive { name="spi"; version="1.1"; sha256="0gc504f7sji5x0kmsidnwfm7l5g4b1asl3jkn2jzsf2nvjnplx1z"; depends=[]; }; @@ -6395,7 +6641,8 @@ spider = derive { name="spider"; version="1.3-0"; sha256="1p6f8mlm055xq3qwa4bqn9 spiders = derive { name="spiders"; version="1.0"; sha256="1n3ym9vc3vzjzm35z29sz4mz8sa25r761y0ph45srhq0lv7c66w6"; depends=[plyr]; }; spikeSlabGAM = derive { name="spikeSlabGAM"; version="1.1-9"; sha256="04xlin61hfq9j9q4wvpkzmc189cpq4jp5cdn3kz64skzlsc5yj2z"; depends=[akima cluster coda ggplot2 gridExtra MASS MCMCpack mvtnorm R2WinBUGS reshape scales]; }; spikeslab = derive { name="spikeslab"; version="1.1.5"; sha256="0dzkipbrpwki6fyk4hqlql3yhadwmclgbrx00bxahrmlaz1vjzh2"; depends=[lars randomForest]; }; -splancs = derive { name="splancs"; version="2.01-37"; sha256="0q548i76107laa9yrsjxqvwhl8zyhlib557qqr8aa7kjg6j0p5fn"; depends=[sp]; }; +spinyReg = derive { name="spinyReg"; version="0.1-0"; sha256="0kbg7rncrrl5xdsaw9vj909x97mfp77mjnvghczplmnwmmanyn72"; depends=[]; }; +splancs = derive { name="splancs"; version="2.01-38"; sha256="12x68i5yjq9526rsf2awp97yg19izkhcc8iha0ys65bmhzjc5hwf"; depends=[sp]; }; splitstackshape = derive { name="splitstackshape"; version="1.4.2"; sha256="0m9karfh0pcy0jj3dzq87vybxv9gmcrq5m2k7byxpki95apbrsmg"; depends=[data_table]; }; splm = derive { name="splm"; version="1.3-7"; sha256="1bfi80vg129v8d0vp7sigbhskl227lmbry1vmklvcczrjqf2bh45"; depends=[bdsmatrix ibdreg MASS Matrix maxLik nlme plm spam spdep]; }; spls = derive { name="spls"; version="2.2-1"; sha256="0zgk9qd825zqgikpkg13jm8hi6ncg48qw5f985bi145nwy9j19xs"; depends=[MASS nnet pls]; }; @@ -6403,7 +6650,7 @@ splus2R = derive { name="splus2R"; version="1.2-0"; sha256="0kmyr1azyh0m518kzwvv splusTimeDate = derive { name="splusTimeDate"; version="2.5.0-135"; sha256="0hghggdcr70vfjx4npj37nmd96qvgrp1gpwa9bznvjkvyfawwy6i"; depends=[]; }; splusTimeSeries = derive { name="splusTimeSeries"; version="1.5.0-73"; sha256="1csk0ffgg1bi2k1m2bbxl6aqqqxf6i8sc8d4azip8ck7rn8vya46"; depends=[splusTimeDate]; }; spnet = derive { name="spnet"; version="0.9.0.6"; sha256="1kbf53ww2wdr2nsml9zhzd80dhi48izw1nwjszv9jqidd6nk7v29"; depends=[shape sp]; }; -spocc = derive { name="spocc"; version="0.3.0"; sha256="110rd0blr5s8rnw0z5hwyg60xf22dr0jnb0c8qyywhf2q9xy6vln"; depends=[AntWeb ecoengine httr jsonlite lubridate rbison rebird rgbif rvertnet V8 whisker]; }; +spocc = derive { name="spocc"; version="0.3.2"; sha256="1bsl7z9cvqq2ds4w520dq6aa96phr3yh3sg7c4kfwfsg57fykg2x"; depends=[AntWeb ecoengine httr jsonlite lubridate rbison rebird rgbif ridigbio rvertnet V8 whisker]; }; spoccutils = derive { name="spoccutils"; version="0.1.0"; sha256="1al7hydwwzqd8ky91ggklf7lk42g79cx24i47gapd84jnwmmkq56"; depends=[ggmap ggplot2 gistr httr leafletR RColorBrewer rworldmap sp spocc]; }; sporm = derive { name="sporm"; version="1.1"; sha256="07sxz62h4jb7xlqg08sj4wpx121n9jfk65196mnxdvb36lqmb4hp"; depends=[]; }; sprex = derive { name="sprex"; version="1.1"; sha256="1lwkdi8g1dlfdnxxvspgpz6f5h2gml176xhfrcxa9gcy3y9rlcpm"; depends=[]; }; @@ -6412,6 +6659,7 @@ sprinter = derive { name="sprinter"; version="1.1.0"; sha256="12v4l4fxijh2d46yzs sprm = derive { name="sprm"; version="1.1"; sha256="0xnbdnzgf54r93bvnyjcdcqlr0q7s7f2cvayw681zi0ig3z633j0"; depends=[cvTools ggplot2 pcaPP reshape2]; }; sprsmdl = derive { name="sprsmdl"; version="0.1-0"; sha256="09klwsjp5w6p7dkn5ddmqp7m9a3zcmpr9vhcf00ynwyp1w7d26gi"; depends=[]; }; spsann = derive { name="spsann"; version="1.0.1"; sha256="0hdanihvcwmqsjsc2hinxwdmkkxyvv8qa9sp25mb9vf8ky3w4msm"; depends=[pedometrics Rcpp sp SpatialTools]; }; +spsi = derive { name="spsi"; version="0.1"; sha256="0q995hdp7knic6nca0kf5yzkvv8rsskisbzpkh9pijxjmp1wnjrx"; depends=[plot3D]; }; spsmooth = derive { name="spsmooth"; version="1.1-3"; sha256="09b740586zyi8npq0bmy8qifs9rq0rzhs9c300fr6pjpc7134xn4"; depends=[mgcv]; }; spsurvey = derive { name="spsurvey"; version="3.0"; sha256="15i10a6hhk1wwnyd4lbrqaql8i4s10302bxmpr0s5cyifs084l77"; depends=[deldir foreign MASS rgeos sp]; }; spt = derive { name="spt"; version="1.13-8-8"; sha256="18s74pxfmsjaj92z2a34nq90caf61s84c616yv33a0xvfvp32qr5"; depends=[]; }; @@ -6458,7 +6706,7 @@ stationaRy = derive { name="stationaRy"; version="0.3"; sha256="151hsda3j8ii40v5 statmod = derive { name="statmod"; version="1.4.21"; sha256="138lh9qa25w6vaksbq43iqisj4c8hvmkjc3q81fn7m8b7zlnz6da"; depends=[]; }; statnet = derive { name="statnet"; version="2015.6.2"; sha256="0dvkiz7i5ljnbs6qxz4a2v4rqynn2fi4wy4vd1hqhf4kpkj0amna"; depends=[ergm ergm_count network networkDynamic sna statnet_common tergm]; }; statnet_common = derive { name="statnet.common"; version="3.2.3"; sha256="0z1nnav5kfjj5a54c7l8fingi3f4cm0nhlyyrwabxg98rydwxldm"; depends=[]; }; -statnetWeb = derive { name="statnetWeb"; version="0.3.4"; sha256="1nkis4l6yzpjcwxryskqfjgc2naxplzjc3gpp6xvpl0pcvw9mdk7"; depends=[ergm network RColorBrewer shiny sna]; }; +statnetWeb = derive { name="statnetWeb"; version="0.3.6"; sha256="1wpjj39bpbc2qzyhiszz2zsanx7lq2jqc3wd7g6f1fydzww89dqs"; depends=[ergm network RColorBrewer shiny sna]; }; stcm = derive { name="stcm"; version="0.1.1"; sha256="05p0lp0p1mgcsf3mi3qgx42pgpv04m5wfmqa14gp63ialkl9pgx5"; depends=[caret dendextend ggplot2 magrittr plyr QCA randomForest XML]; }; steepness = derive { name="steepness"; version="0.2-2"; sha256="0bw7wm7n2xspkmj90qsjfssnig683s3qwg1ndkq2aw3f6clh4ilm"; depends=[]; }; stellaR = derive { name="stellaR"; version="0.3-3"; sha256="098sz6b8pl3fyca3g6myp97nna368xhxf8krmibadnnsr49q5zs9"; depends=[]; }; @@ -6473,7 +6721,7 @@ stinepack = derive { name="stinepack"; version="1.3"; sha256="0kjpcjqkwndqs7cyc6 stm = derive { name="stm"; version="1.1.0"; sha256="0j1mgi584b28g3c0ai56fr1gks1kbd0s18xl7jbxndfiprk8q8f4"; depends=[glmnet lda Matrix matrixStats Rcpp RcppArmadillo slam stringr]; }; stmBrowser = derive { name="stmBrowser"; version="1.0"; sha256="0jfh0c835a2sxn2cqlmwdlzj2g2dmkfl2z3pkv4fc1ajggw2n7g2"; depends=[httr jsonlite rjson stm]; }; stmCorrViz = derive { name="stmCorrViz"; version="1.2"; sha256="0mhwl64hv4hjq72mqnvc5ii94aibmc0fw5rmdrvsad4bj6gg67p3"; depends=[jsonlite stm]; }; -stocc = derive { name="stocc"; version="1.23"; sha256="183rv1l1hpa691f3xf455bv8dzdw6ac79zg3v99zksli6i7c8jdz"; depends=[coda fields Matrix truncnorm]; }; +stocc = derive { name="stocc"; version="1.30"; sha256="0xpf9101094l5l75p9lr64gwh2b8jh4saw6z6m2nbn197la3acpw"; depends=[coda fields Matrix rARPACK truncnorm]; }; stochprofML = derive { name="stochprofML"; version="1.2"; sha256="0gqfm2l2hq1dy3cvg9v2ksphydqdmaj8lppl5s5as2khnh6bd1l1"; depends=[MASS numDeriv]; }; stochvol = derive { name="stochvol"; version="1.2.0"; sha256="10j6iz0nrcmy79b2ns1zszb8w7x2jc85sfj8xaf57j7z4f3n98ff"; depends=[coda Rcpp RcppArmadillo]; }; stockPortfolio = derive { name="stockPortfolio"; version="1.2"; sha256="0k5ss6lf9yhcvc4hwqmcfpdn6qkbq5kaw0arldkl46391kac3bd1"; depends=[]; }; @@ -6487,26 +6735,27 @@ strataG = derive { name="strataG"; version="0.9.4"; sha256="0lxp6s0gfqxyla7mx19f stratification = derive { name="stratification"; version="2.2-5"; sha256="0cgr49gvh12s6rr43878jxjkir7b7absqgbfsvj1bjlf2r3gyqy9"; depends=[]; }; stratigraph = derive { name="stratigraph"; version="0.66"; sha256="1idn5rwar9pxp1vsra68wrlhagmc92y5rs7vn4h63p35p357qdwz"; depends=[]; }; straweib = derive { name="straweib"; version="1.0"; sha256="0bh2f4n4i7fiki52sa57v96757qw1gn1lcn7vgxmc5hk5rzp2mi8"; depends=[]; }; -stream = derive { name="stream"; version="1.1-5"; sha256="10g3wwvwppp3fqrpxdlypfiq9y43sffx2hp7dha33ray565scrda"; depends=[animation clue cluster clusterGeneration fpc MASS mlbench proxy Rcpp]; }; -streamMOA = derive { name="streamMOA"; version="1.1-1"; sha256="1yfy5cpwk6z6f9j3mvvz69wpqnmrismsmxmx9fx6mjcs1zwgfyhb"; depends=[rJava stream]; }; +stream = derive { name="stream"; version="1.2-1"; sha256="0higy6r5haixyxjkd76492xnniw33hij09431bpnys9cq78adisg"; depends=[animation clue cluster clusterGeneration dbscan fpc MASS mlbench proxy Rcpp]; }; +streamMOA = derive { name="streamMOA"; version="1.1-2"; sha256="0mg113v8zy6kh67hm91xfd9kd1x8vvvx03svhz70nz9npw00pvlz"; depends=[rJava stream]; }; streamR = derive { name="streamR"; version="0.2.1"; sha256="1ml33mj7zqlzfyyam23xk5d25jkm3qr7rfj2kc5j5vgsih6kr0gl"; depends=[RCurl rjson]; }; stremo = derive { name="stremo"; version="0.2"; sha256="13b9xnd8ykxrm8gnakh0ixbsb7yppqv3isga8dsz473wzy82y6h1"; depends=[lavaan MASS numDeriv]; }; stressr = derive { name="stressr"; version="1.0.0"; sha256="00b93gfh1jd5r7i3dhsfqjidrczf693kyqlsa1krdndg8f0jkyj7"; depends=[lattice latticeExtra XML xts]; }; -stringdist = derive { name="stringdist"; version="0.9.2"; sha256="13cwp2ic4v48r6h1gjbb1kn4m88d69z7wnhwyxsh64lqlhaz1xsm"; depends=[]; }; +stringdist = derive { name="stringdist"; version="0.9.3"; sha256="1adljjyac81qmmhzw35dvsx5736akdcbph8r6bnnxbp6b0s99yxm"; depends=[]; }; stringgaussnet = derive { name="stringgaussnet"; version="1.1"; sha256="161fi78cd7yddbcq71z3fgx1q2sacg1n1ggrkrqz17icwzviqrh5"; depends=[AnnotationDbi biomaRt httr igraph limma pspearman RCurl RJSONIO simone VennDiagram]; }; stringi = derive { name="stringi"; version="0.5-5"; sha256="183wrrjhpgl1wbnn9lhghyvhz7l2mc64mpcmzplckal7y9j7pmhw"; depends=[]; }; stringr = derive { name="stringr"; version="1.0.0"; sha256="0jnz6r9yqyf7dschr2fnn1slg4wn6b4ik5q00j4zrh43bfw7s9pq"; depends=[magrittr stringi]; }; strucchange = derive { name="strucchange"; version="1.5-1"; sha256="0cdgvl6kphm2i59bmnppn1y3kv65ml111bk7yzpcx7vv8wh2w3kl"; depends=[sandwich zoo]; }; structSSI = derive { name="structSSI"; version="1.1.1"; sha256="06rwmrgqc4qy4x0bhlshjdsjxfmp5fr9d1wjglhlb1gbp72fmkdv"; depends=[ggplot2 igraph multtest reshape2 rjson]; }; strum = derive { name="strum"; version="0.6.2"; sha256="0f5cb7cfvqhmnv4sjfr58lns4fclmr8iyka595zddy9f6dv5rqp1"; depends=[graph MASS Matrix pedigree Rcpp RcppArmadillo Rgraphviz]; }; -strvalidator = derive { name="strvalidator"; version="1.5.0"; sha256="0b71drc80hqmqi4kspy0700wss4pm88x2gp83jsw1jrfrrrfw9jk"; depends=[data_table ggplot2 gridExtra gtable gWidgets gWidgetsRGtk2 plyr RGtk2 scales]; }; +strvalidator = derive { name="strvalidator"; version="1.5.2"; sha256="1xqgs50vppg8277s446m71wpdqs32v8i1ymzj130xfx9q832gnxk"; depends=[data_table ggplot2 gridExtra gtable gWidgets gWidgetsRGtk2 plyr RGtk2 scales]; }; stsm = derive { name="stsm"; version="1.7"; sha256="080xakf7rf53vzv64g338hz87sk4cqfwd6ly4f122sxvn4xypq3n"; depends=[KFKSDS]; }; stsm_class = derive { name="stsm.class"; version="1.3"; sha256="19jrja5ff31gh5k2zqhqsyd7w2ivr4s6bkliash6x8fmd22h5zs8"; depends=[]; }; -stylo = derive { name="stylo"; version="0.5.9"; sha256="061nfjh932qjlzvnarpwvzar0qv7ij8l6m3iax1jilygzhfqfyin"; depends=[ape class e1071 lattice pamr tcltk2 tsne]; }; +stylo = derive { name="stylo"; version="0.6.1"; sha256="0g000s7m8mfpvzky9b953zxil0i713pq2l4qwvw1v09zwd80nz5y"; depends=[ape class e1071 lattice pamr tcltk2 tsne]; }; suRtex = derive { name="suRtex"; version="0.9"; sha256="0xcy3x1079v10bn3n3y6lxignb9n3h57w4hhrvzi5y14x05jjyda"; depends=[]; }; subgroup = derive { name="subgroup"; version="1.1"; sha256="1n3qw7vih1rngmp4fwjbs050ngby840frj28i8x7d7aa52ha2syf"; depends=[]; }; subplex = derive { name="subplex"; version="1.1-6"; sha256="0camqd0n468h93jxvvcnclki66glr39rb87nvrkrbiklbqd0s1fp"; depends=[]; }; subrank = derive { name="subrank"; version="0.9.1"; sha256="0ghfpvw7aflbnnisn3rq8vrpi134ghm6vnyb7md1gi730mqgxfxv"; depends=[]; }; +subscore = derive { name="subscore"; version="1.1"; sha256="0gd4v57cq8shi7kqnralnczcb3q3w3jaxirf543rl54hlii7qci0"; depends=[CTT]; }; subselect = derive { name="subselect"; version="0.12-5"; sha256="00wlkj6p0p2x057zwwk1xdvji25yakgagf98ggixmvfrk1m1saa4"; depends=[]; }; subsemble = derive { name="subsemble"; version="0.0.9"; sha256="0vzjmxpdwagqb9p2r4f2xyghmrprx3nk58bd6zfskdgj0ymfgz5z"; depends=[SuperLearner]; }; subtype = derive { name="subtype"; version="1.0"; sha256="1094q46j0njkkqv09slliclp3jf8hkg4147hmisggy433xwd19xh"; depends=[penalized ROCR]; }; @@ -6520,7 +6769,7 @@ superbiclust = derive { name="superbiclust"; version="1.1"; sha256="1gzjbzbl8y1n superdiag = derive { name="superdiag"; version="1.1"; sha256="0pa3mv74riabpm7j4587zww2364fszzlw48ijj1apcgz8y6pyqbw"; depends=[boa coda]; }; superpc = derive { name="superpc"; version="1.09"; sha256="1p3xlg2n7p57n54g2w4frfrng5vjh97kp6ax4mrgvj3pqmd1m69z"; depends=[survival]; }; support_BWS = derive { name="support.BWS"; version="0.1-3"; sha256="1qlh2zgmr3b6gz3xmncjawgg08c6kgfg3d2m9x78iw95x7p3p5h8"; depends=[]; }; -support_CEs = derive { name="support.CEs"; version="0.3-3"; sha256="0772j0sssf6fwig9v1ra83fwas8109yf30n0xq8s5cxsnnn41m2y"; depends=[DoE_base MASS simex]; }; +support_CEs = derive { name="support.CEs"; version="0.4-1"; sha256="1rbyl7v6m07dsp08kkk9020bh39rhx89q7d05rc5kxb6f7y66jyz"; depends=[DoE_base MASS RCurl simex XML]; }; surface = derive { name="surface"; version="0.4-1"; sha256="0z7fh09hjmxfmqzi588gjwqqlpj1a475aixrnvy911lkx3zfk146"; depends=[ape geiger MASS ouch]; }; surv2sampleComp = derive { name="surv2sampleComp"; version="1.0-4"; sha256="1ihz71vzrkd5ksy7421myrgkbww0z5k0ywcb2bfalxx2bd2cs2wf"; depends=[flexsurv plotrix survC1 survival]; }; survAUC = derive { name="survAUC"; version="1.0-5"; sha256="0bcj982ib1h0sjql09zbvx3h1m96jy9q37krmk6kfzw25ms6bzzr"; depends=[survival]; }; @@ -6559,16 +6808,16 @@ svapls = derive { name="svapls"; version="1.4"; sha256="12gk8wrgp556phdv89jqza22 svcm = derive { name="svcm"; version="0.1.2"; sha256="1lkik65md8xdxzkmi990dvmbkc6zwkyxv8maypv2vbi2x534jkhl"; depends=[Matrix]; }; svd = derive { name="svd"; version="0.3.3-2"; sha256="064y4iq4rj2h35fhi6749wkffg37ppj29g9aw7h156c2rqvhxcln"; depends=[]; }; svdvisual = derive { name="svdvisual"; version="1.1"; sha256="02mzh2cy4jzb62fd4m1iyq499fzwar99p12pyanbdnmqlx206mc2"; depends=[lattice]; }; -svgPanZoom = derive { name="svgPanZoom"; version="0.2.0"; sha256="10ckz859c9wh09fjqxa6qfrfjk17f9nhkmvgcj1qfiasmp3qj2wk"; depends=[htmlwidgets]; }; +svgPanZoom = derive { name="svgPanZoom"; version="0.3.0"; sha256="0vl8sg8dwa9hyvkd5l3nnl79mhn22wj3kkvjm4n2azrjd8xihf2b"; depends=[htmlwidgets]; }; svgViewR = derive { name="svgViewR"; version="1.0.1"; sha256="1ggw5w5xjqp33z6nzszimcab3vkv4rliiilhcqbhppqlnhjb8nab"; depends=[]; }; svmpath = derive { name="svmpath"; version="0.953"; sha256="0hqga4cwy1az8cckh3nkknbq1ag67f4m5xdg271f2jxvnmhdv6wv"; depends=[]; }; svyPVpack = derive { name="svyPVpack"; version="0.1-1"; sha256="15k5ziy2ng853jxl66wjr27lzc90l6i5qr08q8xgcs359vn02pmp"; depends=[survey]; }; swamp = derive { name="swamp"; version="1.2.3"; sha256="1xpnq5yrmmsx3d48x411p7nx6zmwmfc9hz6m3v9avvpjkbc3glkg"; depends=[amap gplots impute MASS]; }; -sweidnumbr = derive { name="sweidnumbr"; version="0.6.1"; sha256="0fpbqh5ff54slmpvvyp02gwclz4p1rca3qfdb2xxn19sfiqx0wf7"; depends=[lubridate stringr]; }; +sweidnumbr = derive { name="sweidnumbr"; version="0.6.5"; sha256="1c3a4rhzjwrygz7accgmvj6f5xvz04p7wl9kh82mvrzl96kac2jv"; depends=[lubridate stringr]; }; swfscMisc = derive { name="swfscMisc"; version="1.0.6"; sha256="14bbcn8xkc32nagi92sahdvfbgfd4v7pari1c004dz0qgxxcnz1h"; depends=[mapdata maps spatstat]; }; swirl = derive { name="swirl"; version="2.2.21"; sha256="0lpin7frm1a6y9lz0nyykhvydr1qbx85iqy24sm52r1vxycv2r8h"; depends=[digest httr RCurl stringr testthat yaml]; }; switchnpreg = derive { name="switchnpreg"; version="0.8-0"; sha256="1vaanz01vd62ds2g2xv4kjlnvp13h59n8yqikwx07293ixd4qhpw"; depends=[expm fda HiddenMarkov MASS]; }; -switchr = derive { name="switchr"; version="0.9.10"; sha256="02595b4mhhgm8j1abmk78z27fz27kr0mg01d7hf7n6yv6ybhn0qz"; depends=[]; }; +switchr = derive { name="switchr"; version="0.9.19"; sha256="1x8vf6nmy1rsy25ijl2ycxcpwzwkmhffvlmmg5p30m7y4zmcm200"; depends=[]; }; switchrGist = derive { name="switchrGist"; version="0.2.1"; sha256="0n8fzzsxm0m4yic133q07vki803zywhijadymrgyq7qlx3d1m97d"; depends=[gistr httpuv RJSONIO switchr]; }; sybil = derive { name="sybil"; version="1.3.0"; sha256="1wprxwxyh5vzi263x1s7vdnyjgmyh3lha9ld2qqyjabrkg6wjzwg"; depends=[lattice Matrix]; }; sybilDynFBA = derive { name="sybilDynFBA"; version="0.0.2"; sha256="1sqk6dwwfrwvgkwk6mra0i1dszhhvcwm58ax6m89sxk8n0nbmr4b"; depends=[sybil]; }; @@ -6587,7 +6836,7 @@ synchrony = derive { name="synchrony"; version="0.2.3"; sha256="0fi9a3j8dfslf1nq synlik = derive { name="synlik"; version="0.1.1"; sha256="0g4n78amydihsq4jg2i9barjm9g40zczasb31fj10yn6wir1dhv7"; depends=[Matrix Rcpp RcppArmadillo]; }; synthpop = derive { name="synthpop"; version="1.1-1"; sha256="0l65pbjcc163dqalkz1dil5bpfb9f3p4wx6hpr7z4g0ir58anbip"; depends=[coefplot foreign ggplot2 lattice MASS nnet party plyr proto rpart]; }; sysfonts = derive { name="sysfonts"; version="0.5"; sha256="1vppj3jnag88351f8xfk9ds8gbbij3m55iq5rxbnrzy89c04zpzp"; depends=[]; }; -systemfit = derive { name="systemfit"; version="1.1-16"; sha256="0b34cpwhmsmq7dcr3gymdvanj3q493aczgz3af7b14bsp3bbwpw6"; depends=[car lmtest MASS Matrix sandwich]; }; +systemfit = derive { name="systemfit"; version="1.1-18"; sha256="0sy0v0iz4qzrmazp5j63d62xvlyi9mw5ryd4msd1xmppdl7r453p"; depends=[car lmtest MASS Matrix sandwich]; }; systemicrisk = derive { name="systemicrisk"; version="0.2"; sha256="06061hca2x9hj0caann69j6x2jgy8bq40nxs27iqb3zfqp2cz44f"; depends=[lpSolve Rcpp]; }; syuzhet = derive { name="syuzhet"; version="0.2.0"; sha256="1l83wjiv1xsxw4wrcgcj3ryisi7zn4sbdl0sail0rhw0g9y9cz76"; depends=[NLP openNLP]; }; taRifx = derive { name="taRifx"; version="1.0.6"; sha256="10kp06hkdx1qrzh2zs9mkrgcnn6d31cldjczmk5h9n98r34hmirx"; depends=[plyr reshape2]; }; @@ -6595,7 +6844,7 @@ taRifx_geo = derive { name="taRifx.geo"; version="1.0.6"; sha256="0w7nwp3kvidqhw tab = derive { name="tab"; version="3.1.1"; sha256="05wypi4v9r2qlgwafd9f58vnxn2c4fnz18l8xpb24nhdgm35adqy"; depends=[gee survey survival]; }; taber = derive { name="taber"; version="0.1.0"; sha256="07a18kn65b4cxxf1z568n7adp6y3qx96nrff3a3714x241sd5p6i"; depends=[dplyr magrittr]; }; table1xls = derive { name="table1xls"; version="0.3.1"; sha256="0zd93wrdj4q0ph375qlgdhpqm3n8s941vks5h07ks9gc8id1bnx5"; depends=[XLConnect]; }; -tableone = derive { name="tableone"; version="0.6.3"; sha256="0r91vzq3whz949kxg9q9bf413r41cxqsjvmicmb4najhwzhdr9fv"; depends=[e1071 gmodels]; }; +tableone = derive { name="tableone"; version="0.7.1"; sha256="189lwxdfla5rc23x20vpz0acr0zmr7swv4n5yqv2rcrwvwhqm4d6"; depends=[e1071 gmodels MASS survey zoo]; }; tableplot = derive { name="tableplot"; version="0.3-5"; sha256="1jkkl2jw7lwm5zkx2yaiwnq1s3li81vidjkyl393g1aqm9jf129l"; depends=[]; }; tables = derive { name="tables"; version="0.7.79"; sha256="05f23y5ff961ksx4fnmwpf6zvc9573if8s2cmz9bwki66h2g9xb7"; depends=[Hmisc]; }; tabplot = derive { name="tabplot"; version="1.1"; sha256="0vyc6b6h540sqwhrza2ijg7ghw2x8rla827b8qy2sh0ckm0ybjrx"; depends=[ffbase]; }; @@ -6606,7 +6855,7 @@ tailloss = derive { name="tailloss"; version="1.0"; sha256="0lmjgjs6d94b70i10vx6 tau = derive { name="tau"; version="0.0-18"; sha256="04rj3jrcz4h60dqm1xmnmpr52csz1s7rf2wv6ivybgyvbq0w2ijf"; depends=[]; }; tawny = derive { name="tawny"; version="2.1.2"; sha256="0ihg3qlng8swak1dfpbnlx5xc45d1i9rgqawmqa97v5m91smfa71"; depends=[futile_logger futile_matrix lambda_r lambda_tools PerformanceAnalytics quantmod tawny_types xts zoo]; }; tawny_types = derive { name="tawny.types"; version="1.1.3"; sha256="1v0k6nn45rdczjn5ymsp2fqq0ijnlniyf3bc08ibd8yd1jcdyjnj"; depends=[futile_logger futile_options lambda_r lambda_tools quantmod xts zoo]; }; -taxize = derive { name="taxize"; version="0.6.0"; sha256="0zxlawj79l117hj3d93663xdzbkcq5gh6m090yfbvkzrb6a4rq3f"; depends=[ape bold data_table foreach httr jsonlite plyr RCurl reshape2 stringr Taxonstand XML]; }; +taxize = derive { name="taxize"; version="0.6.2"; sha256="1xr29jvaflmxv3nx4jkqndpm98yj5bj15q9h7pxw2xx5fih5h70q"; depends=[ape bold data_table foreach httr jsonlite openssl plyr reshape2 stringr XML]; }; tbart = derive { name="tbart"; version="1.0"; sha256="0m8l9ic7na70il6r9ha0pyrjwznbgjq7gk5xwa5k9px4ysws29k5"; depends=[Rcpp sp]; }; tbdiag = derive { name="tbdiag"; version="0.1"; sha256="1wr2whgdk84426hb2pf8iiyradh9c61gyazvcrnbkgx2injkz65q"; depends=[]; }; tcR = derive { name="tcR"; version="2.1.1"; sha256="0lrw05n80110lwhms3gjbrh87rlsvib2hpfc1balf1wlrzd2ynj4"; depends=[data_table dplyr ggplot2 gridExtra gtable igraph Rcpp reshape2 roxygen2 stringdist]; }; @@ -6629,14 +6878,14 @@ texmex = derive { name="texmex"; version="2.1"; sha256="17x4xw2h4g9a10zk4mvi3jz3 texmexseq = derive { name="texmexseq"; version="0.1"; sha256="18lpihiwpjkjkc1n7ka6rzasrwv8npn4939s1gl8g1jb27vnhzb5"; depends=[]; }; texreg = derive { name="texreg"; version="1.35"; sha256="0c1w6kzczzflcmvr544v3gdasvyjxcwqgdm2w2i9wp7kd1va37fr"; depends=[]; }; textcat = derive { name="textcat"; version="1.0-3"; sha256="0j3sp94bz57l70aqm11033nfshxdz3l9m4sq1gsfzkvxgnlpqrm5"; depends=[slam tau]; }; -textir = derive { name="textir"; version="2.0-3"; sha256="039xl2h0igrp3fzr1qiyb0zr6j4bbajhj36apylqvwsczzaywhwb"; depends=[distrom gamlr Matrix]; }; +textir = derive { name="textir"; version="2.0-4"; sha256="1ky22xar980afyydddahppad9m263mxnrdqpj1fcbmdhg8flwjgz"; depends=[distrom gamlr Matrix]; }; textometry = derive { name="textometry"; version="0.1.4"; sha256="17k3v9r5d5yqgp25bz69pj6sw2j55dxdchq63wljxqkhcwxyy9lh"; depends=[]; }; textreg = derive { name="textreg"; version="0.1.2"; sha256="0qya0czbi78a29jp9pd3lbqh574d9k0i340hrgc6jmdhwzhimhk7"; depends=[NLP Rcpp tm]; }; tfer = derive { name="tfer"; version="1.1"; sha256="19d31hkxs6dc4hvj5495a3kmydm29mhp9b2wp65mmig5c82cl9ck"; depends=[]; }; tfplot = derive { name="tfplot"; version="2015.4-1"; sha256="1qrw8x7pz7xcmpym3j1d095bhvy2s7znxplml1qyw5minc67n1mh"; depends=[tframe]; }; tframe = derive { name="tframe"; version="2015.1-1"; sha256="10igwmrfslyz3z3cbyldik8fcxq43pwh60yggka6mkl0nzkxagbd"; depends=[]; }; tframePlus = derive { name="tframePlus"; version="2015.1-2"; sha256="043ay79x520lbh4jm2nb3331pwd7dvwfw20k1kc9cxbplxiy8pnb"; depends=[tframe timeSeries]; }; -tgcd = derive { name="tgcd"; version="1.5"; sha256="0yvb0yc5vwnd054lfgzwg96pvaf8q41x5f03ih3schrl32z3pvv6"; depends=[]; }; +tgcd = derive { name="tgcd"; version="1.7"; sha256="1745rrlldzimswv1vnwhcmsv3sxwf3ahnygyhqpk9c8lalnark2i"; depends=[]; }; tglm = derive { name="tglm"; version="1.0"; sha256="1gv33jq3bzd5wlrqjvcfb1ax258q9asawkdi64rbj18qp7fg2dbx"; depends=[BayesLogit coda mvtnorm truncnorm]; }; tgp = derive { name="tgp"; version="2.4-11"; sha256="0hdi05bz9qn4zmljfnll5hk9j8z9qaqmya77pdcgr6vc31ckixw5"; depends=[maptree]; }; tgram = derive { name="tgram"; version="0.2-2"; sha256="091g6j5ry1gmjff1kprk5vi2lirl8zbynqxkkywaqpifz302p39q"; depends=[zoo]; }; @@ -6644,21 +6893,22 @@ thermocouple = derive { name="thermocouple"; version="1.0.2"; sha256="1rlvhw3i83 thgenetics = derive { name="thgenetics"; version="0.3-4"; sha256="1316nx0s52y12j9499mvi050p3qvp6b8i01v82na01vidl54b9c2"; depends=[]; }; threeboost = derive { name="threeboost"; version="1.1"; sha256="033vwn42ys81w6z90w5ii41xfihjilk61vdnsgap269l9l0c8gmn"; depends=[Matrix]; }; threejs = derive { name="threejs"; version="0.2.1"; sha256="01zfv5lm11i2nkb876f3fg8vsff2wk271jqs6xw1njjdhbnnihs1"; depends=[base64enc htmlwidgets]; }; -threg = derive { name="threg"; version="1.0.2"; sha256="0wb9waj0j83zrj763d3fdnp3lp52gfdyzv23yrvxvd6zmk5clgi2"; depends=[Formula survival]; }; +threewords = derive { name="threewords"; version="0.1.0"; sha256="083y5i4qyl1wj017wy5ywl2yx9wvrpjl9g9k9clvnrbwzbycx2cg"; depends=[httr]; }; +threg = derive { name="threg"; version="1.0.3"; sha256="1ja0w4hhdkw3b1cipbpw8ym27k5lh2m7gibd74mj6gij7rpixrnb"; depends=[Formula survival]; }; thsls = derive { name="thsls"; version="0.1"; sha256="18z7apskydkg7iqrs2hgnzby578qsvyd73wx8v4z3aa338lssdi7"; depends=[Formula]; }; tibbrConnector = derive { name="tibbrConnector"; version="1.5.0-71"; sha256="0d8gy126hzzardcwr9ydagdb0dy9bdw30l8s2wwi7zaxx2lpii6q"; depends=[RCurl rjson]; }; tictoc = derive { name="tictoc"; version="1.0"; sha256="1zp2n8k2ax2jjw89dsri268asmm5ry3ijf32wbca5ji231y0knj7"; depends=[]; }; tidyjson = derive { name="tidyjson"; version="0.2.1"; sha256="178lc4ii4vjzvrkxfdf5cd9ryxva9h2vv4wl6xgxgaixkab9yv9w"; depends=[assertthat dplyr jsonlite]; }; -tidyr = derive { name="tidyr"; version="0.2.0"; sha256="169i6xnr4bs5vqkv6dilj5j8v95giz0b7byhi06qk414gdlj2r8n"; depends=[dplyr lazyeval reshape2 stringi]; }; +tidyr = derive { name="tidyr"; version="0.3.1"; sha256="1xvc3iv1bapp7jjrr6y66ip6h4rcz6qbdidxb8mshxjvhkm6dbxb"; depends=[dplyr lazyeval magrittr Rcpp stringi]; }; tiff = derive { name="tiff"; version="0.1-5"; sha256="0asf2bws3x3yd3g3ixvk0f86b0mdf882pl8xrqlxrkbgjalyc54m"; depends=[]; }; tiger = derive { name="tiger"; version="0.2.3.1"; sha256="0xr56c46b956yiwkili6vp8rhk885pcmfyd3j0rr4h8sz085md6n"; depends=[e1071 hexbin klaR lattice qualV som]; }; -tigerstats = derive { name="tigerstats"; version="0.2-6"; sha256="0niibqhqpjxgq3m7xp0icf98k531ncmm853scvqp5icv2yz5ivav"; depends=[abd ggplot2 lattice MASS mosaic mosaicData]; }; +tigerstats = derive { name="tigerstats"; version="0.2.7"; sha256="1jgglgdv1xjyyc376ggydvna26lb4f7l7lv82xn56fa8asdssd91"; depends=[abd ggplot2 lattice manipulate MASS mosaic mosaicData]; }; tightClust = derive { name="tightClust"; version="1.0"; sha256="0psyzk6d33qkql8v6hzkp8mfwb678r95vfycz2gh6fky7m5k3yyz"; depends=[]; }; tikzDevice = derive { name="tikzDevice"; version="0.8.1"; sha256="0262szfzv4yrfal19giinrphra1kfcm2arfckql4rf2zsq13rw35"; depends=[filehash]; }; tileHMM = derive { name="tileHMM"; version="1.0-7"; sha256="1ks4b6h15982jh3ls9fz8hq9ac1wf5hfjsvdqcmnba8n3m5zm651"; depends=[corpcor st]; }; timeDate = derive { name="timeDate"; version="3012.100"; sha256="0cn4h23y2y2bbg62qgm79xx4cvfla5xbpmi9hbdvkvpmm5yfyqk2"; depends=[]; }; timeROC = derive { name="timeROC"; version="0.3"; sha256="0xl6gpb5ayppzp08wwry4i051rm40lzfx43jw2yn3jy2p3nrcakb"; depends=[mvtnorm pec]; }; -timeSeq = derive { name="timeSeq"; version="1.0.0"; sha256="1b7jcld1h3xsp3nl2nk9nqsgdg1pdi4m54hgsdlvivk9zzv3k6wr"; depends=[doParallel edgeR foreach gss lattice pheatmap reshape]; }; +timeSeq = derive { name="timeSeq"; version="1.0.1"; sha256="054r5lnvl3wj92sx78qwh0mgrcncwqn94ph941knjwnbds4g2arj"; depends=[doParallel edgeR foreach gss lattice pheatmap reshape]; }; timeSeries = derive { name="timeSeries"; version="3012.99"; sha256="06lz9xljzadfs94xwn8578h8mw56wp923k0xfppzq69hcpcrhsvf"; depends=[timeDate]; }; timedelay = derive { name="timedelay"; version="1.0.0"; sha256="0wqcc8kzgvn6bn7kclb3wnaibycg5hpcji9g1a66pj14fwdabny3"; depends=[]; }; timeit = derive { name="timeit"; version="0.2.1"; sha256="0fsa67jyk4yizyd079265jg6fvjsifkb60y3fkkxsqm7ffqi6568"; depends=[microbenchmark]; }; @@ -6667,13 +6917,14 @@ timeordered = derive { name="timeordered"; version="0.9.8"; sha256="1j0x2v22ybyl timereg = derive { name="timereg"; version="1.8.9"; sha256="12l8sz10ic8d34jd7ik8szg2d51pr949nsss20c5l5g3kfnvqkkh"; depends=[lava numDeriv survival]; }; timesboot = derive { name="timesboot"; version="1.0"; sha256="1ixmcigi1bf42np93md8d3w464papg9hp85v0c3hg3vl4nsm2bji"; depends=[boot]; }; timeseriesdb = derive { name="timeseriesdb"; version="0.2.1"; sha256="0150zs8c8184jzry33aki21prmpnxp3rclp84q6igwxi4grdhlr0"; depends=[DBI reshape2 RJSONIO RPostgreSQL shiny xts zoo]; }; -timetools = derive { name="timetools"; version="1.7.0"; sha256="14g2fnc9jvy7s615cq36821z8x2ww304vnm4krhy36knayrd6z7c"; depends=[]; }; +timetools = derive { name="timetools"; version="1.7.2"; sha256="0v7z9z6r2w4kdhdv1wvdx6w4fpckz3z8c84pw81s22r95pa448q6"; depends=[]; }; timetree = derive { name="timetree"; version="1.0"; sha256="1fpdp6mkwm67svqvkfflvqxn52y2041zl09rxrms28ybbd5f84c0"; depends=[phangorn XML]; }; timma = derive { name="timma"; version="1.2.1"; sha256="1pypk0pwkhyilh1hsn8hasia1hf6hbskj0xw6vas03k19b6fjnli"; depends=[QCA Rcpp RcppArmadillo reshape2]; }; timsac = derive { name="timsac"; version="1.3.3"; sha256="0jg9mjzzfl94z4dqb2kz0aiccpclnbyf9p08x3a3cw1y6wqmzrmy"; depends=[]; }; tipom = derive { name="tipom"; version="1.0.2-1"; sha256="1gdfv0g5dw742j6ycmi0baqh6xcchp3yf2n1g8vn7jmqgz5mlhdr"; depends=[]; }; tis = derive { name="tis"; version="1.30"; sha256="0bqvnaxqqq4962wfw4s9rf0qil613mplqcjwjlq1s9yfxl78gzzw"; depends=[]; }; titan = derive { name="titan"; version="1.0-16"; sha256="0x30a877vj99z3fh3cw9762j5ci56964j2466xfbwcywhn9njz5r"; depends=[boot lattice MASS]; }; +titanic = derive { name="titanic"; version="0.1.0"; sha256="0mdmh0ciwfig00847bmvp50cyvj8pra6q4i4vdg7md19z5rjlx3j"; depends=[]; }; tkrgl = derive { name="tkrgl"; version="0.7"; sha256="1kpq5p6izqrn1zr53firis3rmifq9lf6326lf3z7l1p82nf2yps5"; depends=[rgl]; }; tkrplot = derive { name="tkrplot"; version="0.0-23"; sha256="1cnyszn3rmr1kwvi5a178dr3074skdijfixf5ln8av5wwcy35947"; depends=[]; }; tlemix = derive { name="tlemix"; version="0.1.3"; sha256="0c4mvdxlhbmyxj070xyipx4c27hwxlb3c5ps65ipm6gi8v8r6spj"; depends=[]; }; @@ -6682,7 +6933,7 @@ tlmec = derive { name="tlmec"; version="0.0-2"; sha256="1gak8vxmfjf05bhaj6lych7b tlnise = derive { name="tlnise"; version="2.0"; sha256="1vh998vqj359249n9zmw04rsivb7nlbdfgzf20pgh2sndm3rh8qz"; depends=[]; }; tm = derive { name="tm"; version="0.6-2"; sha256="0q7plaqgc2ypihnz3dyjv2pwa0aimd4kv5i2z6m7aycc4wkmc7j4"; depends=[NLP slam]; }; tm_plugin_alceste = derive { name="tm.plugin.alceste"; version="1.1"; sha256="0wid51bbbx01mjfhnaiv50vfyxxmjxw8alb73c1hq9wlsh3x3vjf"; depends=[NLP tm]; }; -tm_plugin_dc = derive { name="tm.plugin.dc"; version="0.2-7"; sha256="1ikkxp5jdr385yqvhknvkvs97039jw964pcm6dl1k66nbdv1q59i"; depends=[DSL NLP slam tm]; }; +tm_plugin_dc = derive { name="tm.plugin.dc"; version="0.2-8"; sha256="0z843i2wlmx75748p95jz3j45d9bzmlmqa3awgya24k7bdhpd6kd"; depends=[DSL NLP slam tm]; }; tm_plugin_europresse = derive { name="tm.plugin.europresse"; version="1.3"; sha256="04sqaqmi00xm85732sk5iqv6ywfqh52qkkk0wv8xzqxwsixf3hyc"; depends=[NLP tm XML]; }; tm_plugin_factiva = derive { name="tm.plugin.factiva"; version="1.5"; sha256="06s75rwx9fzld1dw0nw6q5phc1h0zsdzhy1dcdcvmsf97d4s2qdr"; depends=[NLP tm XML]; }; tm_plugin_lexisnexis = derive { name="tm.plugin.lexisnexis"; version="1.2"; sha256="0cjw705czzzhd8ybfxkrv0f9kvmv9pcswisc7n9hkx8lxi942h19"; depends=[ISOcodes NLP tm XML]; }; @@ -6692,8 +6943,11 @@ tmap = derive { name="tmap"; version="1.0"; sha256="1807zh2yjgcpjrl1g83ahby7857l tmg = derive { name="tmg"; version="0.3"; sha256="0yqavibinzsdh85izzsx8b3bb9l36vzkp5a3bdwdbh410s62j68a"; depends=[Rcpp RcppEigen]; }; tmle = derive { name="tmle"; version="1.2.0-4"; sha256="11hjp2vak1zv73326yzzv99wg8a2xyvfgvbyvx3jfxkgk33mybbm"; depends=[SuperLearner]; }; tmle_npvi = derive { name="tmle.npvi"; version="0.10.0"; sha256="00jav1ql3lv18wh9msxnjvz36z2ds44fdi6lrp1pfphh1in4vdcl"; depends=[geometry MASS Matrix R_methodsS3 R_oo R_utils]; }; +tmlenet = derive { name="tmlenet"; version="0.1.0"; sha256="1pg9w7yci9j0m1cxi0nwdpp6jwap0b7ql4xkh25kjbq3w5r8w8pr"; depends=[assertthat data_table Matrix R6 Rcpp simcausal speedglm stringr]; }; tmod = derive { name="tmod"; version="0.19"; sha256="0wnj2dfp3jjvr8xl43kw86b3xgqd1662zjagzb9ayznx5vi2k5zb"; depends=[beeswarm pca3d tagcloud XML]; }; -tmvtnorm = derive { name="tmvtnorm"; version="1.4-9"; sha256="1dacdhqv6bb29a81bmxp8hxy4hragpg8mb5kql4cp59q08zmizyi"; depends=[gmm Matrix mvtnorm]; }; +tmvnsim = derive { name="tmvnsim"; version="1.0-1"; sha256="1zl1adx5klhg33j87kx8hqvn7mdyfqi12xxljf29abdqmr4pkp95"; depends=[]; }; +tmvtnorm = derive { name="tmvtnorm"; version="1.4-10"; sha256="1w3kmpx25l7rb80vpclqq4pbbv12qgysyqxjq3lp55l9nklkb7qs"; depends=[gmm Matrix mvtnorm]; }; +tnam = derive { name="tnam"; version="1.5.3"; sha256="1h3g259s68dpiszikr5jr3gf6a2mcrmcxhq6qibs7y4wcx625vyx"; depends=[igraph lme4 network Rcpp sna vegan xergm_common]; }; tnet = derive { name="tnet"; version="3.0.11"; sha256="00hifb145w0a9f5qi3gx16lm1qg621jp523vswb8h86jqmxcczbc"; depends=[igraph survival]; }; toOrdinal = derive { name="toOrdinal"; version="0.0-4"; sha256="0vvdz9l4sl7nlq6y93c65gbwssisrp3a9sp021g2l0rli00zq9q1"; depends=[]; }; tolerance = derive { name="tolerance"; version="1.1.0"; sha256="1mrgvrdlawrmbz8bhq9cxqgn4fxvn18f1gjf9f9s8fvfnc4nda96"; depends=[rgl]; }; @@ -6710,9 +6964,9 @@ tpr = derive { name="tpr"; version="0.3-1"; sha256="0nxl0m39zaii6rwm35hxcdk6iy2f track = derive { name="track"; version="1.1.8"; sha256="0scrww0ba1lrv39fh416wcbzblxnd9f7lp2w24hyp0zbbf1nxs68"; depends=[]; }; tractor_base = derive { name="tractor.base"; version="2.5.0"; sha256="17s4iyp67w7m8gslm87p3ic5r9iq7x1ifpxqrmnin3y5a3d04f5v"; depends=[reportr]; }; traitr = derive { name="traitr"; version="0.14"; sha256="1pkc8wcq55229wkwb54hg9ndbhlxziv51n8880z6yq73zac1hbmf"; depends=[digest gWidgets proto]; }; -traits = derive { name="traits"; version="0.1.0"; sha256="0xn4jznf4fvm7d6yinyw8viik9gdnfskcgavwdb7r9als4qxqs58"; depends=[data_table dplyr httr jsonlite taxize XML]; }; +traits = derive { name="traits"; version="0.1.2"; sha256="1amxn8w0jxd4zd52n00wrz6krlrg7hc66dj4j8lq96fyys8jjvpc"; depends=[data_table dplyr httr jsonlite taxize XML]; }; traj = derive { name="traj"; version="1.2"; sha256="0mq6xdbxjqjivxyy7cwaghwmnmb5pccrah44nmalssc6qfrgys4n"; depends=[cluster GPArotation NbClust pastecs psych]; }; -trajectories = derive { name="trajectories"; version="0.1-3"; sha256="1lk2mxfsf8x8idhb4dcj9lqvkjwm2yarvjid42xr2a9wwylvz9vq"; depends=[lattice sp spacetime]; }; +trajectories = derive { name="trajectories"; version="0.1-4"; sha256="0vwfbx5s8ywasxwv8cld4s6r96vlyknxipp49rsfpqn94nawhwnx"; depends=[lattice sp spacetime]; }; transcribeR = derive { name="transcribeR"; version="0.0.0"; sha256="0y2kxg2da71i962fhsjxsr2ic3b31fmffhj3gg97b0nykfpcviib"; depends=[httr]; }; translate = derive { name="translate"; version="0.1.2"; sha256="1w0xrg1xxwfdanlammmixf06hwq700ssbjlc3cfigl50p87dbc5x"; depends=[functional lisp RCurl RJSONIO]; }; translateR = derive { name="translateR"; version="1.0"; sha256="11kh9hjpsj5rfmzybnh345n1gzb0pdksrjp04nzlv948yc0mg5gm"; depends=[httr RCurl RJSONIO textcat]; }; @@ -6729,17 +6983,19 @@ treecm = derive { name="treecm"; version="1.2.1"; sha256="02al6iz25pay7y1qmbpy04 treelet = derive { name="treelet"; version="1.1"; sha256="0k3qhxjg7ws6jfhcvvv9jmy26v2wzi4ghnxnwpjm8nh7b90lbysd"; depends=[]; }; treemap = derive { name="treemap"; version="2.3"; sha256="1isf39ja356w0bpv6jww6pm6ldvd34jd49myhjic6vh2yskh556x"; depends=[colorspace data_table ggplot2 gridBase igraph RColorBrewer shiny]; }; treeperm = derive { name="treeperm"; version="1.6"; sha256="0mz7p9khrsq4dbkijymfvlwr01y4fvs0x6si4x5xid16s2zsnmm4"; depends=[]; }; +treescape = derive { name="treescape"; version="1.0.0"; sha256="1fsshrymijdzxxays5049sbd5vvkwgw63r6n3b6yqww2z2xd9cl9"; depends=[ade4 adegenet adegraphics adephylo ape combinat phangorn Rcpp RLumShiny shiny]; }; treethresh = derive { name="treethresh"; version="0.1-8"; sha256="1xkbqlr9gkpw6axzl7v5aipackhvy873yrpwn2b9zqr35pj06pr6"; depends=[EbayesThresh wavethresh]; }; trend = derive { name="trend"; version="0.0.1"; sha256="05awwsqp8vm2p00dq2hkb7dglwf45djw2xx2q2mq33blrlhn31sw"; depends=[]; }; triangle = derive { name="triangle"; version="0.8"; sha256="0jdphz1rf4cx4y28syfffaz7fbl41g3rw3mrv9dywycdznhxdnrp"; depends=[]; }; +trib = derive { name="trib"; version="1.2.0"; sha256="0bvz1cvi2fx40b5rdv4gfama11dn20rz4506k4fjsny32yswpqyw"; depends=[zoo]; }; trifield = derive { name="trifield"; version="1.1"; sha256="0xk48fkd5xa3mfn3pwdya0ihpkwnh20sgj3rc7fmzjil47kqscvy"; depends=[]; }; trimTrees = derive { name="trimTrees"; version="1.2"; sha256="0v75xf5186dy76332x4w7vdwcz7zpqga8mxrb5all2miq2v45fi8"; depends=[mlbench randomForest]; }; trimcluster = derive { name="trimcluster"; version="0.1-2"; sha256="0lsgbg93hm0w1rdb813ry0ks2l0jfpyqzqkf3h3bj6fch0avcbv2"; depends=[]; }; -trimr = derive { name="trimr"; version="1.0.0"; sha256="0f6h7fwp1888fip0ybh91bgi2la5k37ylrllginv3dfrd914vsrm"; depends=[]; }; +trimr = derive { name="trimr"; version="1.0.1"; sha256="0gcn18nwxmax9c35is0nldyh74cw8rg3gj60cixzs9qjnpb9xx3d"; depends=[]; }; trioGxE = derive { name="trioGxE"; version="0.1-1"; sha256="1ra86l3i7fhb6nsy8izixyvm6z23shv7fcjmnnpil54995j15ax4"; depends=[gtools mgcv msm]; }; trip = derive { name="trip"; version="1.1-21"; sha256="0rawckw3xd8kz2jn6xgspgl5axabjcp4xh4kp93n3h41xlarv9xa"; depends=[maptools MASS raster sp spatstat]; }; tripEstimation = derive { name="tripEstimation"; version="0.0-42"; sha256="17spnvrrqv89vldd496wc1psmaby0mhw9nh0qnfm7yc2jcqaf5nb"; depends=[lattice mgcv rgdal sp zoo]; }; -tripack = derive { name="tripack"; version="1.3-6"; sha256="1dknz1arzfyknip04a9fxdhqmrkb0r0lr8hgria9s0d57hr1ay12"; depends=[]; }; +tripack = derive { name="tripack"; version="1.3-7"; sha256="1kp3zxs1b6mjbrk0bbsz3jjvkxwm97jb0vvr66dpm57abyl1snly"; depends=[]; }; trotter = derive { name="trotter"; version="0.6"; sha256="0i8r2f2klkkfnjm7jhvga3gx6m7r97pd73d88004jzlm9ficspgy"; depends=[]; }; trueskill = derive { name="trueskill"; version="0.1"; sha256="0mqvm64fcsxjlh789lqdk6l28q31yhh6jjirwjlgbpxxb90c5107"; depends=[]; }; truncSP = derive { name="truncSP"; version="1.2.2"; sha256="1hdi518j3sg9273g01l1jqlmqya3ppim82ma7zakwqpmsjmzw18q"; depends=[boot truncreg]; }; @@ -6760,7 +7016,7 @@ tseries = derive { name="tseries"; version="0.10-34"; sha256="068mjgjcsvgpynkvga tseriesChaos = derive { name="tseriesChaos"; version="0.1-13"; sha256="0f2hycxyvcaj3s1lmva1qy46xr6qi43k8fvnm4md5qj8jp2zkazg"; depends=[deSolve]; }; tseriesEntropy = derive { name="tseriesEntropy"; version="0.5-12"; sha256="0z9354mlj0nh829ccwwhs53q5myfp31x9n6kv1k8gmvz5xma40kh"; depends=[cubature]; }; tsfa = derive { name="tsfa"; version="2014.10-1"; sha256="0gkgl55v08dr288nf8r769f96qri7qbi5src7y6azrykb37nz6iz"; depends=[dse EvalEst GPArotation setRNG tfplot tframe]; }; -tsintermittent = derive { name="tsintermittent"; version="1.5"; sha256="1qziwdpxfc2v010bk2cnhkrajza0z7lrrsjg06m49msyk5bk62z1"; depends=[MAPA]; }; +tsintermittent = derive { name="tsintermittent"; version="1.8"; sha256="0hzr0vkpc0v56932ffd1zlshlfzp6k3ngpa3l85cb10x9yvm0w5r"; depends=[MAPA]; }; tsne = derive { name="tsne"; version="0.1-2"; sha256="12q5s79r2949zhm61byd4dbgw6sz3bmxzcwr8b0wlp8g1xg4bhy6"; depends=[]; }; tsoutliers = derive { name="tsoutliers"; version="0.6"; sha256="1cyh56i7dsnclphi81fab6k8vkdqv8ing2zmpfsjq4gvq76p7piw"; depends=[forecast KFKSDS polynom stsm]; }; tspmeta = derive { name="tspmeta"; version="1.2"; sha256="028jbbd0pwpbjq4r6jcc1h0p7c4djcb9d2mvgzw1rmpphaxjvrkd"; depends=[BBmisc checkmate fpc ggplot2 MASS splancs stringr TSP vegan]; }; @@ -6770,25 +7026,26 @@ ttutils = derive { name="ttutils"; version="1.0-1"; sha256="18mk30070mcplybg320v ttwa = derive { name="ttwa"; version="0.8.5.1"; sha256="1lhypcwssq0dspizvln3w4dg16ad6mz8cj4w34c5vsrayqid7fyn"; depends=[data_table]; }; tufterhandout = derive { name="tufterhandout"; version="1.2.1"; sha256="04fvvbx69a28nk7i4wz5ynamz1yvsa2ibz542r1xaq1ikk0ywqbw"; depends=[knitr rmarkdown]; }; tumblR = derive { name="tumblR"; version="1.1"; sha256="0gl6q6rff9bp21gvi3bz8kmwbhimxqrv1mmzwshl1ys9r7d4dvps"; depends=[httr RCurl RJSONIO stringr]; }; -tumgr = derive { name="tumgr"; version="0.0.2"; sha256="1vnknvl9xim84iv3hfjpb8yw7jf638qxz8j79w47hlqwj3qn7alq"; depends=[minpack_lm]; }; +tumgr = derive { name="tumgr"; version="0.0.3"; sha256="0g24mhz63s9kwinicrkh10j4srwq7x6s1qjn0apnj71ma1ndaad3"; depends=[minpack_lm]; }; tuneR = derive { name="tuneR"; version="1.2.1"; sha256="1f6mdkfwfy6r62sbwq37sylvcji6f3mj9w13sgicxjn6swbszf57"; depends=[signal]; }; tuple = derive { name="tuple"; version="0.4-02"; sha256="0fm8fsdfiwknjpc20ivi5m5b19r9scdxhzij70l8qi3ixw1f0rnk"; depends=[]; }; turboEM = derive { name="turboEM"; version="2014.8-1"; sha256="0g9nm1m542hslz8272n5qz6h59criyf71l2w218dvq34bcjcd3yy"; depends=[doParallel foreach iterators numDeriv quantreg]; }; turfR = derive { name="turfR"; version="0.8-7"; sha256="007jmkppfv1x4zzvvd65fhg5k15ybjhsya2zfjgwm77wm34y81ca"; depends=[dplyr]; }; turner = derive { name="turner"; version="0.1.7"; sha256="1xckb750hbfmzhvabj0lzrsscib7g187b44ag831z58zvawwh772"; depends=[tester]; }; tvd = derive { name="tvd"; version="0.1.0"; sha256="07al7gpm81a16q5nppsyc5rhv6zzkcvw72isx955b1q189v073aw"; depends=[Rcpp]; }; -tvm = derive { name="tvm"; version="0.2"; sha256="1fwa37xnp3idal8v1xxlc9gr25595f644i7a3h8xpd0k086sp1dg"; depends=[ggplot2 reshape2]; }; +tvm = derive { name="tvm"; version="0.3.0"; sha256="1iv0qrks1zdiq8jaqr1h46snq8wc3g3q017hxc8zc6fqnsz1whf6"; depends=[ggplot2 reshape2]; }; twang = derive { name="twang"; version="1.4-9.3"; sha256="06lgawzq3b2jg84rvg24582ndlk8qji4gcbvxz5acf302cvdnmji"; depends=[gbm lattice latticeExtra survey xtable]; }; tweedie = derive { name="tweedie"; version="2.2.1"; sha256="1fsi0qf901bvvwa8bb6qvp90fkx1svzswljlvw4zirdavy65w0iq"; depends=[]; }; twiddler = derive { name="twiddler"; version="0.5-0"; sha256="0r16nfk2afcw7w0j0n3g0sjs07dnafrp88abwcqg3jyvldp3kxnx"; depends=[]; }; twitteR = derive { name="twitteR"; version="1.1.9"; sha256="1hh055aqb8iddk9bdqw82r3df9rwjqsg5a0d2i0rs1bry8z4kzbr"; depends=[bit64 DBI httr rjson]; }; twoStageGwasPower = derive { name="twoStageGwasPower"; version="0.99.0"; sha256="1xvy6v444v47i29aw54y29xiizkmryv8p3mjha93xr3xq9bx2mq7"; depends=[]; }; -twostageTE = derive { name="twostageTE"; version="1.2"; sha256="05k9lvkailv06cah71p71hnx8in045nxz6waplsccznplhgqg5ar"; depends=[isotone]; }; +twostageTE = derive { name="twostageTE"; version="1.3"; sha256="0mkxs3lmzja51zdrf5himhwcdygpj6czhdd2bydakm26kvw7znwr"; depends=[isotone]; }; txtplot = derive { name="txtplot"; version="1.0-3"; sha256="1949ab1bzvysdb79g8x1gaknj0ih3d6g63pv9512h5m5l3a6c31h"; depends=[]; }; ucbthesis = derive { name="ucbthesis"; version="1.0"; sha256="0l855if3a7862lxlnkbx52qa617mby634sbb2gkprj21rwd7lcbp"; depends=[knitr stringr]; }; ucminf = derive { name="ucminf"; version="1.1-3"; sha256="19gmbz32rhrdagvhf2s901lvi1r6273wzznry5daryq6w1jx5z3v"; depends=[]; }; -udunits2 = derive { name="udunits2"; version="0.6"; sha256="1dlxcx7yw7yqpimnfikdraqcmjsjz7js0j24li0879dzwrqa27ja"; depends=[]; }; +udunits2 = derive { name="udunits2"; version="0.8.1"; sha256="0nind45v0ispwz0fgksw64w4y5y6za0r3cx07j02zwg911n32r7c"; depends=[]; }; ump = derive { name="ump"; version="0.5-6"; sha256="1nd6miz9scc6llckafl73pxiqh0ycfhlsmn2l0swcvjxpj3kb0zv"; depends=[]; }; +umx = derive { name="umx"; version="0.50"; sha256="0937gvzjng4f0iah3f9cbk0icgbdsbd5krkwb3v50vhpp1172wk3"; depends=[formula_tools MASS Matrix mvtnorm numDeriv OpenMx polycor R2HTML RCurl]; }; unbalanced = derive { name="unbalanced"; version="2.0"; sha256="18hy9nnq42s1viij0a5i9wzrrfmmbf7y3yzjzymz2wnrx4f2pqwv"; depends=[doParallel FNN foreach mlr RANN]; }; unbalhaar = derive { name="unbalhaar"; version="2.0"; sha256="0v6bkin1cakwl9lmv49s0jnccl9d6vdslbi1a7kfvmr5dgy760hs"; depends=[]; }; unfoldr = derive { name="unfoldr"; version="0.3"; sha256="1zc2a4c228lhflsiypn8z6yn3fl0hr3dpmpzdxfrrijzbfai9215"; depends=[]; }; @@ -6798,14 +7055,14 @@ uniftest = derive { name="uniftest"; version="1.1"; sha256="0a37m7l3lc6rznx10w9h uniqtag = derive { name="uniqtag"; version="1.0"; sha256="025q71mzdv3n1jw1fa37bbw8116msnfzcia01p1864si04ch5358"; depends=[]; }; uniqueAtomMat = derive { name="uniqueAtomMat"; version="0.1-0"; sha256="0fizkxxppq00ngqvag4zbk6x7jpv6blgjr3w4p5iqc5p615z2yrb"; depends=[]; }; unittest = derive { name="unittest"; version="1.2-0"; sha256="1g3f36kikxrzsiyhwpl73q2si5k28drcwvvrqzsqmfyhbjb14555"; depends=[]; }; -unmarked = derive { name="unmarked"; version="0.10-6"; sha256="07mw9rg4i81fqdkgkpcb7kd7235hn4nyxpbf5b8vxzsly81ffpz7"; depends=[lattice plyr Rcpp RcppArmadillo reshape]; }; +unmarked = derive { name="unmarked"; version="0.11-0"; sha256="0n5cm17ns464dxd9sdma6f12x1phnvv05aiwgxsj499lk6jazf0l"; depends=[lattice plyr raster Rcpp RcppArmadillo reshape]; }; untb = derive { name="untb"; version="1.7-2"; sha256="1ha0xj94sz1r325qb4sb5hla9hw1gbqr76703vk792x9696skhji"; depends=[Brobdingnag partitions polynom]; }; upclass = derive { name="upclass"; version="2.0"; sha256="0jkxn6jgglw6pzzbcvi1pnq4hwfach3xbi13zwml4i83s3n5b0vg"; depends=[mclust]; }; uplift = derive { name="uplift"; version="0.3.5"; sha256="11xikfmg6dg8mhwqq6wq9j9aw4ljh84vywpm9v0fk8r5a1wyy2f6"; depends=[coin MASS penalized RItools tables]; }; urca = derive { name="urca"; version="1.2-8"; sha256="0gyjb99m6w6h701vmsav16jpfl5276vlyaagizax8k20ns9ddl4b"; depends=[nlme]; }; -urltools = derive { name="urltools"; version="1.2.0"; sha256="0fn84xb9yykpl2lccl75f675braaswfsr8p17grvnaplf8hpl8gj"; depends=[Rcpp]; }; +urltools = derive { name="urltools"; version="1.2.1"; sha256="0gx9jwyfmc61nd4yj85gmlb41y99l0ry8my3xwgjzgnq5qh13qkv"; depends=[Rcpp]; }; usdm = derive { name="usdm"; version="1.1-15"; sha256="1638fv8if7pcnm6y44w3vbmivgcg4a577zd2jwhmp00vrwml2a9m"; depends=[raster sp]; }; -useful = derive { name="useful"; version="1.1.8"; sha256="1lzl7rr9qxqa0ga6ml7qi7wi02fd4isgpfskvi3igy10iw1zv3hb"; depends=[ggplot2 plyr scales]; }; +useful = derive { name="useful"; version="1.1.9"; sha256="1b2dbzfc8dpbhhy8198kch3pdisnsjdfngb1sb2hb38jrj90sa32"; depends=[dplyr ggplot2 magrittr plyr scales]; }; userfriendlyscience = derive { name="userfriendlyscience"; version="0.3-0"; sha256="0gz59n315dbjlyh6fdqihr1x458wplnd43q2gw9s6f9b55359m2c"; depends=[car fBasics foreign GGally ggplot2 GPArotation knitr lavaan ltm MASS MBESS mosaic plyr psych pwr SuppDists xtable]; }; uskewFactors = derive { name="uskewFactors"; version="1.0"; sha256="1ixcxqw8ai77ndn1cfkq53a090fgs95yzvas1qg2siwpfsm4yix6"; depends=[MASS MCMCpack mvtnorm tmvtnorm]; }; usl = derive { name="usl"; version="1.4.1"; sha256="0z3dvxczp2vp4clnwds34w5rgv4la5hpadbcmdkfqcpdy1vjryv5"; depends=[nlmrt]; }; @@ -6813,39 +7070,43 @@ ustyc = derive { name="ustyc"; version="1.0.0"; sha256="1267bng2dz3229cbbq47w22i utility = derive { name="utility"; version="1.3"; sha256="0ng7jc45k9rgj9055ndmgl308zjvxd2cjsk2pn57x44rl1lldcj5"; depends=[]; }; uuid = derive { name="uuid"; version="0.1-2"; sha256="1gmisd630fc8ybg845hbg13wmm3pk3npaamrh5wqbc1nqd6p0wfx"; depends=[]; }; vacem = derive { name="vacem"; version="0.1-1"; sha256="0lh32hj4g1hsa45v6pmfyj1hw0klk8gr1k451lvs4hzpkkcwkqbn"; depends=[foreach]; }; +validate = derive { name="validate"; version="0.1.3"; sha256="1bnxqi9af807g8y81sdgag27c206kgl1f3kmsbdaxigch61472sw"; depends=[settings yaml]; }; +valottery = derive { name="valottery"; version="0.0.1"; sha256="0rlv8agm9ng4jcb9ixqifh7kjczvkx7047brq8yf9kg7rb8mzgpz"; depends=[]; }; varComp = derive { name="varComp"; version="0.1-360"; sha256="18xazjx102j6v1jgswxjdqjb0hq6hd646yhwb7bcplqyls9hzha0"; depends=[CompQuadForm MASS Matrix mvtnorm nlme quadprog RLRsim SPA3G]; }; varSelRF = derive { name="varSelRF"; version="0.7-5"; sha256="1800d9vvkqpxjvmiqdr610hw7ji79j0wsbl823s097dndmv51axk"; depends=[randomForest]; }; varbvs = derive { name="varbvs"; version="1.0"; sha256="0ywgb6ibijffjjzqqb5lvh1lk5qznwwiq7kbsyzkwcxbp8xkabjw"; depends=[]; }; vardiag = derive { name="vardiag"; version="0.2-1"; sha256="07i0wv84sw035bpjil3cfw69fdgbcf2j8wq4k22narkrz83iyi2z"; depends=[]; }; -vardpoor = derive { name="vardpoor"; version="0.3.4"; sha256="0hn45hb9x6zyhprnn68dwqipklrf6dqvj59w48v6clvhspbkk41b"; depends=[data_table foreach gdata laeken MASS plyr reshape2 stringr]; }; +vardpoor = derive { name="vardpoor"; version="0.4.4"; sha256="1cnapyi8dbdffcnk2ixn1wmiymyhi9bidqa13jnbif3qyzlghg1q"; depends=[data_table foreach gdata laeken MASS plyr reshape2 stringr]; }; +varhandle = derive { name="varhandle"; version="1.0.0"; sha256="1bpnzgx7gz95pgn13w7z5gq2lyhm549mc5697kx0625hpk13gddj"; depends=[]; }; varian = derive { name="varian"; version="0.2.1"; sha256="1rk8pmqkbsvjsfz704dawvqrqxdvbnql8sjwv0z38f9kgwvqh5p7"; depends=[Formula ggplot2 gridExtra MASS rstan]; }; vars = derive { name="vars"; version="1.5-2"; sha256="1q45z5b07ww4nafrvjl48z0w1zpck3cd8fssgwgh4pw84id3dyjh"; depends=[lmtest MASS sandwich strucchange urca]; }; vartors = derive { name="vartors"; version="0.2.6"; sha256="04dynqs903clllk9nyynh3dr7msxn5rr5jmw6ql86ppd5w3da0rl"; depends=[]; }; vbdm = derive { name="vbdm"; version="0.0.4"; sha256="1rbff0whhbfcf6q5wpr3ws1n4n2kcr79yifcni12vxg69a3v6dd3"; depends=[]; }; vbsr = derive { name="vbsr"; version="0.0.5"; sha256="1avskbxxyinjjdga4rnghcfvd4sypv4m39ysfaij5avvmi89bx3b"; depends=[]; }; vcd = derive { name="vcd"; version="1.4-1"; sha256="1529q8gysqzpgphsnqdwqqr630i4k1kr0zdbmxqq5wpy5r97fk5g"; depends=[colorspace lmtest MASS]; }; -vcdExtra = derive { name="vcdExtra"; version="0.6-9"; sha256="0y00g6llf40sl0xx60l1r6qxz59gl7pqmgf906cjwrkikfmbx068"; depends=[gnm MASS vcd]; }; +vcdExtra = derive { name="vcdExtra"; version="0.6-11"; sha256="1p8jxamfikmp5gccli930z6yr29v3l4rwjclpcjir9mh06sjgyjd"; depends=[gnm MASS vcd]; }; vcrpart = derive { name="vcrpart"; version="0.3-3"; sha256="0rnf9cwynfwr956hwj4kxqiqq3cdw4wf5ia73s7adxixh5kpqxqa"; depends=[nlme numDeriv partykit rpart sandwich strucchange ucminf zoo]; }; -vdg = derive { name="vdg"; version="1.1"; sha256="08bl7835m5c62lgaghgnd80zlbic6i80sjfxdr39a715bxpr8g3b"; depends=[ggplot2 gridExtra proxy quantreg]; }; +vdg = derive { name="vdg"; version="1.1.1"; sha256="1gnw692lmjjph37sdnzfhm9ry8b3myfhcziaw5z7yxl2hwdirq8m"; depends=[ggplot2 gridExtra proxy quantreg]; }; vdmR = derive { name="vdmR"; version="0.1.1"; sha256="0hmn7xgi1dzril6jdwxkpxp8isin0kxn3yb5fmcyfjhf03kcv4d4"; depends=[dplyr GGally ggplot2 gridSVG maptools plyr rjson Rook]; }; vec2dtransf = derive { name="vec2dtransf"; version="1.1"; sha256="029xynay9f9rn0syphh2rhd3szv50ib4r0h0xfhhvbbb37h5dc9s"; depends=[sp]; }; vecsets = derive { name="vecsets"; version="1.1"; sha256="0k27g3frc9y9z2qlm19kfpls6wl0422dilhdlk6096f1fp3mc6ij"; depends=[]; }; -vegan = derive { name="vegan"; version="2.3-0"; sha256="1zlz2zq0818735db4l8gfwwxxd5dc0xnx6v8cq6mfclkw1qhcdpx"; depends=[cluster lattice MASS mgcv permute]; }; +vegan = derive { name="vegan"; version="2.3-1"; sha256="06nmzb3qdllrnz3phj09srlb57m25xaqfqzdziylr64hjpi733q2"; depends=[cluster lattice MASS mgcv permute]; }; vegan3d = derive { name="vegan3d"; version="0.65-1"; sha256="03rzv7l2jjrahj3492ysalyizkv24by35nrhd1bnlb1s88sav7sr"; depends=[rgl scatterplot3d vegan]; }; vegclust = derive { name="vegclust"; version="1.6.3"; sha256="0l6j4sgzfqvcypx2dszpnsd1sivk33pixlgf9abqifp45skpkwfg"; depends=[sp vegan]; }; -vegdata = derive { name="vegdata"; version="0.7"; sha256="1h0prrpsiywqx2h49hrr3h9i4515vbgqb2yxfpp81zv2pipa353b"; depends=[foreign XML]; }; +vegdata = derive { name="vegdata"; version="0.8.1"; sha256="0imqx5sy7mr0nrkqdbh50hivl6yf5rdaya323vznhws1khrydb2p"; depends=[foreign XML]; }; vegetarian = derive { name="vegetarian"; version="1.2"; sha256="15ys1m8p3067dfsjwz6ds837n6rqd19my23yj8vw78xli3qmn445"; depends=[]; }; venneuler = derive { name="venneuler"; version="1.1-0"; sha256="10fviqv9vr7zkmqm6iy2l9bjxglf2ljb7sx423vi4s9vffcxjp17"; depends=[rJava]; }; verification = derive { name="verification"; version="1.42"; sha256="0pdqvg7cm9gam49lhc2xy42w788hh2zd06apydc95q2gj95xnaiw"; depends=[boot CircStats dtw fields MASS]; }; +versions = derive { name="versions"; version="0.1"; sha256="0i10fbhq4sfd6jkm7n5almfqz84cn4dsal0paaflrvy097yya69x"; depends=[]; }; vertexenum = derive { name="vertexenum"; version="1.0.1"; sha256="060sfa22m35d1hqxqngxhy7bwjihf6b4sqa1kg5r0cqvdw9zg51d"; depends=[numbers]; }; vetools = derive { name="vetools"; version="1.3-28"; sha256="1470xgqdq9n5kj86gdfds15k3vqidk3h99zi3g76hhyfl8gyl1c0"; depends=[lubridate maptools plyr scales sp stringr tis xts]; }; vines = derive { name="vines"; version="1.1.3"; sha256="1m862kgcwfz2af00p3vqg959dfldw88bdmb7p4zr3jnqzb6l7rnk"; depends=[ADGofTest copula cubature TSP]; }; violinmplot = derive { name="violinmplot"; version="0.2.1"; sha256="1j3hb03y988xa704kp25v1z1pmpxw5k1502zfqjaf8cy4lr3kzsc"; depends=[lattice]; }; vioplot = derive { name="vioplot"; version="0.2"; sha256="16wkb26kv6qr34hv5zgqmgq6zzgysg9i78pvy2c097lr60v087v0"; depends=[sm]; }; viopoints = derive { name="viopoints"; version="0.2-1"; sha256="0cpbkkzm1rxch8gnvlmmzy8g521f5ang3nhlcnin419gha0w6avf"; depends=[]; }; -viridis = derive { name="viridis"; version="0.1"; sha256="0mdbdnc9d14lyqk2vcb3dc20m57d21q6i1csjbji5y2zqb2lyq85"; depends=[]; }; +viridis = derive { name="viridis"; version="0.2.5"; sha256="1z3cnavsvw39qq4d0fdcsqhl2nrnz6j5csgpgvqfpb2f6jhd0c6s"; depends=[ggplot2]; }; virtualspecies = derive { name="virtualspecies"; version="1.1"; sha256="0znrb6xqyzddd1r999rhx6ix6wgpj1laf5bcns7zgmq6zb39j74s"; depends=[ade4 dismo raster rworldmap]; }; -visNetwork = derive { name="visNetwork"; version="0.1.0"; sha256="1sm88wgr5grcqszdi1ifbb6vvjsy0l533q55fgkbvmkg34rn2j2c"; depends=[htmlwidgets magrittr rjson]; }; +visNetwork = derive { name="visNetwork"; version="0.1.1"; sha256="02g38g90k6vqbjysl51k72x1waz9pqvzr1dlp2h2104kr4w2y0wh"; depends=[htmltools htmlwidgets magrittr rjson]; }; visreg = derive { name="visreg"; version="2.2-0"; sha256="1hnyrfgyk5fign5l35aql2q7q4mmw3jby5pkv696h8k1mc8qq096"; depends=[lattice]; }; visualFields = derive { name="visualFields"; version="0.4.2"; sha256="14plg94g4znl8n6798na2rivjjamjgayqkk1qwn1nx5df040l4q5"; depends=[flip gridBase Hmisc matrixStats]; }; visualize = derive { name="visualize"; version="4.2"; sha256="1jgk7j0f3p72wbqnmplrgpy7hlh7k2cmvx83gr2zfnbhygdi22mk"; depends=[]; }; @@ -6856,14 +7117,17 @@ vows = derive { name="vows"; version="0.4"; sha256="0cc0znrnzhfgp47dsyncjh7b072m vrmlgen = derive { name="vrmlgen"; version="1.4.9"; sha256="0lifhhf41yml4k83wpkssl14jgn8jaw1lcknwbci1sd8s1c4478l"; depends=[]; }; vrtest = derive { name="vrtest"; version="0.97"; sha256="00hdgb0r18nwv3qay97b09kqqw9xqsbya06rrjyddqh9r6ggx1y0"; depends=[]; }; vscc = derive { name="vscc"; version="0.2"; sha256="1p14v8vd8kckd44g4dvzh51gdkd8jvsc4bkd2i4csx8vjiwrni5w"; depends=[mclust teigen]; }; +vtreat = derive { name="vtreat"; version="0.5.16"; sha256="0lhpqv07255kl0grj3x1avwjpzjm17acvsyriqwww7iv6gx9nx28"; depends=[]; }; vudc = derive { name="vudc"; version="1.0"; sha256="1xjbjfya4zn94arc76pcfflc2dcn40qj1fkzwnzqz70czc2msppw"; depends=[]; }; vwr = derive { name="vwr"; version="0.3.0"; sha256="1h790vjcdfngs1siwldvqz8jrxpkajl3266lzadfnmchfan1x7xv"; depends=[lattice latticeExtra stringdist]; }; +wBoot = derive { name="wBoot"; version="1.0.1"; sha256="1yh89iqfv0qlalasg2a1fn0riqy49zy4wnvywqdh3qs369rmyaw5"; depends=[boot simpleboot]; }; wSVM = derive { name="wSVM"; version="0.1-7"; sha256="0c7rblzgagwfb8mmddkc0nd0f9rv6kapw8znpwapv3fv0j2qzq7h"; depends=[MASS quadprog]; }; waffect = derive { name="waffect"; version="1.2"; sha256="0r5dvm0ggyxyv81hxdr1an658wkqkhqq2xaqzqpnh4sh4wbak35a"; depends=[Rcpp]; }; waffle = derive { name="waffle"; version="0.3.1"; sha256="0z6snwf29n1p1i4zc3hx95yq388jgw8v3mcmjhsa2w95zsz9dxr0"; depends=[ggplot2 gridExtra gtable RColorBrewer]; }; wahc = derive { name="wahc"; version="1.0"; sha256="1324xhajgmxq6dxzpnkcvxdpm2m3g47drhyb2b3h227cn3aakxyg"; depends=[]; }; +walkr = derive { name="walkr"; version="0.3.3"; sha256="0gyfhpar667ni5g8g0fwq4zgia3xkf5k9knhgvycq8jf554yxyl6"; depends=[ggplot2 hitandrun limSolve MASS Rcpp RcppEigen shinystan]; }; walkscoreAPI = derive { name="walkscoreAPI"; version="1.2"; sha256="1c2gfkl5yl3mkviah8s8zjnqk6lnzma1yilxgfxckdh5wywi39fx"; depends=[]; }; -warbleR = derive { name="warbleR"; version="1.0.2"; sha256="1mcdqn2zs0dq0mk3lnnm6h17yb1dp5p4a3vxazqx8sjc2fdwpbzi"; depends=[fftw maps pbapply RCurl rjson seewave tuneR]; }; +warbleR = derive { name="warbleR"; version="1.0.3"; sha256="1qqzqhmi0azh70z9sd2vml2sqx0rg91gfsyjylg2q1zcjihlf4vk"; depends=[fftw maps pbapply RCurl rjson seewave tuneR]; }; wasim = derive { name="wasim"; version="1.1.2"; sha256="1zydzw7cihhdwv0474fnc4lgaq5fwrv8jinz79vkbidbgcy7i2fd"; depends=[fast MASS qualV tiger]; }; waterData = derive { name="waterData"; version="1.0.4"; sha256="0wk49f079jfbjncyirdvq50wswf9g361iivshjfhyndv83gbqrzk"; depends=[lattice latticeExtra XML]; }; waveband = derive { name="waveband"; version="4.6"; sha256="1y2qi2zb8l2ap6f8ihnpq2yavic464bl5mp5yv1dscbk0nmfn966"; depends=[wavethresh]; }; @@ -6873,16 +7137,20 @@ wavemulcor = derive { name="wavemulcor"; version="1.2"; sha256="1039y5rakjkx2mvf waveslim = derive { name="waveslim"; version="1.7.5"; sha256="0lqslkihgrd7rbihqhhk57m9vkbnfsznkvk8430cvbcsn7vridii"; depends=[]; }; wavethresh = derive { name="wavethresh"; version="4.6.6"; sha256="1ykhfw1bdibvq2b3rrgqszvwqmzkd3fgxqg7p36ms1cxph68g2r9"; depends=[MASS]; }; wbs = derive { name="wbs"; version="1.3"; sha256="1fdf3dj23n63nfnzafq88sxqvi15cbrzsvc8wrljw1raq5z012yv"; depends=[]; }; +wbsts = derive { name="wbsts"; version="0.3"; sha256="1h749j20q30lrn3b4ffcap3mvxjpih1gchvv8yag0gbzcs0wc1fm"; depends=[mvtnorm wmtsa]; }; +wccsom = derive { name="wccsom"; version="1.2.11"; sha256="0f2p7sllp3916lcf02k179pnl17fdmk8s7bjnkwb93kh513rs1yj"; depends=[class kohonen MASS]; }; weatherData = derive { name="weatherData"; version="0.4.1"; sha256="19ynb9w52ay15awaf4bqm9lj2w6pk70lyaipn46jrspwxqsvfhlc"; depends=[plyr]; }; -weatherr = derive { name="weatherr"; version="0.1"; sha256="06ig2l5wiy8irzpzrv3q2lx3il9b4jsn5jxccm8b37g8i89v2jfp"; depends=[ggmap lubridate RJSONIO XML]; }; -webchem = derive { name="webchem"; version="0.0.1"; sha256="0hfsjaffxz78mxxh2wx5api2blnpg5y16lyc0jf1zmq7zkhccx3l"; depends=[RCurl RJSONIO XML]; }; +weatherr = derive { name="weatherr"; version="0.1.2"; sha256="11sb5bmqccqkvlabsw4siy9n6ivsrvxavywvaffgrs3blmnygql9"; depends=[ggmap lubridate RJSONIO XML]; }; +webchem = derive { name="webchem"; version="0.0.3.1"; sha256="0cpi12qr7qwlw95wbhwlx6xwbi4d3zk2dd2iavf8csz6kyrvdpyw"; depends=[jsonlite RCurl stringr XML]; }; webreadr = derive { name="webreadr"; version="0.3.0"; sha256="1xbp1mmqabl9kdg07ysqva5rxfm59q698hm8av481hd3ggcqvv98"; depends=[Rcpp readr]; }; webuse = derive { name="webuse"; version="0.1.2"; sha256="0ks3pb9ir778j9x4l0s4ly2xa1jc9syddqm65wkck52q3lrarg3l"; depends=[haven]; }; webutils = derive { name="webutils"; version="0.3"; sha256="1wzpwigc5mmdnz453qr4s1viaslgdrcg238n25qcg4xjakmnxrss"; depends=[jsonlite]; }; webvis = derive { name="webvis"; version="0.0.2"; sha256="1cdn9jrpg2sbx4dsj0xf7m0daqr7fqiw3xy1lg0i0qn9cpvi348f"; depends=[]; }; +wec = derive { name="wec"; version="0.1"; sha256="0mg310v066k52g3isxmsgda44sys4pdl9365470z61c7dz2smy5q"; depends=[]; }; +weightTAPSPACK = derive { name="weightTAPSPACK"; version="0.1"; sha256="0kpfw477qka5qrc6sh73had38xbrwrqp1yv0dj2qiihkiyrp67ks"; depends=[HotDeckImputation mice plyr survey]; }; weightedScores = derive { name="weightedScores"; version="0.9.1"; sha256="0wd2ymxy8yh3l4xd3xgifbihi89h53wy6n84x7x26px12c70q8fa"; depends=[mvtnorm rootSolve]; }; weights = derive { name="weights"; version="0.80"; sha256="147fgs99sg1agq081ikj2fhb4b2vzsppdg1h1w036bb92vsjb0g5"; depends=[gdata Hmisc]; }; -weirs = derive { name="weirs"; version="0.24"; sha256="15iffimdr01m92wq6srb49vf900c3cbipj99sk7rxbqbdzbb0y6g"; depends=[]; }; +weirs = derive { name="weirs"; version="0.25"; sha256="17a0ppi7ghikrwn39zvhg2cvhmnr3w0qi7r9lj22x65ii9nzadd7"; depends=[]; }; wesanderson = derive { name="wesanderson"; version="0.3.2"; sha256="17acf9ydi2sw7q887ni9ly12mdmip66ix6gdkh68rncj8sx3csrd"; depends=[]; }; wfe = derive { name="wfe"; version="1.3"; sha256="16b39i60x10kw6yz44ff19h638s9lsgnz8azc76zl9b8s64jliya"; depends=[arm MASS Matrix]; }; wgaim = derive { name="wgaim"; version="1.4-10"; sha256="0wf6j7f7hn2cnsb9yi28rjl7sa60zjggg62i00039b7gxcznxj1r"; depends=[lattice qtl]; }; @@ -6893,12 +7161,13 @@ whoapi = derive { name="whoapi"; version="0.1.0"; sha256="01hi47da4i482ma7fzyk7i widals = derive { name="widals"; version="0.5.4"; sha256="1bl59s1r4gkvq4nkf94fk7m0zvhbrszkgmig66lfxhyvk9r84fvb"; depends=[snowfall]; }; widenet = derive { name="widenet"; version="0.1-2"; sha256="1nimm8szbg82vg00f5c7b3f3sk0gplssbl4ggasjnh7dl621vfny"; depends=[glmnet relaxnet]; }; wikibooks = derive { name="wikibooks"; version="0.2"; sha256="178lhri1b8if2j7y7l9kqgyvmkn4z0bxp5l4dmm97x3pav98c7ks"; depends=[]; }; -wikipediatrend = derive { name="wikipediatrend"; version="1.1.6"; sha256="1yw22zs1rx4x8hk3fi4f0hbxmic102j9gj62dzwmsk6k02s6wvgw"; depends=[httr jsonlite RCurl rvest stringr]; }; +wikipediatrend = derive { name="wikipediatrend"; version="1.1.7"; sha256="0qsxgzpn3jalwc4rm3dizn7mnwwbiydlpzxkps1pq37srb97zwsn"; depends=[httr jsonlite RCurl rvest stringr xml2]; }; wildlifeDI = derive { name="wildlifeDI"; version="0.2"; sha256="0z8zyrl3d73x2j32l6xqz5nwhygzy7c9sjfp6bql5acyfvn7ngjv"; depends=[adehabitatLT rgeos sp]; }; windex = derive { name="windex"; version="1.0"; sha256="0ci10x6mm5i03j05fyadxa0ic0ngpyp5nsn05p9m7v1is5jhxci0"; depends=[ape geiger scatterplot3d]; }; wiod = derive { name="wiod"; version="0.3.0"; sha256="1f151xmc6bm5d28w5123nm0hv7j1v8hay4jk5fk8pwn6yljl1pah"; depends=[decompr gvc]; }; +withr = derive { name="withr"; version="1.0.0"; sha256="1833ln4z04v62lymjcwhqf8zf6r8i6bmk8w376xaia99wssh0vfz"; depends=[]; }; witness = derive { name="witness"; version="1.2"; sha256="1pccn7czm1q0w31zpmky5arkcbnfl94gh1nnkf8kmcccdrr3lxph"; depends=[]; }; -wkb = derive { name="wkb"; version="0.1-0"; sha256="0ynamg8zrk80j5ysyg7pymdcxzlscbhhygp8czmsd33p2y31pggd"; depends=[sp]; }; +wkb = derive { name="wkb"; version="0.2-0"; sha256="04mljw7mw6cgmvzhcqw15pmqbmm61w8ylgh9f4r4k23c4qcpbmjl"; depends=[sp]; }; wle = derive { name="wle"; version="0.9-9"; sha256="032zqfqg6ghg56zgr005g8q94zskmbzv1p08lxv227ikkbmnwn53"; depends=[circular]; }; wmlf = derive { name="wmlf"; version="0.1.2"; sha256="0zxw84l5v12r15hpyd1kbajjz3cbkn5g884kmj72y7yi0yi1b6d6"; depends=[waveslim]; }; wmtsa = derive { name="wmtsa"; version="2.0-0"; sha256="0y2bv166xwwpb1wf6897qybyf84f34qjsmygdbv90r637c050yk5"; depends=[ifultools MASS splus2R]; }; @@ -6911,7 +7180,8 @@ wordnet = derive { name="wordnet"; version="0.1-10"; sha256="1k0ncxqsvv5vd5xm6nx wpp2008 = derive { name="wpp2008"; version="1.0-1"; sha256="0gd3vjw1fpzhp3qlf1jpc24f76i0pxsjs5pb1v3k2si6df7q4msd"; depends=[]; }; wpp2010 = derive { name="wpp2010"; version="1.2-0"; sha256="1h87r1cn4lnx80dprvawsyzfkriscqjgr27gvv7n19wvsx8qd57k"; depends=[]; }; wpp2012 = derive { name="wpp2012"; version="2.2-1"; sha256="00283s4r36zzwn67fydrl7ldg6jhn14qkf47h0ifmsky95bd1n5k"; depends=[]; }; -wppExplorer = derive { name="wppExplorer"; version="1.6-2"; sha256="1y9mdghq4is81gabx47pm1kfay67zv3b9hxz58lhml68wwwsfmsj"; depends=[ggplot2 googleVis Hmisc plyr reshape2 shiny wpp2012]; }; +wpp2015 = derive { name="wpp2015"; version="1.0-0"; sha256="012m4sbrswiq9rsy6hsammnv46cr4ld4rr1dk0rwrhzjv628b0jm"; depends=[]; }; +wppExplorer = derive { name="wppExplorer"; version="1.7-1"; sha256="1scxvx0kl1s9yhwrynd65c73b6q3lrz9n26kxcw2zwfzb0c5i1j7"; depends=[DT ggplot2 googleVis Hmisc plyr reshape2 shiny wpp2015]; }; wq = derive { name="wq"; version="0.4.4"; sha256="1c99jr6wzalz2k7m85j6k1rmv33vrijkrrg24kjr6i08b4xgsxc5"; depends=[ggplot2 reshape2 zoo]; }; wrassp = derive { name="wrassp"; version="0.1.3"; sha256="1xza4w5dgc6gda9ybmq386jnb1gkahdi6sds5dqay7pm5mjql6fl"; depends=[]; }; write_snns = derive { name="write.snns"; version="0.0-4.2"; sha256="0sxg7z8rnh4lssbivkrfxldv4ivy37wkndzzndpbvq2gbvbjnp4l"; depends=[]; }; @@ -6919,22 +7189,23 @@ wrspathrow = derive { name="wrspathrow"; version="0.1"; sha256="1xkh12aal85qhk8d wrspathrowData = derive { name="wrspathrowData"; version="1.0"; sha256="0a1aggcll0fmkwfg4h7rs4j5h3v1bh95dkbriwrb0bx0cikg63x3"; depends=[]; }; wskm = derive { name="wskm"; version="1.4.28"; sha256="0d9hcriakg6fxzc8wjsahc4zkyjza31mb9dv2h4xcf8298xa96i4"; depends=[clv lattice latticeExtra]; }; wsrf = derive { name="wsrf"; version="1.5.24"; sha256="0wgc4whxfsdl5wcr2i6bj9nvn49kfg35ldl7s8ca9aqmii7m5rzl"; depends=[Rcpp]; }; -wtcrsk = derive { name="wtcrsk"; version="1.3"; sha256="1viddyms2d9q2hb9z788fcs8vp7gp6vzlsszcnyxgganfjsd85zy"; depends=[]; }; -wux = derive { name="wux"; version="2.0-2"; sha256="0y0pn1hr94wgr6v8xac4hf3g137rx1zr1vdplgpjz1k5v41xvagk"; depends=[abind class corpcor fields gdata Hmisc ncdf reshape rgdal rgeos rworldmap sp stringr]; }; +wtcrsk = derive { name="wtcrsk"; version="1.4"; sha256="0bc2iwd5gbzmci69ky5iimp7yrm8ags9dqxwba2zba1hsknplzvi"; depends=[]; }; +wux = derive { name="wux"; version="2.1-1"; sha256="02q9hb9vvw5bw3ficsw40zqkpiwkm9ydilzs7kpw1xw7mll3jr7x"; depends=[abind class corpcor fields gdata Hmisc ncdf reshape rgdal rgeos rworldmap sp stringr]; }; x_ent = derive { name="x.ent"; version="1.1.2"; sha256="0wbbhsnlm5yln72h648nz3y5w83kq9qvpw0pk56lsc1bafps712p"; depends=[ggplot2 jsonlite opencpu rJava statmod stringr venneuler xtable]; }; x12 = derive { name="x12"; version="1.6.0"; sha256="0bl50nva4ai8p24f9hr622m0fc5nmbjakn3rsvl79g050gjsd4i3"; depends=[stringr]; }; x12GUI = derive { name="x12GUI"; version="0.13.0"; sha256="1mga7g9gwb3nv2qs27lz4n9rp6j3svads28hql88sxaif6is3nk1"; depends=[cairoDevice Hmisc lattice RGtk2 stringr x12]; }; -xergm = derive { name="xergm"; version="1.5"; sha256="1gjdcvpi84s0cy52a27n872ygb50mqw0w5117s3h7v1j68w88wv8"; depends=[boot coda ergm igraph lme4 Matrix network Rcpp ROCR sna speedglm statnet statnet_common texreg vegan]; }; -xergm_common = derive { name="xergm.common"; version="1.5.1"; sha256="0fxgzbczqbbir8f70d9k5d3jbih4nc8fs3l41wjbbdi9lvafqa0l"; depends=[ergm]; }; +xergm = derive { name="xergm"; version="1.5.3"; sha256="0m12k4876zada4ibnfjvnzrdqp0ridbnrgd7fl8x3k5hvqzv2pni"; depends=[btergm tnam xergm_common]; }; +xergm_common = derive { name="xergm.common"; version="1.5.4"; sha256="1hqh46vpkzgykgp53ca8vdfx9cwyjdwbbvixz2vjjbjx6dycii9s"; depends=[ergm network]; }; xgboost = derive { name="xgboost"; version="0.4-2"; sha256="1m6jv1ww0cxqg87kq412akcwimj6i7ncg7anrbfhbq2h5v53brak"; depends=[data_table magrittr Matrix stringr]; }; xgobi = derive { name="xgobi"; version="1.2-15"; sha256="03ym5mm16rb1bdwrymr393r3xgprp0ign45ryym3g0x2zi8dy557"; depends=[]; }; xhmmScripts = derive { name="xhmmScripts"; version="1.1"; sha256="1qryyb34jx9c64l8bnwp40b08y81agdj5w0icj8dk052x50ip1hl"; depends=[gplots plotrix]; }; xkcd = derive { name="xkcd"; version="0.0.4"; sha256="1hwr3ylgflzizgp8ffwdv9cgcngpjwmpxvgrvg8ad89a40l1mxcr"; depends=[extrafont ggplot2 Hmisc]; }; xlsx = derive { name="xlsx"; version="0.5.7"; sha256="0qxkdpf1dvi0x7fy65abjx2j60rdx7fv5yi8l2wdm0f2631pnwin"; depends=[rJava xlsxjars]; }; xlsxjars = derive { name="xlsxjars"; version="0.6.1"; sha256="1rka5smm7yqnhhlblpihhciydfap4i6kjaa4a7isdg7qjmzm3h9p"; depends=[rJava]; }; -xml2 = derive { name="xml2"; version="0.1.1"; sha256="1k6xzgx87vqzg1lkc1jaxxlw7zyhzqsis51q5p9jn0q3pw02qf53"; depends=[BH Rcpp]; }; +xml2 = derive { name="xml2"; version="0.1.2"; sha256="0jjilz36h7vbdbkpvjnja1vgjf6d1imql3z4glqn2m2b74w5qm4c"; depends=[BH Rcpp]; }; xoi = derive { name="xoi"; version="0.61-1"; sha256="0ypy0rb0f0bns41vjzyln04k3hypgr3wysqbdi0b0r14ip5rb47k"; depends=[qtl]; }; xpose4 = derive { name="xpose4"; version="4.5.3"; sha256="02m3ad4287ljsi4qrzwd84lfj1y6rz9nias2zk4cbqm14gf19pdf"; depends=[gam Hmisc lattice survival]; }; +xseq = derive { name="xseq"; version="0.2.1"; sha256="0bsakbfvkfv39q2ch2g21b17g84470sq4v73355cljlshsi6404i"; depends=[e1071 gptk impute preprocessCore RColorBrewer sfsmisc]; }; xtable = derive { name="xtable"; version="1.7-4"; sha256="1fvx4p058ygsyj9f4xb9k5h0fdi4zibadqrsn4qbx4am30qrlqj7"; depends=[]; }; xtal = derive { name="xtal"; version="1.0"; sha256="1717pl64nbliwbdg5fs6cwj7zvgrm00zlyj2dhi06yyg16gq1w8k"; depends=[]; }; xtermStyle = derive { name="xtermStyle"; version="3.0.5"; sha256="1q4qq8w4sgxbbb1x0i4k5xndvwisvjszg830wspwb37wigxz8xvz"; depends=[]; }; @@ -6951,11 +7222,11 @@ yuima = derive { name="yuima"; version="1.0.73"; sha256="1nb91c3ii643sdw5yn8q55g zCompositions = derive { name="zCompositions"; version="1.0.3"; sha256="0lxy201ys9dvv8c09q8wbks1c2jkjyd1bbrxhjr7zi9j7m0parl7"; depends=[MASS NADA truncnorm]; }; zendeskR = derive { name="zendeskR"; version="0.4"; sha256="06cjwk08w3x6dx717123psinid5bx6c563jnfn890373jw6xnfrk"; depends=[RCurl rjson]; }; zetadiv = derive { name="zetadiv"; version="0.1"; sha256="1p9mxy70mgqxjn7szh44217nvhjh90237kp5znli1r01ch64mx6b"; depends=[car mgcv vegan]; }; -zic = derive { name="zic"; version="0.8.1"; sha256="05mn894qdx6k7158dbsjy2b49n0gz5xnmlixr2dhkxc12ydj6zs5"; depends=[coda Rcpp RcppArmadillo]; }; +zic = derive { name="zic"; version="0.9"; sha256="0i39983blc46vjbb4y36rypg9q3zammxahk63p089m43gi22ycxh"; depends=[coda Rcpp RcppArmadillo]; }; zipcode = derive { name="zipcode"; version="1.0"; sha256="1lvlf1h5fv412idpdssjfh4fki933dm5nhr41ppl1mf45b9j7azn"; depends=[]; }; zipfR = derive { name="zipfR"; version="0.6-6"; sha256="1y3nqfjg5m89mdvcmqwjmwlc8p3hpcqnwv4ji1a7ggg4n63lwl3j"; depends=[]; }; zoeppritz = derive { name="zoeppritz"; version="1.0-5"; sha256="0a501411gjs02vvhxdy8z3a5449arkamdidf2q6qswkkiv68qq04"; depends=[]; }; -zoib = derive { name="zoib"; version="1.3.0"; sha256="15i2gczc6sh0vyi51k105qd3bymwkpbpv2xm99jwflpa170yd8jp"; depends=[coda Formula matrixcalc rjags]; }; +zoib = derive { name="zoib"; version="1.3.2"; sha256="0622zn7z2q1i09wqjjbnb77vg0jjbkp5a49vgyzqx2772ma4m4yc"; depends=[abind coda Formula matrixcalc rjags]; }; zoo = derive { name="zoo"; version="1.7-12"; sha256="1n64pdmk2vrmiprwkncaaf936c97nlc1l78bvmzp991rijr9vqg5"; depends=[lattice]; }; zooaRch = derive { name="zooaRch"; version="1.1"; sha256="1a4cbayw5qj9wp925g06a1djiravh7yg3w7vdxzaks5a16pwv5li"; depends=[ggplot2]; }; zooimage = derive { name="zooimage"; version="3.0-5"; sha256="1r3slmyw0dyqfa40dr5xga814z09ibhmmby8p1cii5lh61xm4c39"; depends=[filehash jpeg mlearning png svDialogs svMisc]; }; diff --git a/pkgs/development/r-modules/default.nix b/pkgs/development/r-modules/default.nix index a9d81f028f4..0b0bf4871ac 100644 --- a/pkgs/development/r-modules/default.nix +++ b/pkgs/development/r-modules/default.nix @@ -592,7 +592,6 @@ let "RcmdrPlugin_SLC" "RcmdrPlugin_SM" "RcmdrPlugin_sos" - "RcmdrPlugin_StatisticalURV" "RcmdrPlugin_steepness" "RcmdrPlugin_survival" "RcmdrPlugin_TeachingDemos" @@ -675,15 +674,25 @@ let # Packages which cannot be installed due to lack of dependencies or other reasons. brokenPackages = [ "a4Base" # depends on broken package annaffy-1.41.1 + "a4Classif" # broken build + "a4Core" # broken build "a4" # depends on broken package annaffy-1.41.1 + "a4Preproc" # broken build "a4Reporting" # depends on broken package annaffy-1.41.1 + "ABAEnrichment" # broken build + "ABarray" # broken build "abd" # depends on broken package nlopt-2.4.2 + "aCGH" # broken build + "ACME" # broken build "Actigraphy" # Build Is Broken "adabag" # depends on broken package nlopt-2.4.2 "ADaCGH2" # depends on broken package tilingArray-1.47.0 + "adhoc" # broken build "adSplit" # build is broken "AER" # depends on broken package nlopt-2.4.2 "afex" # depends on broken package nlopt-2.4.2 + "AffyCompatible" # broken build + "affycomp" # broken build "affyContam" # depends on broken package affyio-1.37.0 "affycoretools" # depends on broken package affyio-1.37.0 "affy" # depends on broken package affyio-1.37.0 @@ -697,9 +706,13 @@ let "affyQCReport" # depends on broken package affyio-1.37.0 "AffyRNADegradation" # depends on broken package affyio-1.37.0 "AffyTiling" # depends on broken package affyio-1.37.0 + "AGDEX" # broken build "AgiMicroRna" # depends on broken package affyio-1.37.0 "agRee" # depends on broken package nlopt-2.4.2 + "AIMS" # broken build + "ALDEx2" # broken build "aLFQ" # depends on broken package nlopt-2.4.2 + "algstat" # broken build "AllelicImbalance" # depends on broken package Rsamtools-1.21.8 "alr3" # depends on broken package nlopt-2.4.2 "alr4" # depends on broken package nlopt-2.4.2 @@ -707,15 +720,28 @@ let "altcdfenvs" # depends on broken package affyio-1.37.0 "ampliQueso" # depends on broken package Rsamtools-1.21.8 "anacor" # depends on broken package nlopt-2.4.2 + "AnalysisPageServer" # broken build + "animation" # broken build + "anim_plots" # broken build "annaffy" # build is broken "annmap" # depends on broken package Rsamtools-1.21.8 + "annotate" # broken build + "AnnotationDbi" # broken build "AnnotationForge" # Build Is Broken + "AnnotationFuncs" # broken build + "AnnotationHubData" # depends on broken package r-AnnotationForge-1.11.19 "AnnotationHub" # depends on broken package interactiveDisplayBase-1.7.0 + "annotationTools" # broken build + "anota" # broken build "aods3" # depends on broken package nlopt-2.4.2 + "aop" # broken build + "apaTables" # depends on broken package r-car-2.1-0 "apComplex" # build is broken + "apmsWAPP" # broken build "apt" # depends on broken package nlopt-2.4.2 "ArfimaMLM" # depends on broken package nlopt-2.4.2 "arm" # depends on broken package nlopt-2.4.2 + "ArrayBin" # broken build "ArrayExpress" # depends on broken package affyio-1.37.0 "ArrayExpressHTS" # depends on broken package Rsamtools-1.21.8 "arrayMvout" # depends on broken package affyio-1.37.0 @@ -723,68 +749,133 @@ let "ArrayTools" # depends on broken package affyio-1.37.0 "ArrayTV" # depends on broken package affyio-1.37.0 "ARRmNormalization" # Build Is Broken + "ART" # depends on broken package ar-car-2.1-0 "ARTool" # depends on broken package nlopt-2.4.2 + "AssetPricing" # broken build + "AtelieR" # broken build "attract" # depends on broken package AnnotationForge-1.11.3 + "AutoModel" # depends on broken package r-car-2.1-0 + "babel" # broken build "BACA" # depends on broken package Category-2.35.1 + "backShift" # broken build "BAGS" # build is broken "ballgown" # depends on broken package Rsamtools-1.21.8 "bamsignals" # build is broken + "bapred" # depends on broken package r-lme4-1.1-9 "bartMachine" # depends on broken package nlopt-2.4.2 "Basic4Cseq" # depends on broken package Rsamtools-1.21.8 "bayesDem" # depends on broken package nlopt-2.4.2 "bayesLife" # depends on broken package nlopt-2.4.2 + "BayesPeak" # broken build "bayesPop" # depends on broken package nlopt-2.4.2 "Bayesthresh" # depends on broken package nlopt-2.4.2 + "bayou" # broken build + "baySeq" # broken build + "BBCAnalyzer" # depends on broken package r-Rsamtools-1.21.18 "BBRecapture" # depends on broken package nlopt-2.4.2 "BCA" # depends on broken package nlopt-2.4.2 + "BcDiag" # broken build + "BCRANK" # broken build + "beadarray" # broken build + "beadarrayFilter" # broken build + "beadarrayMSV" # broken build + "beadarraySNP" # broken build "BEAT" # depends on broken package Rsamtools-1.21.8 + "bedr" # broken build + "betr" # broken build "bgmm" # depends on broken package nlopt-2.4.2 "bgx" # depends on broken package affyio-1.37.0 + "BicARE" # broken build "BIFIEsurvey" # depends on broken package nlopt-2.4.2 "bigGP" # build is broken "BiGGR" # depends on broken package rsbml-2.27.0 + "bigmemoryExtras" # broken build + "bioassayR" # broken build + "Biobase" # broken build + "BiocCaseStudies" # broken build + "BiocCheck" # broken build + "BiocGenerics" # broken build + "biocGraph" # broken build + "biocViews" # broken build + "bioDist" # broken build "BiodiversityR" # depends on broken package nlopt-2.4.2 + "biomaRt" # broken build + "biomartr" # broken build + "BioMVCClass" # broken build "biomvRCNS" # depends on broken package Rsamtools-1.21.8 + "BioNet" # broken build + "BioSeqClass" # broken build + "Biostrings" # broken build + "biosvd" # broken build "biotools" # depends on broken package rpanel-1.1-3 "biovizBase" # depends on broken package Rsamtools-1.21.8 + "birta" # broken build "birte" # build is broken + "bisectr" # broken build "BiSEp" # depends on broken package GOSemSim-1.27.3 "BiSeq" # depends on broken package Rsamtools-1.21.8 "BitSeq" # depends on broken package Rsamtools-1.21.8 "BLCOP" # depends on broken package Rsymphony-0.1-20 + "blima" # broken build "blmeco" # depends on broken package nlopt-2.4.2 "blme" # depends on broken package nlopt-2.4.2 "bmd" # depends on broken package nlopt-2.4.2 "bmem" # depends on broken package nlopt-2.4.2 + "BMhyd" # broken build + "bnclassify" # broken build "bootnet" # depends on broken package nlopt-2.4.2 "boss" # depends on broken package nlopt-2.4.2 "BradleyTerry2" # depends on broken package nlopt-2.4.2 + "BrailleR" # broken build + "BRAIN" # broken build + "BrainStars" # broken build + "BrowserViz" # broken build + "BrowserVizDemo" # broken build + "brr" # broken build "BRugs" # build is broken "BSgenome" # depends on broken package Rsamtools-1.21.8 + "bsseq" # broken build + "BubbleTree" # depends on broken package r-biovizBase-1.17.2 "bumphunter" # depends on broken package Rsamtools-1.21.8 "CADFtest" # depends on broken package nlopt-2.4.2 "CAFE" # depends on broken package affyio-1.37.0 "CAGEr" # depends on broken package Rsamtools-1.21.8 "cAIC4" # depends on broken package nlopt-2.4.2 "CAMERA" # depends on broken package mzR-2.3.1 + "cancerclass" # broken build "canceR" # depends on broken package Category-2.35.1 + "CancerMutationAnalysis" # broken build "candisc" # depends on broken package nlopt-2.4.2 "carcass" # depends on broken package nlopt-2.4.2 "car" # depends on broken package nlopt-2.4.2 + "Cardinal" # broken build "caret" # depends on broken package nlopt-2.4.2 "caretEnsemble" # depends on broken package nlopt-2.4.2 + "caRpools" # broken build "CARrampsOcl" # depends on broken package OpenCL-0.1-3 "casper" # depends on broken package Rsamtools-1.21.8 + "cate" # broken build "Category" # Build Is Broken "categoryCompare" # depends on broken package Category-2.35.1 + "Causata" # broken build "CCpop" # depends on broken package nlopt-2.4.2 + "cdcfluview" # broken build "cellHTS2" # depends on broken package Category-2.35.1 + "cellHTS" # broken build + "CellNOptR" # broken build "CexoR" # depends on broken package Rsamtools-1.21.8 + "CGHbase" # broken build + "CGHcall" # broken build + "cghMCR" # broken build + "CGHnormaliter" # broken build + "CGHregions" # broken build "ChainLadder" # depends on broken package nlopt-2.4.2 "ChAMP" # depends on broken package affyio-1.37.0 "charm" # depends on broken package affyio-1.37.0 + "ChemmineOB" # broken build "ChemmineR" # Build Is Broken "chimera" # depends on broken package Rsamtools-1.21.8 + "ChIPComp" # depends on broken package r-Rsamtools-1.21.18 "chipenrich" # build is broken "chipPCR" # depends on broken nloptr-1.0.4 "ChIPpeakAnno" # depends on broken package Rsamtools-1.21.8 @@ -794,34 +885,57 @@ let "ChIPseqR" # depends on broken package Rsamtools-1.21.8 "ChIPsim" # depends on broken package Rsamtools-1.21.8 "ChIPXpress" # depends on broken package affyio-1.37.0 + "chroGPS" # broken build + "chromDraw" # broken build "ChromHeatMap" # depends on broken package Rsamtools-1.21.8 + "Claddis" # broken build + "classGraph" # broken build + "ClassifyR" # broken build "cleanUpdTSeq" # depends on broken package Rsamtools-1.21.8 + "cleaver" # broken build + "clere" # broken build "climwin" # depends on broken package nlopt-2.4.2 + "clippda" # broken build "clipper" # depends on broken package Rsamtools-1.21.8 "CLME" # depends on broken package nlopt-2.4.2 "clpAPI" # build is broken "clusterPower" # depends on broken package nlopt-2.4.2 "clusterProfiler" # depends on broken package GOSemSim-1.27.3 "clusterSEs" # depends on broken AER-1.2-4 + "clusterStab" # broken build "ClustGeo" # depends on broken FactoMineR-1.31.3 + "CMA" # broken build "CNEr" # depends on broken package Rsamtools-1.21.8 "cn_farms" # depends on broken package affyio-1.37.0 "cn_mops" # depends on broken package Rsamtools-1.21.8 + "CNORdt" # broken build + "CNORfeeder" # broken build "CNORfuzzy" # depends on broken package nlopt-2.4.2 + "CNORode" # broken build + "CNTools" # broken build + "cnvGSA" # broken build "CNVPanelizer" # depends on broken cn.mops-1.15.1 "CNVrd2" # depends on broken package Rsamtools-1.21.8 "cobindR" # depends on broken package Rsamtools-1.21.8 "CoCiteStats" # Build Is Broken + "codelink" # broken build "CODEX" # depends on broken package Rsamtools-1.21.8 + "cogena" # broken build "COHCAP" # build is broken "colorscience" "coMET" # depends on broken package Rsamtools-1.21.8 + "compcodeR" # broken build + "compendiumdb" # broken build "compEpiTools" # depends on broken package topGO-2.21.0 "CompGO" # depends on broken package Category-2.35.1 "conformal" # depends on broken package nlopt-2.4.2 "ConsensusClusterPlus" # Build Is Broken "conumee" # depends on broken package Rsamtools-1.21.8 + "convert" # broken build + "convevol" # broken build + "copa" # broken build "CopyNumber450k" # depends on broken package Rsamtools-1.21.8 + "copynumber" # broken build "CopywriteR" # depends on broken package Rsamtools-1.21.8 "corHMM" # depends on broken package nlopt-2.4.2 "Cormotif" # depends on broken package affyio-1.37.0 @@ -829,21 +943,44 @@ let "cosmiq" # depends on broken package mzR-2.3.1 "CosmoPhotoz" # depends on broken package nlopt-2.4.2 "CoverageView" # depends on broken package Rsamtools-1.21.8 + "covmat" # depends on broken package r-VIM-4.4.1 + "covr" # broken build + "cp4p" # broken build + "cpgen" # depends on broken package r-pedigreemm-0.3-3 "cplexAPI" # build is broken "cpvSNP" # depends on broken package Rsamtools-1.21.8 + "creditr" # broken build + "CRImage" # broken build "CRISPRseek" # depends on broken package Rsamtools-1.21.8 "crlmm" # depends on broken package affyio-1.37.0 + "crmn" # broken build "Crossover" # Build Is Broken "CrypticIBDcheck" # depends on broken package nlopt-2.4.2 + "CSAR" # broken build "csaw" # depends on broken package Rsamtools-1.21.8 + "ctsem" # depends on broken package r-OpenMx-2.2.6 "cudaBayesreg" # build is broken "cummeRbund" # depends on broken package Rsamtools-1.21.8 + "curvHDR" # broken build "customProDB" # depends on broken package Rsamtools-1.21.8 + "cycle" # broken build + "cytofkit" # broken build + "D2C" # broken build "daff" # depends on broken package V8-0.6 "dagbag" # build is broken "dagLogo" # depends on broken package Rsamtools-1.21.8 "DAMisc" # depends on broken package nlopt-2.4.2 + "DASiR" # broken build + "datafsm" # depends on broken package r-caret-6.0-52 + "DBChIP" # broken build + "dbConnect" # broken build "DBKGrad" # depends on broken package rpanel-1.1-3 + "dcGOR" # broken build + "ddCt" # broken build + "ddgraph" # broken build + "ddst" # broken build + "DECIPHER" # broken build + "DeconRNASeq" # broken build "Deducer" # depends on broken package nlopt-2.4.2 "DeducerExtras" # depends on broken package nlopt-2.4.2 "DeducerPlugInExample" # depends on broken package nlopt-2.4.2 @@ -853,21 +990,33 @@ let "DeducerText" # depends on broken package nlopt-2.4.2 "deepSNV" # depends on broken package Rsamtools-1.21.8 "DEGraph" # depends on broken package RCytoscape-1.19.0 + "DEGreport" # broken build "demi" # depends on broken package affyio-1.37.0 "derfinder" # depends on broken package Rsamtools-1.21.8 + "derfinderHelper" # broken build "derfinderPlot" # depends on broken package Rsamtools-1.21.8 + "DESeq2" # broken build + "DESeq" # broken build + "DESP" # broken build "destiny" # depends on broken package VIM-4.3.0 "DEXSeq" # depends on broken package Rsamtools-1.21.8 + "dexus" # broken build + "DFP" # broken build "DiagTest3Grp" # depends on broken package nlopt-2.4.2 "DiffBind" # depends on broken package AnnotationForge-1.11.3 + "DiffCorr" # broken build "diffHic" # depends on broken package rhdf5-2.13.1 "difR" # depends on broken package nlopt-2.4.2 + "diggit" # broken build "DirichletMultinomial" # Build Is Broken "discSurv" # depends on broken package nlopt-2.4.2 "DistatisR" # depends on broken package nlopt-2.4.2 "diveRsity" # depends on broken package nlopt-2.4.2 + "DMRcaller" # broken build "DMRcate" # depends on broken package Rsamtools-1.21.8 "DMRforPairs" # depends on broken package Rsamtools-1.21.8 + "dnet" # broken build + "docxtractr" # broken build "domainsignatures" # build is broken "doMPI" # build is broken "DOQTL" # depends on broken package Rsamtools-1.21.8 @@ -878,12 +1027,23 @@ let "drfit" # depends on broken package nlopt-2.4.2 "drsmooth" # depends on broken package nlopt-2.4.2 "DrugVsDisease" # depends on broken package affyio-1.37.0 + "DSS" # broken build "dualKS" # depends on broken package affyio-1.37.0 + "dupRadar" # depends on broken package r-Rsubread-1.19.5 + "dyebias" # broken build "dynlm" # depends on broken package nlopt-2.4.2 "easyanova" # depends on broken package nlopt-2.4.2 "easyRNASeq" # depends on broken package Rsamtools-1.21.8 + "EBarrays" # broken build + "EBcoexpress" # broken build + "EBImage" # broken build + "ecolitk" # broken build "EDASeq" # depends on broken package Rsamtools-1.21.8 + "EDDA" # broken build "edge" # depends on broken package nlopt-2.4.2 + "edgeR" # broken build + "edgeRun" # broken build + "edmr" # broken build "eeptools" # depends on broken package nlopt-2.4.2 "EffectLiteR" # depends on broken package nlopt-2.4.2 "effects" # depends on broken package nlopt-2.4.2 @@ -891,18 +1051,28 @@ let "eisa" # depends on broken package Category-2.35.1 "ELMER" # depends on broken package Rsamtools-1.21.8 "EMA" # depends on broken package nlopt-2.4.2 + "embryogrowth" # broken build + "emg" # broken build + "empiricalFDR_DESeq2" # broken build "ENmix" # depends on broken package affyio-1.37.0 "EnQuireR" # depends on broken package nlopt-2.4.2 + "EnrichedHeatmap" # broken build "EnrichmentBrowser" # depends on broken package r-EDASeq-2.3.2 "ensembldb" # depends on broken package interactiveDisplayBase-1.7.0 "ensemblVEP" # depends on broken package Rsamtools-1.21.8 "epigenomix" # depends on broken package Rsamtools-1.21.8 "episplineDensity" # depends on broken package nlopt-2.4.2 "epivizr" # depends on broken package Rsamtools-1.21.8 + "epoc" # broken build "epr" # depends on broken package nlopt-2.4.2 + "erccdashboard" # broken build "erer" # depends on broken package nlopt-2.4.2 "erma" # depends on broken GenomicFiles-1.5.4 "erpR" # depends on broken package rpanel-1.1-3 + "ESKNN" # depends on broken package r-caret-6.0-52 + "eulerian" # broken build + "evobiR" # broken build + "evolqg" # broken build "ExiMiR" # depends on broken package affyio-1.37.0 "exomeCopy" # depends on broken package Rsamtools-1.21.8 "ExomeDepth" # depends on broken package Rsamtools-1.21.8 @@ -910,68 +1080,138 @@ let "ExpressionView" # depends on broken package Category-2.35.1 "extRemes" # depends on broken package nlopt-2.4.2 "ez" # depends on broken package nlopt-2.4.2 + "fabia" # broken build "facopy" # depends on broken package nlopt-2.4.2 + "factDesign" # broken build "FactoMineR" # depends on broken package nlopt-2.4.2 "Factoshiny" # depends on broken package nlopt-2.4.2 "faoutlier" # depends on broken package nlopt-2.4.2 "farms" # depends on broken package affyio-1.37.0 "fastLiquidAssociation" # depends on broken package LiquidAssociation-1.23.0 "fastR" # depends on broken package nlopt-2.4.2 + "fastseg" # broken build + "fdrDiscreteNull" # broken build "FDRreg" # depends on broken package nlopt-2.4.2 + "FedData" # broken build "FEM" # build is broken "ffpe" # depends on broken package affyio-1.37.0 + "FIACH" # broken build + "FindMyFriends" # broken build + "FISHalyseR" # broken build "flagme" # depends on broken package mzR-2.3.1 + "flipflop" # broken build + "flowBeads" # broken build + "flowBin" # broken build + "flowcatchR" # broken build + "flowCHIC" # broken build + "flowCL" # broken build + "flowClean" # broken build + "flowClust" # broken build + "flowCore" # broken build "flowDensity" # depends on broken package nlopt-2.4.2 + "flowFit" # broken build + "flowFP" # broken build + "flowMatch" # broken build + "flowMeans" # broken build + "flowMerge" # broken build "flowPeaks" # build is broken + "flowQB" # broken build "flowQ" # build is broken "FlowSOM" # depends on broken package ConsensusClusterPlus-1.23.0 "flowStats" # depends on broken package ncdfFlow-2.15.2 + "flowTrans" # broken build + "flowType" # broken build + "flowUtils" # broken build + "flowViz" # broken build "flowVS" # depends on broken package ncdfFlow-2.15.2 "flowWorkspace" # depends on broken package ncdfFlow-2.15.2 "fmcsR" # depends on broken package ChemmineR-2.21.7 + "focalCall" # broken build "FourCSeq" # depends on broken package Rsamtools-1.21.8 "fPortfolio" # depends on broken package Rsymphony-0.1-20 + "fracprolif" # broken build + "FreeSortR" # broken build "freqweights" # depends on broken package nlopt-2.4.2 "frma" # depends on broken package affyio-1.37.0 "frmaTools" # depends on broken package affyio-1.37.0 + "frmqa" # broken build "fscaret" # depends on broken package nlopt-2.4.2 + "fulltext" # broken build "FunciSNP" # depends on broken package snpStats-1.19.0 "FunctionalNetworks" # Build Is Broken "fxregime" # depends on broken package nlopt-2.4.2 + "gaga" # broken build + "gage" # broken build + "gaggle" # broken build "gamclass" # depends on broken package nlopt-2.4.2 "gamlss_demo" # depends on broken package rpanel-1.1-3 "gamm4" # depends on broken package nlopt-2.4.2 + "gaucho" # broken build + "gaussquad" # broken build "gCMAP" # depends on broken package Category-2.35.1 "gCMAPWeb" # depends on broken package Category-2.35.1 "gcmr" # depends on broken package nlopt-2.4.2 "gcrma" # depends on broken package affyio-1.37.0 "GDAtools" # depends on broken package nlopt-2.4.2 + "GeneAnswers" # broken build "GENE_E" # depends on broken package rhdf5-2.13.1 "GeneExpressionSignature" # depends on broken package annaffy-1.41.1 + "genefilter" # broken build + "genefu" # broken build + "GeneMeta" # broken build + "GeneNetworkBuilder" # broken build + "geneplotter" # broken build + "geneRecommender" # broken build + "GeneRegionScan" # broken build + "geneRxCluster" # broken build + "GeneSelectMMD" # broken build + "GeneSelector" # broken build + "GENESIS" # broken build + "geNetClassifier" # broken build "GeneticTools" # depends on broken package snpStats-1.19.0 "genomation" # depends on broken package Rsamtools-1.21.8 + "GenomeGraphs" # broken build + "GenomeInfoDb" # broken build + "genomeIntervals" # broken build + "genomes" # broken build "GenomicAlignments" # depends on broken package Rsamtools-1.21.8 "GenomicFeatures" # depends on broken package Rsamtools-1.21.8 "GenomicFiles" # depends on broken package Rsamtools-1.21.8 "GenomicInteractions" # depends on broken package Rsamtools-1.21.8 + "GenomicRanges" # broken build + "GenomicTuples" # broken build + "Genominator" # broken build + "genoset" # broken build "genotypeeval" # depends on broken package r-rtracklayer-1.29.12 "GenoView" # depends on broken package Rsamtools-1.21.8 "genridge" # depends on broken package nlopt-2.4.2 "geojsonio" # depends on broken package V8-0.6 + "GEOmetadb" # broken build + "geomorph" # broken build + "GEOquery" # broken build + "GEOsearch" # broken build "GEOsubmission" # depends on broken package affyio-1.37.0 "gespeR" # depends on broken package Category-2.35.1 "GEWIST" # depends on broken package nlopt-2.4.2 + "GExMap" # broken build + "gfcanalysis" # broken build "GGBase" # depends on broken package snpStats-1.19.0 "ggbio" # depends on broken package Rsamtools-1.21.8 "GGtools" # depends on broken package snpStats-1.19.0 + "ggtree" # broken build "gimme" # depends on broken package nlopt-2.4.2 "girafe" # depends on broken package Rsamtools-1.21.8 + "gitter" # broken build + "GlobalAncova" # broken build + "globaltest" # broken build "gmapR" # depends on broken package Rsamtools-1.21.8 "gmatrix" # depends on broken package cudatoolkit-5.5.22 "gMCP" # build is broken + "GOexpress" # broken build "GOFunction" # build is broken "GOGANPA" # depends on broken package WGCNA-1.47 "GoogleGenomics" # depends on broken package Rsamtools-1.21.8 + "googlesheets" # broken build "goProfiles" # build is broken "GOSemSim" # Build Is Broken "goseq" # build is broken @@ -979,78 +1219,153 @@ let "GOstats" # depends on broken package AnnotationForge-1.11.3 "GOTHiC" # depends on broken package Rsamtools-1.21.8 "goTools" # build is broken + "GPC" # broken build "gplm" # depends on broken package nlopt-2.4.2 "gputools" # depends on broken package cudatoolkit-5.5.22 + "gQTLBase" # depends on broken package r-GenomicFiles-1.5.8 "gQTLstats" # depends on broken package snpStats-1.19.0 + "gRain" # broken build "granova" # depends on broken package nlopt-2.4.2 + "GraphAT" # broken build + "graph" # broken build + "gRapHD" # broken build "graphicalVAR" # depends on broken package nlopt-2.4.2 + "graphite" # broken build + "GraphPAC" # broken build "GraphPCA" # depends on broken package nlopt-2.4.2 + "gRbase" # broken build + "gRc" # broken build "GreyListChIP" # depends on broken package Rsamtools-1.21.8 + "gridDebug" # broken build + "gridGraphviz" # broken build + "gRim" # broken build "groHMM" # depends on broken package Rsamtools-1.21.8 + "GSAgm" # broken build "GSCA" # depends on broken package rhdf5-2.13.1 + "GSEABase" # broken build + "GSEAlm" # broken build + "gsheet" # broken build + "GSRI" # broken build + "GSVA" # broken build "GUIDE" # depends on broken package rpanel-1.1-3 + "GUIProfiler" # broken build + "Guitar" # depends on broken package r-GenomicAlignments-1.5.18 "Gviz" # depends on broken package Rsamtools-1.21.8 "GWAF" # depends on broken package nlopt-2.4.2 "gwascat" # depends on broken package interactiveDisplayBase-1.7.0 + "GWASTools" # broken build "h2o" # build is broken "h5" # build is broken "h5vc" # depends on broken package rhdf5-2.13.1 + "hapFabia" # broken build "Harshlight" # depends on broken package affyio-1.37.0 + "hasseDiagram" # broken build "hbsae" # depends on broken package nlopt-2.4.2 + "HCsnip" # broken build + "hddplot" # broken build + "HELP" # broken build + "HEM" # broken build "heplots" # depends on broken package nlopt-2.4.2 "hiAnnotator" # depends on broken package Rsamtools-1.21.8 + "HiDimMaxStable" # broken build "hierGWAS" "HierO" # Build Is Broken "highriskzone" + "HilbertCurve" # broken build "HilbertVisGUI" # Build Is Broken "HiPLARM" # Build Is Broken "hiReadsProcessor" # depends on broken package Rsamtools-1.21.8 + "hisse" # broken build "HistDAWass" # depends on broken package nlopt-2.4.2 "HiTC" # depends on broken package Rsamtools-1.21.8 "HLMdiag" # depends on broken package nlopt-2.4.2 + "HMMcopy" # broken build + "hopach" # broken build + "hpcwld" # broken build + "hpoPlot" # broken build "HTqPCR" # depends on broken package affyio-1.37.0 "HTSanalyzeR" # depends on broken package Category-2.35.1 + "HTSCluster" # broken build "HTSeqGenie" # depends on broken package Rsamtools-1.21.8 "htSeqTools" # depends on broken package Rsamtools-1.21.8 + "HTSFilter" # broken build + "hwwntest" # broken build + "HybridMTest" # broken build + "HydeNet" # broken build + "hyperdraw" # broken build + "hypergraph" # broken build "hysteresis" # depends on broken package nlopt-2.4.2 "IATscores" # depends on broken package nlopt-2.4.2 "ibd" # depends on broken package nlopt-2.4.2 "ibh" # build is broken + "iBMQ" # broken build "iccbeta" # depends on broken package nlopt-2.4.2 "IdeoViz" # depends on broken package Rsamtools-1.21.8 + "idiogram" # broken build + "IdMappingAnalysis" # broken build + "IdMappingRetrieval" # broken build + "idm" # broken build "ifaTools" # depends on broken package r-OpenMx-2.2.6 "iFes" # depends on broken package cudatoolkit-5.5.22 "imageHTS" # depends on broken package Category-2.35.1 + "imager" # broken build + "immer" # depends on broken package r-sirt-1.8-9 "immunoClust" # build is broken + "imputeLCMD" # broken build "imputeR" # depends on broken package nlopt-2.4.2 "in2extRemes" # depends on broken package nlopt-2.4.2 "inferference" # depends on broken package nlopt-2.4.2 "influence_ME" # depends on broken package nlopt-2.4.2 "InPAS" # depends on broken package Rsamtools-1.21.8 + "inSilicoDb" # broken build "inSilicoMerging" # build is broken "INSPEcT" # depends on broken GenomicFeatures-1.21.13 "intansv" # depends on broken package Rsamtools-1.21.8 + "IntegratedJM" # broken build "interactiveDisplayBase" # build is broken "interactiveDisplay" # depends on broken package Category-2.35.1 "interplot" # depends on broken arm-1.8-5 + "ioncopy" # broken build + "ionflows" # broken build "IONiseR" # depends on broken rhdf5-2.13.4 + "iPAC" # broken build "iptools" + "IRanges" # broken build + "iRefR" # broken build "IsingFit" # depends on broken package nlopt-2.4.2 + "isobar" # broken build "IsoGene" # depends on broken package affyio-1.37.0 "IsoGeneGUI" # depends on broken package affyio-1.37.0 "ITALICS" # depends on broken package oligo-1.33.0 + "iteRates" # broken build + "iterativeBMA" # broken build + "iterpc" # broken build "IVAS" # depends on broken package nlopt-2.4.2 "ivpack" # depends on broken package nlopt-2.4.2 "JAGUAR" # depends on broken package nlopt-2.4.2 "jetset" + "jmosaics" # broken build "joda" # depends on broken package nlopt-2.4.2 "jomo" # build is broken "js" # depends on broken package V8-0.6 "KANT" # depends on broken package affyio-1.37.0 + "KCsmart" # broken build + "kebabs" # broken build + "KEGGgraph" # broken build "keggorthology" # build is broken "KEGGprofile" # Build Is Broken + "KEGGREST" # broken build + "KoNLP" # broken build + "ktspair" # broken build + "kza" # broken build + "kzft" # broken build + "lapmix" # broken build "lawn" # depends on broken package V8-0.6 + "ldamatch" # broken build + "ldblock" # depends on broken package r-snpStats-1.19.3 + "leapp" # broken build "learnstats" # depends on broken package nlopt-2.4.2 + "LedPred" # broken build "lefse" # build is broken "lessR" # depends on broken package nlopt-2.4.2 "lfe" # build is broken @@ -1066,19 +1381,34 @@ let "lmSupport" # depends on broken package nlopt-2.4.2 "LogisticDx" # depends on broken package nlopt-2.4.2 "logitT" # depends on broken package affyio-1.37.0 + "LOLA" # broken build "longpower" # depends on broken package nlopt-2.4.2 + "LOST" # broken build "LowMACA" # depends on broken package Rsamtools-1.21.8 + "lpNet" # broken build + "LPTime" # broken build "lumi" # depends on broken package affyio-1.37.0 "LVSmiRNA" # depends on broken package affyio-1.37.0 "M3D" # depends on broken package Rsamtools-1.21.8 + "maanova" # broken build + "macat" # broken build + "maigesPack" # broken build "MAIT" # depends on broken package nlopt-2.4.2 "makecdfenv" # depends on broken package affyio-1.37.0 + "MAMA" # broken build + "manta" # broken build "mAPKL" # build is broken "maPredictDSC" # depends on broken package nlopt-2.4.2 + "mar1s" # broken build "marked" # depends on broken package nlopt-2.4.2 + "maSigPro" # broken build "maskBAD" # depends on broken package affyio-1.37.0 + "massiR" # broken build + "matchingMarkets" # broken build "MatrixRider" # depends on broken package DirichletMultinomial-1.11.1 "MaxPro" # depends on broken package nlopt-2.4.2 + "MazamaSpatialUtils" # broken build + "MBASED" # broken build "mbest" # depends on broken package nlopt-2.4.2 "MBmca" # depends on broken nloptr-1.0.4 "mBPCR" # depends on broken package affyio-1.37.0 @@ -1086,112 +1416,206 @@ let "MCRestimate" # build is broken "mdgsa" # build is broken "meboot" # depends on broken package nlopt-2.4.2 + "medflex" # depends on broken package r-car-2.1-0 "mediation" # depends on broken package r-lme4-1.1-8 "MEDIPS" # depends on broken package Rsamtools-1.21.8 "MEDME" # depends on broken package nlopt-2.4.2 + "MEET" # broken build + "MEIGOR" # broken build "MEMSS" # depends on broken package nlopt-2.4.2 + "MergeMaid" # broken build + "merTools" # depends on broken package r-arm-1.8-6 + "MeSHDbi" # broken build "meshr" # depends on broken package Category-2.35.1 + "meta4diag" # broken build + "metaArray" # broken build "Metab" # depends on broken package mzR-2.3.1 + "metabolomics" # broken build + "metabomxtr" # broken build + "metacom" # broken build + "MetaDE" # broken build "metagear" # build is broken "metagene" # depends on broken package Rsamtools-1.21.8 + "metagenomeSeq" # broken build + "MetaLandSim" # broken build "metaMix" # build is broken "metaMS" # depends on broken package mzR-2.3.1 "metaplus" # depends on broken package nlopt-2.4.2 "metaSEM" # depends on broken package OpenMx-2.2.4 + "metaSeq" # broken build "metaseqR" # depends on broken package affyio-1.37.0 "Metatron" # depends on broken package nlopt-2.4.2 + "metaX" # depends on broken package r-CAMERA-1.25.2 + "MethTargetedNGS" # broken build + "methVisual" # broken build "methyAnalysis" # depends on broken package affyio-1.37.0 "MethylAid" # depends on broken package Rsamtools-1.21.8 + "methylMnM" # broken build "methylPipe" # depends on broken package Rsamtools-1.21.8 "MethylSeekR" # depends on broken package Rsamtools-1.21.8 "methylumi" # depends on broken package Rsamtools-1.21.8 + "Mfuzz" # broken build + "MGFM" # broken build + "mGSZ" # broken build "miceadds" # depends on broken package nlopt-2.4.2 "micEconAids" # depends on broken package nlopt-2.4.2 "micEconCES" # depends on broken package nlopt-2.4.2 "micEconSNQP" # depends on broken package nlopt-2.4.2 + "MiChip" # broken build + "microRNA" # broken build "mi" # depends on broken package nlopt-2.4.2 "MigClim" # Build Is Broken "migui" # depends on broken package nlopt-2.4.2 + "MIMOSA" # broken build "MineICA" # depends on broken package AnnotationForge-1.11.3 "minfi" # depends on broken package Rsamtools-1.21.8 "minimist" # depends on broken package V8-0.6 "MinimumDistance" # depends on broken package affyio-1.37.0 + "MiPP" # broken build + "MiRaGE" # broken build "mirIntegrator" # build is broken + "miRLAB" # broken build + "miRNAtap" # broken build + "miRtest" # broken build "missDeaths" "missMDA" # depends on broken package nlopt-2.4.2 "missMethyl" # depends on broken package Rsamtools-1.21.8 "mitoODE" # build is broken "mixAK" # depends on broken package nlopt-2.4.2 + "MixedPoisson" # broken build "mixlm" # depends on broken package nlopt-2.4.2 "MixMAP" # depends on broken package nlopt-2.4.2 + "MLInterfaces" # broken build "mlmRev" # depends on broken package nlopt-2.4.2 "MLP" # depends on broken package affyio-1.37.0 "MLSeq" # depends on broken package nlopt-2.4.2 "mlVAR" # depends on broken package nlopt-2.4.2 + "MM2S" # broken build + "MM2Sdata" # broken build + "MM" # broken build "MMDiff" # depends on broken package AnnotationForge-1.11.3 + "mmnet" # broken build "MmPalateMiRNA" # depends on broken package affyio-1.37.0 + "mogsa" # broken build "mongolite" # build is broken "monocle" # build is broken + "monogeneaGM" # broken build + "MoPS" # broken build "mosaic" # depends on broken package nlopt-2.4.2 + "mosaics" # broken build + "motifbreakR" # depends on broken package r-BSgenome-1.37.5 "MotifDb" # depends on broken package Rsamtools-1.21.8 "motifRG" # depends on broken package Rsamtools-1.21.8 "motifStack" # depends on broken package Rsamtools-1.21.8 "MotIV" # depends on broken package Rsamtools-1.21.8 + "mpoly" # broken build + "mRMRe" # broken build + "msa" # broken build + "msarc" # broken build "MSeasy" # depends on broken package mzR-2.3.1 "MSeasyTkGUI" # depends on broken package mzR-2.3.1 "MSGFgui" # depends on broken package MSGFplus-1.3.0 "MSGFplus" # Build Is Broken + "MSIseq" # broken build "msmsEDA" # depends on broken package affyio-1.37.0 "msmsTests" # depends on broken package affyio-1.37.0 "MSnbase" # depends on broken package affyio-1.37.0 "MSnID" # depends on broken package affyio-1.37.0 "MSstats" # depends on broken package nlopt-2.4.2 + "msSurv" # broken build + "Mulcom" # broken build "multiDimBio" # depends on broken package nlopt-2.4.2 "MultiRR" # depends on broken package nlopt-2.4.2 + "multiscan" # broken build + "multtest" # broken build "muma" # depends on broken package nlopt-2.4.2 "munsellinterpol" + "muscle" # broken build + "mutoss" # broken build "mutossGUI" # build is broken "mvGST" # depends on broken package AnnotationForge-1.11.3 "mvinfluence" # depends on broken package nlopt-2.4.2 + "mvMORPH" # broken build + "MXM" # broken build "mygene" # depends on broken package Rsamtools-1.21.8 + "myTAI" # broken build + "myvariant" # depends on broken package r-VariantAnnotation-1.15.31 + "mzID" # broken build "mzR" # build is broken + "NanoStringDiff" # broken build "NanoStringQCPro" # build is broken + "NarrowPeaks" # broken build "nCal" # depends on broken package nlopt-2.4.2 "ncdfFlow" # build is broken "NCIgraph" # depends on broken package RCytoscape-1.19.0 + "ndtv" # broken build + "nem" # broken build "netbenchmark" # build is broken + "netClass" # broken build + "nethet" # broken build + "netresponse" # broken build + "NetSAM" # broken build "nettools" # depends on broken package WGCNA-1.47 + "netweavers" # broken build "NGScopy" + "nhanesA" # broken build "NHPoisson" # depends on broken package nlopt-2.4.2 "nloptr" # depends on broken package nlopt-2.4.2 + "nlsem" # broken build + "nlts" # broken build + "NOISeq" # broken build "nondetects" # depends on broken package affyio-1.37.0 "nonrandom" # depends on broken package nlopt-2.4.2 "NormqPCR" # depends on broken package affyio-1.37.0 "NORRRM" # build is broken + "npGSEA" # broken build "npIntFactRep" # depends on broken package nlopt-2.4.2 + "NSM3" # broken build "nucleR" # depends on broken package Rsamtools-1.21.8 + "OCplus" # broken build + "OGSA" # broken build "oligoClasses" # depends on broken package affyio-1.37.0 "oligo" # depends on broken package affyio-1.37.0 + "OmicCircos" # broken build "OmicsMarkeR" # depends on broken package nlopt-2.4.2 + "OncoSimulR" # broken build "oneChannelGUI" # depends on broken package affyio-1.37.0 + "OPDOE" # broken build "OpenCL" # build is broken + "opencpu" # broken build "openCyto" # depends on broken package ncdfFlow-2.15.2 "OpenMx" # build is broken "OperaMate" # depends on broken package Category-2.35.1 + "oposSOM" # broken build "optBiomarker" # depends on broken package rpanel-1.1-3 "ora" # depends on broken package ROracle-1.1-12 "ordBTL" # depends on broken package nlopt-2.4.2 + "OrderedList" # broken build + "ordPens" # depends on broken package r-lme4-1.1-9 "OrganismDbi" # depends on broken package Rsamtools-1.21.8 + "orQA" # broken build + "orthopolynom" # broken build "OTUbase" # depends on broken package Rsamtools-1.21.8 + "OutlierD" # broken build "OUwie" # depends on broken package nlopt-2.4.2 + "oz" # broken build + "PAA" # broken build + "pacman" # broken build "PADOG" # build is broken + "paircompviz" # broken build + "PairViz" # broken build + "paleotree" # broken build "pamm" # depends on broken package nlopt-2.4.2 "PANDA" # build is broken "panelAR" # depends on broken package nlopt-2.4.2 + "PAnnBuilder" # broken build "panp" # depends on broken package affyio-1.37.0 "papeR" # depends on broken package nlopt-2.4.2 + "PAPi" # broken build "parboost" # depends on broken package nlopt-2.4.2 + "parglms" # broken build "parma" # depends on broken package nlopt-2.4.2 + "partitions" # broken build "Pasha" # depends on broken package GenomicAlignments-1.5.12 "pathClass" # depends on broken package affyio-1.37.0 "pathRender" # build is broken @@ -1199,6 +1623,7 @@ let "PatternClass" # build is broken "Pbase" # depends on broken package affyio-1.37.0 "pbdBASE" # depends on broken package pbdSLAP-0.2-0 + "PBD" # broken build "pbdDEMO" # depends on broken package pbdSLAP-0.2-0 "pbdDMAT" # depends on broken package pbdSLAP-0.2-0 "pbdSLAP" # build is broken @@ -1207,14 +1632,24 @@ let "PBSddesolve" # build is broken "PBSmapping" # build is broken "pcaBootPlot" # depends on broken FactoMineR-1.31.3 + "pcaGoPromoter" # broken build "pcaL1" # build is broken + "pcalg" # broken build + "pcaMethods" # broken build + "PCGSE" # broken build + "pcot2" # broken build "PCpheno" # depends on broken package Category-2.35.1 + "PCS" # broken build "pdInfoBuilder" # depends on broken package affyio-1.37.0 "pdmclass" # build is broken + "PDQutils" # broken build "PECA" # depends on broken package affyio-1.37.0 "pedigreemm" # depends on broken package nlopt-2.4.2 "pedometrics" # depends on broken package nlopt-2.4.2 + "PepPrep" # broken build + "pepStat" # broken build "pequod" # depends on broken package nlopt-2.4.2 + "PerfMeas" # broken build "permGPU" # build is broken "PGA" # depends on broken package Rsamtools-1.21.8 "PGSEA" # depends on broken package annaffy-1.41.1 @@ -1223,12 +1658,22 @@ let "phenoTest" # depends on broken package Category-2.35.1 "PhenStat" # depends on broken package nlopt-2.4.2 "phia" # depends on broken package nlopt-2.4.2 + "phreeqc" # broken build "phylocurve" # depends on broken package nlopt-2.4.2 + "phyloseq" # broken build "phyloTop" # depends on broken package nlopt-2.4.2 + "phytools" # broken build + "piano" # broken build "PICS" # depends on broken package Rsamtools-1.21.8 "PING" # depends on broken package Rsamtools-1.21.8 + "pkgDepTools" # broken build "plateCore" # depends on broken package ncdfFlow-2.15.2 + "plethy" # broken build + "plfMA" # broken build + "plgem" # broken build "plier" # depends on broken package affyio-1.37.0 + "PLPE" # broken build + "plrs" # broken build "plsRbeta" # depends on broken package nlopt-2.4.2 "plsRcox" # depends on broken package nlopt-2.4.2 "plsRglm" # depends on broken package nlopt-2.4.2 @@ -1236,24 +1681,43 @@ let "pmclust" # build is broken "pmm" # depends on broken package nlopt-2.4.2 "podkat" # depends on broken package Rsamtools-1.21.8 + "polyester" # broken build + "Polyfit" # broken build + "polynom" # broken build "polytomous" # depends on broken package nlopt-2.4.2 "pomp" # depends on broken package nlopt-2.4.2 "ppiPre" # depends on broken package GOSemSim-1.27.3 "ppiStats" # depends on broken package Category-2.35.1 + "prada" # broken build "prebs" # depends on broken package affyio-1.37.0 + "PREDA" # broken build + "predictionet" # broken build "predictmeans" # depends on broken package nlopt-2.4.2 + "pRF" # broken build "prLogistic" # depends on broken package nlopt-2.4.2 "proBAMr" # depends on broken package Rsamtools-1.21.8 "ProCoNA" # depends on broken package AnnotationForge-1.11.3 "pRoloc" # depends on broken package nlopt-2.4.2 "pRolocGUI" # depends on broken package nlopt-2.4.2 + "PROMISE" # broken build + "PROPER" # broken build + "propOverlap" # broken build + "prot2D" # broken build + "ProteomicsAnnotationHubData" # depends on broken package r-AnnotationHub-2.1.40 "proteoQC" # depends on broken package affyio-1.37.0 + "ProtGenerics" # broken build + "protiq" # broken build + "provenance" # broken build "PSAboot" # depends on broken package nlopt-2.4.2 + "PSEA" # broken build + "PSICQUIC" # broken build "ptw" # depends on broken nloptr-1.0.4 "puma" # depends on broken package affyio-1.37.0 + "purge" # depends on broken package r-lme4-1.1-9 "pvac" # depends on broken package affyio-1.37.0 "pvca" # depends on broken package nlopt-2.4.2 "Pviz" # depends on broken package Rsamtools-1.21.8 + "PWMEnrich" # broken build "pwOmics" # depends on broken package interactiveDisplayBase-1.7.0 "PythonInR" "qcmetrics" # build is broken @@ -1267,28 +1731,46 @@ let "qtlnet" # depends on broken package nlopt-2.4.2 "qtpaint" # depends on broken package qtbase-1.0.9 "qtutils" # depends on broken package qtbase-1.0.9 + "QuACN" # broken build "QUALIFIER" # depends on broken package ncdfFlow-2.15.2 "quantification" # depends on broken package nlopt-2.4.2 "quantro" # depends on broken package Rsamtools-1.21.8 + "QuartPAC" # broken build + "QuasiSeq" # broken build "QuasR" # depends on broken package Rsamtools-1.21.8 + "qusage" # broken build "R2STATS" # depends on broken package nlopt-2.4.2 "R3CPET" # depends on broken package Rsamtools-1.21.8 "r3Cseq" # depends on broken package Rsamtools-1.21.8 "R453Plus1Toolbox" # depends on broken package Rsamtools-1.21.8 + "RADami" # broken build "radiant" # depends on broken package nlopt-2.4.2 + "rain" # broken build "raincpc" # build is broken "rainfreq" # build is broken + "RAM" # broken build "RamiGO" # depends on broken package RCytoscape-1.19.0 + "randPack" # broken build "RapidPolygonLookup" # depends on broken package PBSmapping-2.69.76 "RAPIDR" # depends on broken package Rsamtools-1.21.8 "RareVariantVis" # depends on broken VariantAnnotation-1.15.19 "Rariant" # depends on broken package Rsamtools-1.21.8 "rasclass" # depends on broken package nlopt-2.4.2 + "rase" # broken build + "rationalfun" # broken build + "RbcBook1" # broken build "RBerkeley" + "RBGL" # broken build + "RBioinf" # broken build "RbioRXN" # depends on broken package ChemmineR-2.21.7 + "Rblpapi" # broken build + "rbsurv" # broken build + "rbundler" # broken build "Rcade" # depends on broken package Rsamtools-1.21.8 + "rcellminer" # broken build "rCGH" # depends on broken package r-affy-1.47.1 "Rchemcpp" # depends on broken package ChemmineR-2.21.7 + "RchyOptimyx" # broken build "Rcmdr" # depends on broken package nlopt-2.4.2 "RcmdrMisc" # depends on broken package nlopt-2.4.2 "RcmdrPlugin_BCA" # depends on broken package nlopt-2.4.2 @@ -1322,7 +1804,6 @@ let "RcmdrPlugin_SLC" # depends on broken package nlopt-2.4.2 "RcmdrPlugin_SM" # depends on broken package nlopt-2.4.2 "RcmdrPlugin_sos" # depends on broken package nlopt-2.4.2 - "RcmdrPlugin_StatisticalURV" # depends on broken package nlopt-2.4.2 "RcmdrPlugin_steepness" # depends on broken package nlopt-2.4.2 "RcmdrPlugin_survival" # depends on broken package nlopt-2.4.2 "RcmdrPlugin_TeachingDemos" # depends on broken package nlopt-2.4.2 @@ -1333,6 +1814,8 @@ let "RcppAPT" # Build Is Broken "RcppOctave" # build is broken "RcppRedis" # build is broken + "rcrypt" # broken build + "RCyjs" # broken build "RCytoscape" # Build Is Broken "RDAVIDWebService" # depends on broken package Category-2.35.1 "rdd" # depends on broken package nlopt-2.4.2 @@ -1342,39 +1825,53 @@ let "ReactomePA" # depends on broken package GOSemSim-1.27.3 "ReadqPCR" # depends on broken package affyio-1.37.0 "REBayes" # depends on broken package Rmosek-1.2.5.1 + "reb" # broken build + "recluster" # broken build "REDseq" # depends on broken package Rsamtools-1.21.8 "referenceIntervals" # depends on broken package nlopt-2.4.2 "RefNet" # depends on broken package interactiveDisplayBase-1.7.0 "RefPlus" # depends on broken package affyio-1.37.0 "refund" # depends on broken package nlopt-2.4.2 + "refund_shiny" # depends on broken package r-refund-0.1-13 "regioneR" # depends on broken package Rsamtools-1.21.8 "regionReport" # depends on broken package Rsamtools-1.21.8 + "regRSM" # broken build "repijson" # depends on broken package V8-0.6 "Repitools" # depends on broken package affyio-1.37.0 "ReportingTools" # depends on broken package Category-2.35.1 "ReQON" # depends on broken package Rsamtools-1.21.8 + "rerddap" # broken build "REST" # depends on broken package nlopt-2.4.2 "rfPred" # depends on broken package Rsamtools-1.21.8 "rGADEM" # depends on broken package Rsamtools-1.21.8 + "RGalaxy" # broken build "rgbif" # depends on broken package V8-0.6 "Rgnuplot" "rgp" # build is broken "rgpui" # depends on broken package rgp-0.4-1 + "Rgraphviz" # broken build + "rGREAT" # broken build + "RGSEA" # broken build "rgsepd" # depends on broken package goseq-1.21.1 "rhdf5" # build is broken "rHVDM" # depends on broken package affyio-1.37.0 + "riboSeqR" # broken build "Ringo" # depends on broken package affyio-1.37.0 "RIPSeeker" # depends on broken package Rsamtools-1.21.8 "Risa" # depends on broken package affyio-1.37.0 "rjade" # depends on broken package V8-0.6 "rJPSGCS" # build is broken "rLindo" # build is broken + "RLRsim" # depends on broken package r-lme4-1.1-9 + "Rmagpie" # broken build + "RMallow" # broken build "RMassBank" # depends on broken package mzR-2.3.1 "rMAT" # build is broken "rmgarch" # depends on broken package nlopt-2.4.2 "rminer" # depends on broken package nlopt-2.4.2 "RmiR" # Build Is Broken "Rmosek" # build is broken + "RMySQL" # broken build "RNAinteract" # depends on broken package Category-2.35.1 "RNAither" # depends on broken package nlopt-2.4.2 "RNAprobR" # depends on broken package Rsamtools-1.21.8 @@ -1383,145 +1880,258 @@ let "RnavGraph" # build is broken "RnBeads" # depends on broken package Rsamtools-1.21.8 "Rnits" # depends on broken package affyio-1.37.0 + "rNOMADS" # broken build "roar" # depends on broken package Rsamtools-1.21.8 "RobLoxBioC" # depends on broken package affyio-1.37.0 + "RobLox" # broken build "robustlmm" # depends on broken package nlopt-2.4.2 "rockchalk" # depends on broken package nlopt-2.4.2 + "RockFab" # broken build "ROI_plugin_symphony" # depends on broken package Rsymphony-0.1-20 + "Roleswitch" # broken build "Rolexa" # depends on broken package Rsamtools-1.21.8 "rols" # build is broken + "ROntoTools" # broken build "ROracle" # Build Is Broken "RPA" # depends on broken package affyio-1.37.0 "rpanel" # build is broken + "Rphylopars" # broken build + "Rpoppler" # broken build + "RPPanalyzer" # broken build + "RpsiXML" # broken build "rpubchem" # depends on broken package nlopt-2.4.2 "Rqc" # depends on broken package Rsamtools-1.21.8 "RQuantLib" # build is broken + "rqubic" # broken build "rr" # depends on broken package nlopt-2.4.2 + "rRDP" # broken build "Rsamtools" # Build Is Broken "RSAP" # build is broken "rsbml" # build is broken "rscala" # build is broken "RSDA" # depends on broken package nlopt-2.4.2 + "RSeed" # broken build "rSFFreader" # depends on broken package Rsamtools-1.21.8 + "RStoolbox" # depends on broken package r-caret-6.0-52 "Rsubread" # Build Is Broken "RSVSim" # depends on broken package Rsamtools-1.21.8 "Rsymphony" # build is broken + "rTableICC" # broken build "rTANDEM" # build is broken + "RTCA" # broken build + "RTCGA" # depends on broken package r-rvest-0.3.0 "RTN" # depends on broken package nlopt-2.4.2 + "RTopper" # broken build "rtracklayer" # depends on broken package Rsamtools-1.21.8 + "Rtreemix" # broken build + "rTRM" # broken build "rTRMui" # depends on broken package Rsamtools-1.21.8 "rugarch" # depends on broken package nlopt-2.4.2 + "rUnemploymentData" # broken build "RUVcorr" # build is broken "RUVnormalize" # Build Is Broken "RUVSeq" # depends on broken package Rsamtools-1.21.8 "RVAideMemoire" # depends on broken package nlopt-2.4.2 + "rvest" # broken build "RVFam" # depends on broken package nlopt-2.4.2 "RVideoPoker" # depends on broken package rpanel-1.1-3 + "RWebServices" # broken build "ryouready" # depends on broken package nlopt-2.4.2 + "S4Vectors" # broken build + "sadists" # broken build + "safe" # broken build + "SAGx" # broken build "sampleSelection" # depends on broken package nlopt-2.4.2 + "sangerseqR" # broken build "sapFinder" # depends on broken package rTANDEM-1.9.0 + "saps" # broken build "SCAN_UPC" # depends on broken package affyio-1.37.0 "ScISI" # depends on broken package apComplex-2.35.0 + "scmamp" # broken build + "scsR" # broken build "sdcMicro" # depends on broken package nlopt-2.4.2 "sdcMicroGUI" # depends on broken package nlopt-2.4.2 "SDD" # depends on broken package rpanel-1.1-3 "seeg" # depends on broken package nlopt-2.4.2 "segmentSeq" # depends on broken package Rsamtools-1.21.8 + "sejmRP" # depends on broken package r-rvest-0.3.0 + "Sejong" # broken build + "SELEX" # broken build "sem" # depends on broken package nlopt-2.4.2 "semdiag" # depends on broken package nlopt-2.4.2 "SemDist" # Build Is Broken "semGOF" # depends on broken package nlopt-2.4.2 "semPlot" # depends on broken package nlopt-2.4.2 + "SensMixed" # depends on broken package r-lme4-1.1-9 "SensoMineR" # depends on broken package nlopt-2.4.2 "SEPA" # depends on broken package topGO-2.21.0 "seq2pathway" # depends on broken package WGCNA-1.47 "SeqArray" # depends on broken package Rsamtools-1.21.8 "seqbias" # depends on broken package Rsamtools-1.21.8 "seqCNA" # build is broken + "SeqFeatR" # broken build "SeqGrapheR" # Build Is Broken + "SeqGSEA" # broken build + "seqPattern" # broken build "seqplots" # depends on broken package Rsamtools-1.21.8 "seqTools" # build is broken + "sequenza" # broken build "SeqVarTools" # depends on broken package Rsamtools-1.21.8 "SGSeq" # depends on broken package Rsamtools-1.21.8 + "SharpeR" # broken build "shinyMethyl" # depends on broken package Rsamtools-1.21.8 "shinyTANDEM" # depends on broken package rTANDEM-1.9.0 "ShortRead" # depends on broken package Rsamtools-1.21.8 + "SID" # broken build + "sigaR" # broken build + "SigCheck" # broken build + "SigFuge" # broken build + "siggenes" # broken build + "sigsquared" # broken build + "SigTree" # broken build "SIMAT" # depends on broken package mzR-2.3.1 "SimBindProfiles" # depends on broken package affyio-1.37.0 + "SIM" # broken build "similaRpeak" # depends on broken package Rsamtools-1.21.8 "simpleaffy" # depends on broken package affyio-1.37.0 + "simPop" # depends on broken package r-VIM-4.4.1 "SimRAD" # depends on broken package Rsamtools-1.21.8 + "SimReg" # broken build + "simulatorZ" # broken build "sirt" # depends on broken package nlopt-2.4.2 + "SJava" # broken build "sjPlot" # depends on broken package nlopt-2.4.2 "skewr" # depends on broken package affyio-1.37.0 "SLGI" # depends on broken package apComplex-2.35.0 + "smacof" # broken build "SNAGEE" # build is broken "snapCGH" # depends on broken package tilingArray-1.47.0 "snm" # depends on broken package nlopt-2.4.2 "SNPchip" # depends on broken package affyio-1.37.0 "snpEnrichment" # depends on broken package snpStats-1.19.0 + "snplist" # broken build "snpStats" # build is broken "snpStatsWriter" # depends on broken package snpStats-1.19.0 "SNPtools" # depends on broken package Rsamtools-1.21.8 "SOD" # depends on broken package cudatoolkit-5.5.22 "soGGi" # depends on broken package Rsamtools-1.21.8 "soilphysics" # depends on broken package rpanel-1.1-3 + "SomatiCA" # broken build "SomaticSignatures" # depends on broken package Rsamtools-1.21.8 + "sortinghat" # broken build "SoyNAM" # depends on broken package r-lme4-1.1-8 + "SpacePAC" # broken build "spacom" # depends on broken package nlopt-2.4.2 + "spade" # broken build + "spdynmod" # broken build "specificity" # depends on broken package nlopt-2.4.2 + "SpeCond" # broken build + "SPEM" # broken build + "SPIA" # broken build + "spkTools" # broken build + "splicegear" # broken build "spliceR" # depends on broken package Rsamtools-1.21.8 + "spliceSites" # broken build "SplicingGraphs" # depends on broken package Rsamtools-1.21.8 "spocc" # depends on broken package V8-0.6 "spoccutils" # depends on broken spocc-0.3.0 "spsann" # depends on broken package r-pedometrics-0.6-2 + "SRAdb" # broken build + "srd" # broken build "sscore" # depends on broken package affyio-1.37.0 + "ssizeRNA" # broken build "ssmrob" # depends on broken package nlopt-2.4.2 "ssviz" # depends on broken package Rsamtools-1.21.8 "stagePop" # depends on broken package PBSddesolve-1.11.29 "staRank" # depends on broken package Category-2.35.1 "Starr" # depends on broken package affyio-1.37.0 "STATegRa" # depends on broken package affyio-1.37.0 + "Statomica" # broken build "stcm" # depends on broken package nlopt-2.4.2 "stepp" # depends on broken package nlopt-2.4.2 + "stepwiseCM" # broken build + "stream" # broken build + "Streamer" # broken build + "streamMOA" # broken build "stringgaussnet" # build is broken + "structSSI" # broken build + "strum" # broken build + "SummarizedExperiment" # broken build + "superbiclust" # broken build "Surrogate" # depends on broken package nlopt-2.4.2 + "Sushi" # broken build + "sva" # broken build "SVM2CRM" # depends on broken package Rsamtools-1.21.8 "sybilSBML" # build is broken "synapter" # depends on broken package affyio-1.37.0 "systemfit" # depends on broken package nlopt-2.4.2 + "systemPipeRdata" # broken build "systemPipeR" # depends on broken package AnnotationForge-1.11.3 "TargetSearch" # depends on broken package mzR-2.3.1 + "TCC" # broken build + "TCGA2STAT" # broken build + "TCGAbiolinks" # depends on broken package r-affy-1.47.1 "TcGSA" # depends on broken package nlopt-2.4.2 + "TDARACNE" # broken build "TDMR" # depends on broken package nlopt-2.4.2 + "TED" # broken build "TEQC" # depends on broken package Rsamtools-1.21.8 "TFBSTools" # depends on broken package DirichletMultinomial-1.11.1 "tigerstats" # depends on broken package nlopt-2.4.2 + "tigre" # broken build "tilingArray" # depends on broken package affyio-1.37.0 + "timecourse" # broken build + "timeSeq" # broken build "TIN" # depends on broken package WGCNA-1.47 "TitanCNA" # depends on broken package Rsamtools-1.21.8 + "TKF" # broken build + "tmle" # broken build + "tnam" # depends on broken package r-lme4-1.1-9 "ToPASeq" # depends on broken package Rsamtools-1.21.8 "topGO" # build is broken "topologyGSA" # depends on broken package Rsamtools-1.21.8 + "TPP" # broken build "tracktables" # depends on broken package Rsamtools-1.21.8 "trackViewer" # depends on broken package Rsamtools-1.21.8 "translateSPSS2R" # depends on broken car-2.0-25 "tRanslatome" # depends on broken package GOSemSim-1.27.3 "TransView" # depends on broken package Rsamtools-1.21.8 "traseR" + "triform" # broken build + "trigger" # broken build "TriMatch" # depends on broken package nlopt-2.4.2 + "triplex" # broken build "TROM" # depends on broken package topGO-2.21.0 + "TRONCO" # broken build + "TSdist" # broken build + "TSMySQL" # broken build + "tsoutliers" # broken build + "tspair" # broken build + "TSSi" # broken build + "ttScreening" # broken build "TurboNorm" # depends on broken package affyio-1.37.0 + "tweeDEseq" # broken build + "twilight" # broken build + "UBCRM" # broken build + "umx" # depends on broken package r-OpenMx-2.2.6 + "UNDO" # broken build "unifiedWMWqPCR" # depends on broken package affyio-1.37.0 + "uniftest" # broken build + "UniProt_ws" # broken build + "untb" # broken build "userfriendlyscience" # depends on broken package nlopt-2.4.2 "V8" # build is broken "VanillaICE" # depends on broken package affyio-1.37.0 + "varComp" # depends on broken package r-lme4-1.1-9 "variancePartition" # depends on broken package lme4-1.1-8 "VariantAnnotation" # depends on broken package Rsamtools-1.21.8 "VariantFiltering" # depends on broken package Rsamtools-1.21.8 "VariantTools" # depends on broken package Rsamtools-1.21.8 + "VBmix" # broken build + "VegaMC" # broken build "VIM" # depends on broken package nlopt-2.4.2 "VIMGUI" # depends on broken package nlopt-2.4.2 + "viper" # broken build "vmsbase" # depends on broken package PBSmapping-2.69.76 "vows" # depends on broken package nlopt-2.4.2 "vsn" # depends on broken package affyio-1.37.0 @@ -1534,9 +2144,14 @@ let "WGCNA" # build is broken "wgsea" # depends on broken package snpStats-1.19.0 "WideLM" # depends on broken package cudatoolkit-5.5.22 + "wikipediatrend" # broken build + "XBSeq" # broken build "xcms" # depends on broken package mzR-2.3.1 + "XDE" # broken build + "x_ent" # broken build "xergm" # depends on broken package nlopt-2.4.2 "xps" # build is broken + "XVector" # broken build "yaqcaffy" # depends on broken package affyio-1.37.0 "ZeligMultilevel" # depends on broken package nlopt-2.4.2 "zetadiv" # depends on broken package nlopt-2.4.2 @@ -1558,11 +2173,14 @@ let }); xml2 = old.xml2.overrideDerivation (attrs: { - preConfigure = "export LIBXML_INCDIR=${pkgs.libxml2}/include/libxml2"; + preConfigure = '' + export LIBXML_INCDIR=${pkgs.libxml2}/include/libxml2 + patchShebangs configure + ''; }); curl = old.curl.overrideDerivation (attrs: { - preConfigure = "export CURL_INCLUDES=${pkgs.curl}/include"; + preConfigure = "patchShebangs configure"; }); iFes = old.iFes.overrideDerivation (attrs: { diff --git a/pkgs/development/tools/analysis/checkstyle/default.nix b/pkgs/development/tools/analysis/checkstyle/default.nix index 53eeb8c68c3..26b0d353227 100644 --- a/pkgs/development/tools/analysis/checkstyle/default.nix +++ b/pkgs/development/tools/analysis/checkstyle/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl }: stdenv.mkDerivation rec { - version = "6.10.1"; + version = "6.11.2"; name = "checkstyle-${version}"; src = fetchurl { url = "mirror://sourceforge/checkstyle/${name}-bin.tar.gz"; - sha256 = "18axx444hzi1gcbqa7nyifdvyqsiab0asya4qwa7y6khiq7y3myb"; + sha256 = "13ywwm24199c942w9ly2cvy6rjbs0sim50lrvjybc0sh6gbg44sc"; }; installPhase = '' diff --git a/pkgs/development/tools/build-managers/sbt/default.nix b/pkgs/development/tools/build-managers/sbt/default.nix index b4cfc0bf0c1..585e9ff101a 100644 --- a/pkgs/development/tools/build-managers/sbt/default.nix +++ b/pkgs/development/tools/build-managers/sbt/default.nix @@ -5,22 +5,18 @@ stdenv.mkDerivation rec { version = "0.13.9"; src = fetchurl { - url = "http://repo.typesafe.com/typesafe/ivy-releases/org.scala-sbt/sbt-launch/${version}/sbt-launch.jar"; - sha256 = "04k411gcrq35ayd2xj79bcshczslyqkicwvhkf07hkyr4j3blxda"; + url = "https://dl.bintray.com/sbt/native-packages/sbt/${version}/${name}.tgz"; + sha256 = "148f2801f2993773de6f8859fe0e6520fcabe649d66bb316e13aff8b2fd7f504"; }; - phases = [ "installPhase" ]; + patchPhase = '' + echo -java-home ${jre.home} >>conf/sbtopts + ''; installPhase = '' - mkdir -p $out/bin - cat > $out/bin/sbt << EOF - #! ${stdenv.shell} - if [ ! -v JAVA_HOME ]; then - export JAVA_HOME="${jre.home}" - fi - ${jre}/bin/java \$SBT_OPTS -jar ${src} "\$@" - EOF - chmod +x $out/bin/sbt + mkdir -p $out/share/sbt $out/bin + cp -ra . $out/share/sbt + ln -s $out/share/sbt/bin/sbt $out/bin/ ''; meta = { diff --git a/pkgs/development/tools/continuous-integration/jenkins/default.nix b/pkgs/development/tools/continuous-integration/jenkins/default.nix index ee18d297d43..c68874cf231 100644 --- a/pkgs/development/tools/continuous-integration/jenkins/default.nix +++ b/pkgs/development/tools/continuous-integration/jenkins/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "jenkins-${version}"; - version = "1.631"; + version = "1.633"; src = fetchurl { url = "http://mirrors.jenkins-ci.org/war/${version}/jenkins.war"; - sha256 = "0bfh5gv3yk9awkzf660jxf9vzzdcr6qa9hl0hkivaj4gmp5f9sp8"; + sha256 = "1s5jihq9shscsdazb1c393qab0djms4by5zn3ciylcgvif431n8m"; }; meta = with stdenv.lib; { description = "An extendable open source continuous integration server"; diff --git a/pkgs/development/tools/jq/default.nix b/pkgs/development/tools/jq/default.nix index 76e74d7623e..61c4a498c6d 100644 --- a/pkgs/development/tools/jq/default.nix +++ b/pkgs/development/tools/jq/default.nix @@ -3,11 +3,10 @@ let s = # Generated upstream information rec { baseName="jq"; - version="1.4"; + version="1.5"; name="${baseName}-${version}"; - hash="17dk17h7qj6xpnsbc09qwsqkm6r7jhqbfkjvwq246yxmpsx4334r"; - url="http://stedolan.github.io/jq/download/source/jq-1.4.tar.gz"; - sha256="17dk17h7qj6xpnsbc09qwsqkm6r7jhqbfkjvwq246yxmpsx4334r"; + url="https://github.com/stedolan/jq/releases/download/jq-1.5/jq-1.5.tar.gz"; + sha256="0g29kyz4ykasdcrb0zmbrp2jqs9kv1wz9swx849i2d1ncknbzln4"; }; buildInputs = [ ]; diff --git a/pkgs/development/tools/literate-programming/nuweb/default.nix b/pkgs/development/tools/literate-programming/nuweb/default.nix new file mode 100644 index 00000000000..54c2125a08c --- /dev/null +++ b/pkgs/development/tools/literate-programming/nuweb/default.nix @@ -0,0 +1,37 @@ +{stdenv, fetchurl, tex}: + +stdenv.mkDerivation rec{ + + name = "nuweb-${version}"; + version = "1.58"; + + src = fetchurl { + url = "http://downloads.sourceforge.net/project/nuweb/${name}.tar.gz"; + sha256 = "0q51i3miy15fv4njjp82yws01qfjxvqx5ly3g3vh8z3h7iq9p47y"; + }; + + buildInputs = [ tex ]; + + patchPhase = '' + sed -ie 's|nuweb -r|./nuweb -r|' Makefile + ''; + buildPhase = '' + make nuweb + make nuweb.pdf nuwebdoc.pdf all + ''; + installPhase = '' + install -d $out/bin $out/share/man/man1 $out/share/doc/${name} $out/share/emacs/site-lisp + cp nuweb $out/bin + cp nuweb.el $out/share/emacs/site-lisp + gzip -c nuweb.1 > $out/share/man/man1/nuweb.1.gz + cp htdocs/index.html nuweb.w nuweb.pdf nuwebdoc.pdf README $out/share/doc/${name} + ''; + + meta = with stdenv.lib; { + description = "A simple literate programming tool"; + homepage = http://nuweb.sourceforge.net; + license = licenses.free; + maintainers = [ maintainers.AndersonTorres ]; + }; +} +# TODO: nuweb.el Emacs integration diff --git a/pkgs/development/tools/misc/ccache/default.nix b/pkgs/development/tools/misc/ccache/default.nix index 41a6095a9a4..fb6d03c6e85 100644 --- a/pkgs/development/tools/misc/ccache/default.nix +++ b/pkgs/development/tools/misc/ccache/default.nix @@ -2,8 +2,8 @@ let name = "ccache-${version}"; - version = "3.2.3"; - sha256 = "03k0fvblwqb80zwdgas8a5fjrwvghgsn587wp3lfr0jr8gy1817c"; + version = "3.2.4"; + sha256 = "0pga3hvd80f2p7mz88jmmbwzxh4vn5ihyjx5f6na8y2fclzsjg8w"; ccache = stdenv.mkDerivation { diff --git a/pkgs/development/tools/misc/kibana/default.nix b/pkgs/development/tools/misc/kibana/default.nix index 48b543bcdf1..699ddd16c23 100644 --- a/pkgs/development/tools/misc/kibana/default.nix +++ b/pkgs/development/tools/misc/kibana/default.nix @@ -7,8 +7,8 @@ stdenv.mkDerivation rec { version = "4.1.2"; src = fetchurl { - url = "http://download.elastic.co/kibana/kibana-snapshot/kibana-4.2.0-snapshot-linux-x86.tar.gz"; - sha256 = "1sa92laawxc05abiysvp12v5nzrqggmls592mkprwnbkkkbwsm5x"; + url = "http://download.elastic.co/kibana/kibana-snapshot/${name}-snapshot-linux-x86.tar.gz"; + sha256 = "00ag4wnlw6h2j6zcz0irz6j1s51fr9ix2g1smrhrdw44z5gb6wrh"; }; buildInputs = [ makeWrapper ]; diff --git a/pkgs/development/tools/ocaml/deriving/default.nix b/pkgs/development/tools/ocaml/deriving/default.nix deleted file mode 100644 index 55bbf3748ea..00000000000 --- a/pkgs/development/tools/ocaml/deriving/default.nix +++ /dev/null @@ -1,72 +0,0 @@ -{stdenv, fetchurl, zlib, ocaml, findlib, ncurses -, versionedDerivation, unzip -, version ? - let match = { - "ocaml-3.10.0" = "for-3.10.0"; - "ocaml-3.12.1" = "for-3.12.1"; - }; in stdenv.lib.maybeAttr ocaml.name (throw "no matching source of ocaml-deriving for ocaml version: ${ocaml.name}") match -}: - -/* -Usage example: - -== main.ml == -type t = | A | B - deriving (Show) - -print_string (Show.show (A));; -== - -ocamlopt -pp $out/bin/deriving -I $d/lib -I $d/syntax nums.cmxa show.cmx main.ml -*/ - -versionedDerivation "ocaml-deriving" version { - - "for-3.10.0" = { - name = "deriving-0.1.1a"; - # ocaml: 3.10.0 - src = fetchurl { - url = https://deriving.googlecode.com/files/deriving-0.1.1a.tar.gz; - sha256 = "0ppmqhc23kccfjn3cnd9n205ky627ni8f5djf8sppmc3lc1m97mb"; - }; - }; - - "for-3.12.1" = { - name = "deriving-git20100903"; - - # https://github.com/jaked/deriving - src = fetchurl { - name = "for-3.12.0.zip"; - url = https://codeload.github.com/jaked/deriving/zip/c7b9cea3eb4bbfb9e09673faf725f70247c9df78; - sha256 = "1zrmpqb5lsjmizqs68czmfpsbz9hz30pf97w11kkby175hhj84gi"; - }; - - buildInputs = [ unzip ]; - }; - -} -{ - buildInputs = [ocaml findlib]; - - installPhase = '' - # not all tests compile !? - # (cd tests; make) - - mkdir -p $out/bin - cp -a lib $out/ - cp -a syntax $out - - # this allows -pp deriving - ln -s $out/syntax/deriving $out/bin/deriving - ''; - - meta = { - homepage = "https://code.google.com/p/deriving/source/checkout"; - description = "A library of cryptographic primitives for OCaml"; - license = stdenv.lib.licenses.mit; - platforms = ocaml.meta.platforms; - maintainers = [ - stdenv.lib.maintainers.z77z - ]; - }; -} diff --git a/pkgs/development/tools/ocaml/js_of_ocaml/Makefile.conf.diff b/pkgs/development/tools/ocaml/js_of_ocaml/Makefile.conf.diff index e6fc96038ff..0e3f55df6d2 100644 --- a/pkgs/development/tools/ocaml/js_of_ocaml/Makefile.conf.diff +++ b/pkgs/development/tools/ocaml/js_of_ocaml/Makefile.conf.diff @@ -8,3 +8,14 @@ #### +--- old/Makefile 2014-09-30 16:40:37.000000000 +0200 ++++ new/Makefile 2015-10-14 10:28:41.366815864 +0200 +@@ -52,7 +52,7 @@ + install-bin: + install -d -m 755 $(BINDIR) + install $(BIN) $(BINDIR) +- install $(TOOLS) $(BINDIR) ++ install $(TOOLS) $(BINDIR) || true + + uninstall: uninstall-lib uninstall-bin + diff --git a/pkgs/development/tools/ocaml/ocp-indent/default.nix b/pkgs/development/tools/ocaml/ocp-indent/default.nix index 9ad2976adbf..224ce57808f 100644 --- a/pkgs/development/tools/ocaml/ocp-indent/default.nix +++ b/pkgs/development/tools/ocaml/ocp-indent/default.nix @@ -1,23 +1,25 @@ -{ stdenv, fetchurl, ocaml, findlib, ocpBuild, opam, cmdliner }: +{ stdenv, fetchzip, ocaml, findlib, ocpBuild, opam, cmdliner }: let inherit (stdenv.lib) getVersion versionAtLeast; in assert versionAtLeast (getVersion ocaml) "3.12.1"; -assert versionAtLeast (getVersion ocpBuild) "1.99.3-beta"; +assert versionAtLeast (getVersion ocpBuild) "1.99.6-beta"; stdenv.mkDerivation { - name = "ocp-indent-1.4.2b"; + name = "ocp-indent-1.5.2"; - src = fetchurl { - url = "https://github.com/OCamlPro/ocp-indent/archive/1.4.2b.tar.gz"; - sha256 = "1p0n2zcl5kf543x2xlqrz1aa51f0dqal8l392sa41j6wx82j0gpb"; + src = fetchzip { + url = "https://github.com/OCamlPro/ocp-indent/archive/1.5.2.tar.gz"; + sha256 = "0ynv2yhm7akpvqp72pdabhddwr352s1k85q8m1khsvspgg1mkiqz"; }; buildInputs = [ ocaml findlib ocpBuild opam cmdliner ]; createFindlibDestdir = true; + preConfigure = "patchShebangs ./install.sh"; + postInstall = '' mv $out/lib/{ocp-indent,ocaml/${getVersion ocaml}/site-lib/} ''; diff --git a/pkgs/development/tools/ocaml/ocp-index/default.nix b/pkgs/development/tools/ocaml/ocp-index/default.nix index c901d676b90..76be5f8bd47 100644 --- a/pkgs/development/tools/ocaml/ocp-index/default.nix +++ b/pkgs/development/tools/ocaml/ocp-index/default.nix @@ -2,7 +2,7 @@ let inherit (stdenv.lib) getVersion versionAtLeast optional; in -assert versionAtLeast (getVersion ocaml) "3.12.1"; +assert versionAtLeast (getVersion ocaml) "4"; assert versionAtLeast (getVersion ocpBuild) "1.99.6-beta"; assert versionAtLeast (getVersion ocpIndent) "1.4.2"; diff --git a/pkgs/development/tools/profiling/oprofile/default.nix b/pkgs/development/tools/profiling/oprofile/default.nix index 561fea6ef7b..01e8152ea96 100644 --- a/pkgs/development/tools/profiling/oprofile/default.nix +++ b/pkgs/development/tools/profiling/oprofile/default.nix @@ -1,21 +1,22 @@ -{ stdenv, fetchurl, binutils, popt, zlib, pkgconfig +{ stdenv, fetchurl, binutils, popt, zlib, pkgconfig, linuxHeaders , withGUI ? false , qt4 ? null}: # libX11 is needed because the Qt build stuff automatically adds `-lX11'. assert withGUI -> qt4 != null; stdenv.mkDerivation rec { - name = "oprofile-1.0.0"; + name = "oprofile-1.1.0"; src = fetchurl { url = "mirror://sourceforge/oprofile/${name}.tar.gz"; - sha256 = "0nn4wfvwy4nii25y6lwlrnzx9ah4nz0r93yk7hswiy6wxjs10wc4"; + sha256 = "0v1nn38h227bgxjwqf22rjp2iqgjm4ls3gckzifks0x6w5nrlxfg"; }; - buildInputs = [ binutils zlib popt pkgconfig ] + buildInputs = [ binutils zlib popt pkgconfig linuxHeaders ] ++ stdenv.lib.optionals withGUI [ qt4 ]; configureFlags = [ + "--with-kernel=${linuxHeaders}" "--disable-shared" # needed because only the static libbfd is available ] ++ stdenv.lib.optional withGUI "--with-qt-dir=${qt4} --enable-gui=qt4"; diff --git a/pkgs/development/tools/slimerjs/default.nix b/pkgs/development/tools/slimerjs/default.nix index 5fd7be063f5..add85805500 100644 --- a/pkgs/development/tools/slimerjs/default.nix +++ b/pkgs/development/tools/slimerjs/default.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation { echo 'export SLIMERJSLAUNCHER=${firefox}/bin/firefox' >> "$out/bin/slimerjs" echo "'$out/lib/slimerjs/slimerjs' \"\$@\"" >> "$out/bin/slimerjs" chmod a+x "$out/bin/slimerjs" - sed -e 's@MaxVersion=3[0-9][.]@MaxVersion=40.@' -i "$out/lib/slimerjs/application.ini" + sed -e 's@MaxVersion=[34][0-9][.]@MaxVersion=50.@' -i "$out/lib/slimerjs/application.ini" ''; meta = { inherit (s) version; diff --git a/pkgs/development/web/nodejs/default.nix b/pkgs/development/web/nodejs/default.nix index 440ed7aca92..1bd8dbec1e6 100644 --- a/pkgs/development/web/nodejs/default.nix +++ b/pkgs/development/web/nodejs/default.nix @@ -7,7 +7,7 @@ assert stdenv.system != "armv5tel-linux"; let - version = "4.1.0"; + version = "4.1.2"; deps = { inherit openssl zlib libuv; @@ -31,7 +31,7 @@ in stdenv.mkDerivation { src = fetchurl { url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.gz"; - sha256 = "453005f64ee529f7dcf1237eb27ee2fa2415c49f5c9e7463e8b71fba61c5b408"; + sha256 = "0j9ca1fjgljzh4m9l9d8g81510j0ljvaf031qij9psiz79qc7gpy"; }; configureFlags = concatMap sharedConfigureFlags (builtins.attrNames deps) ++ [ "--without-dtrace" ]; diff --git a/pkgs/games/crawl/default.nix b/pkgs/games/crawl/default.nix index 43dc3409591..06151365060 100644 --- a/pkgs/games/crawl/default.nix +++ b/pkgs/games/crawl/default.nix @@ -3,7 +3,7 @@ , tileMode ? true }: -let version = "0.16.1"; +let version = "0.16.2"; in stdenv.mkDerivation rec { name = "crawl-${version}" + (if tileMode then "-tiles" else ""); @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { owner = "crawl-ref"; repo = "crawl-ref"; rev = version; - sha256 = "0gciqaij05qr5bwkk5mblvk5k0p6bzjd58czk1b6x5xx5qcp6mmh"; + sha256 = "08ns49if8941vsg6abywgw3mnjafgj5sga0cdvvvviq0qqzprhw9"; }; patches = [ ./crawl_purify.patch ]; diff --git a/pkgs/games/onscripter-en/default.nix b/pkgs/games/onscripter-en/default.nix index 8e9f5a988bf..ab60041aa30 100644 --- a/pkgs/games/onscripter-en/default.nix +++ b/pkgs/games/onscripter-en/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "Japanese visual novel scripting engine"; - homepage = "http://dev.haeleth.net/onscripter.shtml"; + homepage = "http://unclemion.com/onscripter/"; license = licenses.gpl2; platforms = platforms.unix; maintainers = with maintainers; [ abbradar ]; diff --git a/pkgs/games/scrolls/default.nix b/pkgs/games/scrolls/default.nix index 0f252a5043f..5fa7410ef93 100644 --- a/pkgs/games/scrolls/default.nix +++ b/pkgs/games/scrolls/default.nix @@ -2,7 +2,7 @@ , mesa_glu, libX11, libXext, libXcursor, libpulseaudio }: stdenv.mkDerivation { - name = "scrolls-2014-03-08"; + name = "scrolls-2015-10-13"; meta = { description = "A strategy collectible card game"; @@ -16,7 +16,7 @@ stdenv.mkDerivation { src = fetchurl { url = "http://download.scrolls.com/client/linux.tar.gz"; - sha256 = "164d13ce5b81b215a58bae5a0d024b4cf6e32c986ca57a2c9d4e80326edb5004"; + sha256 = "ead1fd14988aa07041fedfa7f845c756cd5077a5a402d85bfb749cb669ececec"; }; libPath = stdenv.lib.makeLibraryPath [ @@ -39,7 +39,7 @@ stdenv.mkDerivation { --set-rpath "$libPath" "$out/opt/Scrolls/Scrolls" mkdir "$out/bin" - ln -s "$out/opt/Scrolls/Scrolls" "$out/bin/Scrolls" + ln -s "$out/opt/Scrolls/Scrolls" "$out/bin/Scrolls" ''; } diff --git a/pkgs/games/steam/chrootenv.nix b/pkgs/games/steam/chrootenv.nix index af86222414b..ffd68562dee 100644 --- a/pkgs/games/steam/chrootenv.nix +++ b/pkgs/games/steam/chrootenv.nix @@ -15,7 +15,6 @@ buildFHSUserEnv { pkgs.xdg_utils pkgs.xorg.xrandr pkgs.which - pkgs.libcxxabi ] ++ lib.optional (config.steam.java or false) pkgs.jdk ++ lib.optional (config.steam.primus or false) pkgs.primus @@ -46,8 +45,6 @@ buildFHSUserEnv { pkgs.xorg.libXScrnSaver pkgs.xorg.libXtst pkgs.xorg.libXxf86vm - - pkgs.libcxxabi pkgs.ffmpeg pkgs.libpng12 @@ -77,8 +74,6 @@ buildFHSUserEnv { export LD_PRELOAD=/lib32/libpulse.so:/lib64/libpulse.so:/lib32/libasound.so:/lib64/libasound.so:$LD_PRELOAD # Another one for https://github.com/ValveSoftware/steam-for-linux/issues/3801 export LD_PRELOAD=/lib32/libstdc++.so:/lib64/libstdc++.so:$LD_PRELOAD - # An ugly fix to get Sid Meier's Civilization V to launch. - export LD_PRELOAD=/lib32/libc++abi.so:/lib64/libc++abi.so:$LD_PRELOAD ''; runScript = "steam"; diff --git a/pkgs/games/tennix/fix_FTBFS.patch b/pkgs/games/tennix/fix_FTBFS.patch index 9079fbb0767..1bbae8acf38 100644 --- a/pkgs/games/tennix/fix_FTBFS.patch +++ b/pkgs/games/tennix/fix_FTBFS.patch @@ -1,5 +1,5 @@ From: Thomas Perl -Description: Fix FTBFS +Description: Fix FTBFS Origin: upstream, http://repo.or.cz/w/tennix.git/commitdiff/6144cb7626dfdc0820a0036af83a531e8e68bae6 Bug-Debian: http://bugs.debian.org/664907 @@ -11,7 +11,7 @@ Bug-Debian: http://bugs.debian.org/664907 #include +#include #include - + #include "archive.hh" --- tennix-1.1.orig/game.c +++ tennix-1.1/game.c @@ -29,37 +29,37 @@ Bug-Debian: http://bugs.debian.org/664907 +++ tennix-1.1/network.h @@ -103,19 +103,19 @@ void net_serialize_ball(const Ball* src, NetworkBall* dest); - + void -net_unserialize_ball(const NetworkBall* src, Ball* dest); +net_unserialize_ball(NetworkBall* src, Ball* dest); - + void net_serialize_player(const Player* src, NetworkPlayer* dest); - + void -net_unserialize_player(const NetworkPlayer* src, Player* dest); +net_unserialize_player(NetworkPlayer* src, Player* dest); - + void net_serialize_gamestate(const GameState* src, NetworkGameState* dest); - + void -net_unserialize_gamestate(const NetworkGameState* src, GameState* dest); +net_unserialize_gamestate(NetworkGameState* src, GameState* dest); - + #endif - + --- tennix-1.1.orig/locations.h +++ tennix-1.1/locations.h @@ -155,7 +155,7 @@ static Location locations[] = { #endif - + /* End marker */ - { NULL, NULL, NULL, 0, 0, NULL, 0, 0, 0, 0, false } + { NULL, NULL, NULL, 0, 0, NULL, 0, 0, 0, 0, false, false, 0, 0 } }; - + unsigned int location_count() --- tennix-1.1.orig/tennix.cc +++ tennix-1.1/tennix.cc @@ -75,76 +75,76 @@ Bug-Debian: http://bugs.debian.org/664907 --- tennix-1.1.orig/SDL_rotozoom.c +++ tennix-1.1/SDL_rotozoom.c @@ -365,6 +365,9 @@ int zoomSurfaceRGBA(SDL_Surface * src, S - - int zoomSurfaceY(SDL_Surface * src, SDL_Surface * dst, int flipx, int flipy) - { -+ (void)flipx; -+ (void)flipy; -+ - Uint32 x, y, sx, sy, *sax, *say, *csax, *csay, csx, csy; - Uint8 *sp, *dp, *csp; - int dgap; + + int zoomSurfaceY(SDL_Surface * src, SDL_Surface * dst, int flipx, int flipy) + { ++ (void)flipx; ++ (void)flipy; ++ + Uint32 x, y, sx, sy, *sax, *say, *csax, *csay, csx, csy; + Uint8 *sp, *dp, *csp; + int dgap; @@ -393,7 +396,7 @@ int zoomSurfaceY(SDL_Surface * src, SDL_ - */ - csx = 0; - csax = sax; -- for (x = 0; x < dst->w; x++) { -+ for (x = 0; x < (Uint32)dst->w; x++) { - csx += sx; - *csax = (csx >> 16); - csx &= 0xffff; + */ + csx = 0; + csax = sax; +- for (x = 0; x < dst->w; x++) { ++ for (x = 0; x < (Uint32)dst->w; x++) { + csx += sx; + *csax = (csx >> 16); + csx &= 0xffff; @@ -401,7 +404,7 @@ int zoomSurfaceY(SDL_Surface * src, SDL_ - } - csy = 0; - csay = say; -- for (y = 0; y < dst->h; y++) { -+ for (y = 0; y < (Uint32)dst->h; y++) { - csy += sy; - *csay = (csy >> 16); - csy &= 0xffff; + } + csy = 0; + csay = say; +- for (y = 0; y < dst->h; y++) { ++ for (y = 0; y < (Uint32)dst->h; y++) { + csy += sy; + *csay = (csy >> 16); + csy &= 0xffff; @@ -410,13 +413,13 @@ int zoomSurfaceY(SDL_Surface * src, SDL_ - - csx = 0; - csax = sax; -- for (x = 0; x < dst->w; x++) { -+ for (x = 0; x < (Uint32)dst->w; x++) { - csx += (*csax); - csax++; - } - csy = 0; - csay = say; -- for (y = 0; y < dst->h; y++) { -+ for (y = 0; y < (Uint32)dst->h; y++) { - csy += (*csay); - csay++; - } + + csx = 0; + csax = sax; +- for (x = 0; x < dst->w; x++) { ++ for (x = 0; x < (Uint32)dst->w; x++) { + csx += (*csax); + csax++; + } + csy = 0; + csay = say; +- for (y = 0; y < dst->h; y++) { ++ for (y = 0; y < (Uint32)dst->h; y++) { + csy += (*csay); + csay++; + } @@ -432,10 +435,10 @@ int zoomSurfaceY(SDL_Surface * src, SDL_ - * Draw - */ - csay = say; -- for (y = 0; y < dst->h; y++) { -+ for (y = 0; y < (Uint32)dst->h; y++) { - csax = sax; - sp = csp; -- for (x = 0; x < dst->w; x++) { -+ for (x = 0; x < (Uint32)dst->w; x++) { - /* - * Draw - */ + * Draw + */ + csay = say; +- for (y = 0; y < dst->h; y++) { ++ for (y = 0; y < (Uint32)dst->h; y++) { + csax = sax; + sp = csp; +- for (x = 0; x < dst->w; x++) { ++ for (x = 0; x < (Uint32)dst->w; x++) { + /* + * Draw + */ @@ -801,6 +804,8 @@ SDL_Surface* rotateSurface90Degrees(SDL_ - void rotozoomSurfaceSizeTrig(int width, int height, double angle, double zoomx, double zoomy, int *dstwidth, int *dstheight, - double *canglezoom, double *sanglezoom) - { -+ (void)zoomy; -+ - double x, y, cx, cy, sx, sy; - double radangle; - int dstwidthhalf, dstheighthalf; + void rotozoomSurfaceSizeTrig(int width, int height, double angle, double zoomx, double zoomy, int *dstwidth, int *dstheight, + double *canglezoom, double *sanglezoom) + { ++ (void)zoomy; ++ + double x, y, cx, cy, sx, sy; + double radangle; + int dstwidthhalf, dstheighthalf; --- tennix-1.1.orig/network.c +++ tennix-1.1/network.c @@ -183,7 +183,7 @@ net_serialize_ball(const Ball* src, Netw } - + void -net_unserialize_ball(const NetworkBall* src, Ball* dest) +net_unserialize_ball(NetworkBall* src, Ball* dest) @@ -153,7 +153,7 @@ Bug-Debian: http://bugs.debian.org/664907 dest->x = unpack_float(SDLNet_Read32(&(src->x)), -WIDTH, WIDTH*2); @@ -213,7 +213,7 @@ net_serialize_player(const Player* src, } - + void -net_unserialize_player(const NetworkPlayer* src, Player* dest) +net_unserialize_player(NetworkPlayer* src, Player* dest) @@ -171,36 +171,36 @@ Bug-Debian: http://bugs.debian.org/664907 dest->accelerate = unpack_float(SDLNet_Read32(&(src->accelerate)), 0, 200); @@ -250,7 +250,7 @@ net_serialize_gamestate(const GameState* } - + void -net_unserialize_gamestate(const NetworkGameState* src, GameState* dest) +net_unserialize_gamestate(NetworkGameState* src, GameState* dest) { int p; - + --- tennix-1.1.orig/makefile +++ tennix-1.1/makefile @@ -27,24 +27,23 @@ ifeq ($(MKCALLGRAPH),1) LD = nccld endif - + -RELEASE = 1.1 - -UNAME = $(shell uname) +RELEASE = 1.1.1 - + PREFIX ?= /usr/local BINDIR ?= $(PREFIX)/bin DATAROOTDIR ?= $(PREFIX)/share DATADIR ?= $(DATAROOTDIR)/games - + -LIBS = -CFLAGS += -W -Wall -ansi -pedantic -Wcast-qual -Wwrite-strings -DVERSION=\"$(RELEASE)\" -O2 -DPREFIX=\"$(PREFIX)\" -g +CFLAGS += -W -Wall -DVERSION=\"$(RELEASE)\" -O2 -DPREFIX=\"$(PREFIX)\" CXXFLAGS += $(CFLAGS) - + USE_PYTHON ?= 1 - + ifeq ($(USE_PYTHON),1) - CFLAGS += `python-config --includes` -DTENNIX_PYTHON - LIBS += `python-config --libs` @@ -209,12 +209,12 @@ Bug-Debian: http://bugs.debian.org/664907 + CFLAGS += $(PYTHON_INCLUDES) -DTENNIX_PYTHON + LIBS += $(PYTHON_LIBS) endif - + ifeq ($(NONFREE_LOCATIONS),1) @@ -67,17 +66,14 @@ ifeq ($(MAEMO),1) CFLAGS += -DMAEMO endif - + -ifeq ($(UNAME),Darwin) - SDLLIBS=$$(sdl-config --prefix)/lib - LIBS += $$(sdl-config --static-libs) $(SDLLIBS)/libSDL_mixer.a $(SDLLIBS)/libSDL_image.a $(SDLLIBS)/libSDL_ttf.a $(SDLLIBS)/libSDL_net.a $$(freetype-config --prefix)/lib/libfreetype.a @@ -228,7 +228,7 @@ Bug-Debian: http://bugs.debian.org/664907 + +LIBS += $(SDL_LIBS) -lSDL_mixer -lSDL_image -lSDL_ttf -lSDL_net +CFLAGS += $(SDL_CFLAGS) - + -SRC = tennix.cc game.c graphics.cc input.c util.c sound.cc animation.c network.c OBJ = tennix.o game.o graphics.o input.o util.o sound.o animation.o archive.o SDL_rotozoom.o network.o + @@ -240,7 +240,7 @@ Bug-Debian: http://bugs.debian.org/664907 @@ -98,6 +98,13 @@ typedef struct { bool inhibit_gravity; } Ball; - + +enum PlayerDesire { + DESIRE_NORMAL, + DESIRE_TOPSPIN, @@ -266,7 +266,7 @@ Bug-Debian: http://bugs.debian.org/664907 @@ -118,13 +125,6 @@ enum { PLAYER_TYPE_AI }; - + -enum { - DESIRE_NORMAL, - DESIRE_TOPSPIN, @@ -276,9 +276,9 @@ Bug-Debian: http://bugs.debian.org/664907 - /* wait 2 seconds before we score the game */ #define SCORING_DELAY 1000 - + @@ -161,7 +161,7 @@ enum { - + typedef struct { const Location* location; - char current_location; /* index of loc. in global location table */ diff --git a/pkgs/misc/emulators/wine/versions.nix b/pkgs/misc/emulators/wine/versions.nix index 2775150385d..f3f1e3bff15 100644 --- a/pkgs/misc/emulators/wine/versions.nix +++ b/pkgs/misc/emulators/wine/versions.nix @@ -1,7 +1,7 @@ { unstable = { - wineVersion = "1.7.48"; - wineSha256 = "13kcjirif57p8mg4yhzxf0hjpghlwc18iskz66dx94i0dvjmrxg3"; + wineVersion = "1.7.52"; + wineSha256 = "0jsm1p7zwhfb5fpp0xd39vnx9m98kqgfng1q9kdj70rm1hmb6wq7"; geckoVersion = "2.36"; geckoSha256 = "12hjks32yz9jq4w3xhk3y1dy2g3iakqxd7aldrdj51cqiz75g95g"; gecko64Version = "2.36"; @@ -20,8 +20,8 @@ monoSha256 = "09dwfccvfdp3walxzp6qvnyxdj2bbyw9wlh6cxw2sx43gxriys5c"; }; staging = { - version = "1.7.48"; - sha256 = "06p1h92vaqlzk09aj4na6z7k3a81y9nw19rfg9q2szpcqjdd437w"; + version = "1.7.52"; + sha256 = "12r100gv34k44kia14wrfa42q0cjd8ir8vi8cx1b6hgnzw3x0gzk"; }; winetricks = { version = "20150706"; diff --git a/pkgs/misc/lilypond/default.nix b/pkgs/misc/lilypond/default.nix index 29bb9d7d680..9021092d928 100644 --- a/pkgs/misc/lilypond/default.nix +++ b/pkgs/misc/lilypond/default.nix @@ -29,8 +29,11 @@ stdenv.mkDerivation rec{ postInstall = '' for f in "$out/bin/"*; do + # Override default argv[0] setting so LilyPond can find + # its Scheme libraries. wrapProgram "$f" --set GUILE_AUTO_COMPILE 0 \ - --set PATH "${ghostscript}/bin" + --set PATH "${ghostscript}/bin" \ + --argv0 "$f" done ''; diff --git a/pkgs/misc/themes/vertex/default.nix b/pkgs/misc/themes/vertex/default.nix index d1c81e0af48..60269c8dfbf 100644 --- a/pkgs/misc/themes/vertex/default.nix +++ b/pkgs/misc/themes/vertex/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "theme-vertex-${version}"; - version = "20150718"; + version = "20150923"; src = fetchFromGitHub { owner = "horst3180"; repo = "Vertex-theme"; rev = version; - sha256 = "19mmybfkx3mrbm9vr78c7xiyazmyzji1n6669466svjr3jy87546"; + sha256 = "0jsdnrw7sgrb7s4byv80y9c782gd6vbq0xsrrhwkflfnxcldvz4r"; }; buildInputs = [ autoreconfHook gtk3 pkgconfig ]; diff --git a/pkgs/misc/vim-plugins/default.nix b/pkgs/misc/vim-plugins/default.nix index 4d25b5b73b2..5110ed409c6 100644 --- a/pkgs/misc/vim-plugins/default.nix +++ b/pkgs/misc/vim-plugins/default.nix @@ -47,13 +47,15 @@ rec { colorsamplerpack = Colour_Sampler_Pack; command_T = command-t; # backwards compat, added 2014-10-18 css_color_5056 = vim-css-color; + ctrlp = ctrlp-vim; easy-align = vim-easy-align; easymotion = vim-easymotion; eighties = vim-eighties; ghc-mod-vim = ghcmod; gist-vim = Gist; gitgutter = vim-gitgutter; - gundo = Gundo; + gundo = gundo-vim; + Gundo = gundo-vim; # backwards compat, added 2015-10-03 haskellConceal = haskellconceal; # backwards compat, added 2014-10-18 haskellconceal = vim-haskellconceal; hier = vim-hier; @@ -118,17 +120,6 @@ rec { }; - Gundo = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "Gundo"; - src = fetchhg { - url = "https://bitbucket.org/sjl/gundo.vim"; - rev = "eb9fc8676b89"; - sha256 = "05lcxrd9ibfi02ja4jvl5y5pp884b8kh9aarw045b0mlldygv6cp"; - }; - dependencies = []; - - }; - Hoogle = buildVimPluginFrom2Nix { # created by nix#NixDerivation name = "Hoogle-2013-11-26"; src = fetchgit { @@ -163,11 +154,11 @@ rec { }; Syntastic = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "Syntastic-2015-09-21"; + name = "Syntastic-2015-10-02"; src = fetchgit { url = "git://github.com/scrooloose/syntastic"; - rev = "d73d7601ccb79ac94447b3c661ed5de2801d3977"; - sha256 = "64a03f457d008d66ec913296b15bd5590cca9bf339ac149af42318e99157a8d0"; + rev = "7e26d3589ab414155dff2c362a07e9e8bb970823"; + sha256 = "3878a0d2664eac37c033985d725c8606bb6c1796cf94d36ffe85197bf1df8b24"; }; dependencies = []; @@ -229,11 +220,11 @@ rec { }; VimOutliner = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "VimOutliner-2015-01-09"; + name = "VimOutliner-2015-10-01"; src = fetchgit { url = "git://github.com/vimoutliner/vimoutliner"; - rev = "7c995f973c54b0d026137615af28059890edb197"; - sha256 = "9d1526ec99904fd2ccfdb4dd6763b4cd04048cb74bb7a0a4c9b4a7b1f5d75cb5"; + rev = "cb41cfd6d636e1243e7e9c46b35fc5cb50588069"; + sha256 = "6faf7e34f4793b2445dd9c3facbf19cd6c1c9ab39b83dfb3d89626314ef1850f"; }; dependencies = []; @@ -277,17 +268,6 @@ rec { }; - ctrlp = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "ctrlp-2013-07-29"; - src = fetchgit { - url = "git://github.com/kien/ctrlp.vim"; - rev = "b5d3fe66a58a13d2ff8b6391f4387608496a030f"; - sha256 = "41f7884973770552395b96f8693da70999dc815462d4018c560d3ff6be462e76"; - }; - dependencies = []; - - }; - ctrlp-py-matcher = buildVimPluginFrom2Nix { # created by nix#NixDerivation name = "ctrlp-py-matcher-2015-07-18"; src = fetchgit { @@ -311,22 +291,22 @@ rec { }; extradite = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "extradite-2015-01-26"; + name = "extradite-2015-09-22"; src = fetchgit { url = "git://github.com/int3/vim-extradite"; - rev = "a1dc4b63befd5032e65a0c94e7257d4636aa6a3f"; - sha256 = "94e05bbe36c9d4cee9832530531eedff0da509d5a0a52beee4e524fd4ad96714"; + rev = "52326f6d333cdbb9e9c6d6772af87f4f39c00526"; + sha256 = "91f744ee73faad92adb67a698b58a14cfa0fbb65f6d483a96a1c5b139ee1cdf1"; }; dependencies = []; }; fugitive = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "fugitive-2015-09-10"; + name = "fugitive-2015-10-02"; src = fetchgit { url = "git://github.com/tpope/vim-fugitive"; - rev = "b7b23001def8d2ae816ff6dd772cd50976189e0e"; - sha256 = "737def8b596472908509bdfaf8d33111471fb1a2d692133ce16f03548e226672"; + rev = "0b43b51d7785aeb4002b45ca49cea5aef0d2e988"; + sha256 = "8b6002169ec54487951680c67e618b2bfdf04cc0d430eb1149917f82277fc20f"; }; dependencies = []; @@ -354,12 +334,34 @@ rec { }; + vim-nix = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "vim-nix-2015-05-10"; + src = fetchgit { + url = "git://github.com/LnL7/vim-nix"; + rev = "39f5eb681f2ed2282ed562af2d6a2e40712d8429"; + sha256 = "6f109b6949f773b2d7f06adeb45334fa61479c95750666b450265851cb24c761"; + }; + dependencies = []; + + }; + vim-css-color = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-css-color-2015-06-22"; + name = "vim-css-color-2015-10-03"; src = fetchgit { url = "git://github.com/ap/vim-css-color"; - rev = "ceb028b27eae0550533501b1f02cb512a482ba85"; - sha256 = "d428970699b59b0da89d3cf73be39f62c2751512919fa2773baa241a9f79fccd"; + rev = "7ad79c7b77bd83296d7a10e596860d9269070207"; + sha256 = "bd6ad1ddad9d520c018083bab8eb53575f99572f3e079abad452db0bf8871708"; + }; + dependencies = []; + + }; + + neomake = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "neomake-2015-09-29"; + src = fetchgit { + url = "git://github.com/benekastah/neomake"; + rev = "dc65a7a5d85670c84fc0055d19fa6901ae96ef93"; + sha256 = "967559156af1f06e345c04a4df9e3ab6a0e913e56ff2a66189a91a5c57c4f668"; }; dependencies = []; @@ -387,6 +389,17 @@ rec { }; + ctrlp-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "ctrlp-vim-2015-09-15"; + src = fetchgit { + url = "git://github.com/ctrlpvim/ctrlp.vim"; + rev = "58247bdf8550879e183c13860eefa03983959e4a"; + sha256 = "1d4cf293a1e48564a491e00077794e23f5360827a72c2618fd3e99ee153ea6a8"; + }; + dependencies = []; + + }; + vim-jade = buildVimPluginFrom2Nix { # created by nix#NixDerivation name = "vim-jade-2015-07-06"; src = fetchgit { @@ -399,11 +412,11 @@ rec { }; neco-ghc = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neco-ghc-2015-09-20"; + name = "neco-ghc-2015-10-03"; src = fetchgit { url = "git://github.com/eagletmt/neco-ghc"; - rev = "c5b47167b29ad5887332567edc655433d32642bd"; - sha256 = "c8e7a746cb4b2faba15dd11a6c9da5c478612cd2ec4af221ea20f37c230884d2"; + rev = "0550fea80e9c958a479067805bcf98e294bb2e32"; + sha256 = "061fadcae3122f4d2bb86e0a238f8980884080427bbc3f0fe7e2e9c9efe6c5eb"; }; dependencies = []; @@ -421,11 +434,11 @@ rec { }; vim-go = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-go-2015-09-14"; + name = "vim-go-2015-10-03"; src = fetchgit { url = "git://github.com/fatih/vim-go"; - rev = "73710fe6964c2f366682dba3550e2dcec7831949"; - sha256 = "e4b83ec0233d1ae1cc4f7fe8dcc7e2dbd10de8fe314ff78045a850082f70b048"; + rev = "1792ee374ba8d384cd547506cbf8f43690d1d55f"; + sha256 = "cbcac7b9ee8fccf89fc7b5adfb9a7ca7cda2e15447093a9fc886c2fd5b0063e0"; }; dependencies = []; @@ -443,11 +456,11 @@ rec { }; calendar-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "calendar-vim-2015-06-28"; + name = "calendar-vim-2015-10-01"; src = fetchgit { url = "git://github.com/itchyny/calendar.vim"; - rev = "9cf5b7a01d439c5093bac92364d06e29ed15f2f0"; - sha256 = "7e3f98b72270447b471aae0f178d2b06292d3449007b41350c6145436d1da114"; + rev = "9aa130feab18fd142265487ce86f664746a080e0"; + sha256 = "03b1ddec54f0b06be61dae2c42ac3cffd52833ecbcebd269f0e2a0d720aa9b83"; }; dependencies = []; @@ -530,6 +543,28 @@ rec { postInstall = false; }; + limelight-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "limelight-vim-2015-08-19"; + src = fetchgit { + url = "git://github.com/junegunn/limelight.vim"; + rev = "153e3f7b78484eb4f5d69833ebf628f44b94996d"; + sha256 = "85a5188dfd51a170b88e1df5ad4f5ae1cfb2e5c54dfbb734d7f4d85cf28eb5fd"; + }; + dependencies = []; + + }; + + vim-peekaboo = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "vim-peekaboo-2015-07-16"; + src = fetchgit { + url = "git://github.com/junegunn/vim-peekaboo"; + rev = "b14a7496897bb0a520bed4f519ca79a683bafeec"; + sha256 = "926f42ee4271395ad8a3526e7b0f1077482cec2f557595d3365ac86eb88ae8c3"; + }; + dependencies = []; + + }; + vim-eighties = buildVimPluginFrom2Nix { # created by nix#NixDerivation name = "vim-eighties-2015-06-15"; src = fetchgit { @@ -563,6 +598,17 @@ rec { }; + vimtex = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "vimtex-2015-10-04"; + src = fetchgit { + url = "git://github.com/lervag/vimtex"; + rev = "db92be5756239c31eed521f2131eac3ca997c0cc"; + sha256 = "67597a04c0c92199d0499607982a202247ef879768445eb0c7a21d27357845fc"; + }; + dependencies = []; + + }; + vim-easymotion = buildVimPluginFrom2Nix { # created by nix#NixDerivation name = "vim-easymotion-2015-08-06"; src = fetchgit { @@ -589,6 +635,17 @@ rec { buildInputs = [ xkb_switch ]; }; + vim-startify = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "vim-startify-2015-08-20"; + src = fetchgit { + url = "git://github.com/mhinz/vim-startify"; + rev = "6f886cdc48cf34c50eb723abca2f813a5de2c11b"; + sha256 = "2614bee6a0cdb1a80aa6d3cfeba9e7521ac0be21d15ca4512a413cf192d93fd8"; + }; + dependencies = []; + + }; + lushtags = buildVimPluginFrom2Nix { # created by nix#NixDerivation name = "lushtags-2015-06-06"; src = fetchgit { @@ -648,11 +705,11 @@ rec { }; neocomplete-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neocomplete-vim-2015-09-15"; + name = "neocomplete-vim-2015-10-03"; src = fetchgit { url = "git://github.com/shougo/neocomplete.vim"; - rev = "f6befdc80f3e61d0d26734e064a84e5a78ee00cc"; - sha256 = "c5307e5757deca8fe7ea17bf5ee60a89d855c42e2b0ebec5d40bc1dae09fffac"; + rev = "d2a78075207b97c105041927a125e2cf0b2b0ca5"; + sha256 = "6a64c6bd90a53f7f3636177cb1c507229d51b7dbb6a5dde8f3c4aad4cbe176d7"; }; dependencies = []; @@ -670,33 +727,33 @@ rec { }; neosnippet-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neosnippet-vim-2015-09-01"; + name = "neosnippet-vim-2015-10-03"; src = fetchgit { url = "git://github.com/shougo/neosnippet.vim"; - rev = "1617094a8c9df36d9a505f533b3a2efa44039412"; - sha256 = "a061f5943b077219990288e369c6013a730117f2168f08f50d09b0d5032319a9"; + rev = "7c07c4d8a2228c77ae4d519c936811db662ecd4a"; + sha256 = "c967ad2b7a70bfa273e9a802b3b6603f85bcb5dcdae8749019ce43de7dfde85c"; }; dependencies = []; }; unite-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "unite-vim-2015-09-17"; + name = "unite-vim-2015-10-02"; src = fetchgit { url = "git://github.com/shougo/unite.vim"; - rev = "f24df7733eca3009ee3fac159014aa2001ccadac"; - sha256 = "06f7290cd1e8b1f65f6e6495ac6ac263feed101d804032fd595c0f1b1207ed16"; + rev = "c57bed02229a80d050c2411dff5f0943e6edf08a"; + sha256 = "3486c584a023b31257e3c67ad86557d62577aa9a5ee19b79736844f1a114179f"; }; dependencies = []; }; vimproc-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vimproc-vim-2015-09-20"; + name = "vimproc-vim-2015-10-03"; src = fetchgit { url = "git://github.com/shougo/vimproc.vim"; - rev = "d4939b5bed442e1c30fa9e7f05db0d110b2edce8"; - sha256 = "6e80eae94b3e81951273a44677cfc03bfdeaaefab3ea13e76b1b79eaeb42b03e"; + rev = "3134f1258de30a4eb7a3b1aeee90628a7f0c3a2a"; + sha256 = "8993f0ac8d768f3e99fa05fca61434eeb5dc34b337db42b0524f60827be41b79"; }; dependencies = []; buildInputs = [ which ]; @@ -720,6 +777,17 @@ rec { dependencies = [ "vimproc-vim" ]; }; + gundo-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "gundo-vim-2013-07-10"; + src = fetchgit { + url = "git://github.com/sjl/gundo.vim"; + rev = "3975ac871565115e3769dc69c06bc88ddc1369af"; + sha256 = "f66ed79d88171a4d57ee64eaf21035291518d8c64b607bd420c3ee85fa14afe5"; + }; + dependencies = []; + + }; + vim-hardtime = buildVimPluginFrom2Nix { # created by nix#NixDerivation name = "vim-hardtime-2014-10-21"; src = fetchgit { @@ -732,11 +800,11 @@ rec { }; vim-quickrun = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-quickrun-2015-08-09"; + name = "vim-quickrun-2015-10-02"; src = fetchgit { url = "git://github.com/thinca/vim-quickrun"; - rev = "ec9f7f2c26dd49ffaf4f3ce8c6254c76696fbf41"; - sha256 = "dc80ac9ee04329e770a549f83a6b167629daf29f513f31af0c076c237e978b5a"; + rev = "9fff9e5f12fcea45637821e30e6dbee05e748854"; + sha256 = "ca7376c6eafc1397c0a92c2ace7141daeeb881aaeabdc3168d4a0b598fd25caa"; }; dependencies = []; @@ -753,6 +821,17 @@ rec { }; + vim-eunuch = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "vim-eunuch-2015-06-30"; + src = fetchgit { + url = "git://github.com/tpope/vim-eunuch"; + rev = "eb8b2d54fb537ee93f762f6331265057a3f69727"; + sha256 = "ec9194bf2ec97ae3c0f5818fb8a7a9edaf4ea93ca790df7c4d6a4e2486218fe6"; + }; + dependencies = []; + + }; + hasksyn = buildVimPluginFrom2Nix { # created by nix#NixDerivation name = "hasksyn-2014-09-03"; src = fetchgit { @@ -776,11 +855,11 @@ rec { }; youcompleteme = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "youcompleteme-2015-09-21"; + name = "youcompleteme-2015-09-25"; src = fetchgit { url = "git://github.com/valloric/youcompleteme"; - rev = "2816559ee465860a8a5502b7a1d551bdb46d1b24"; - sha256 = "e7b258efd3fcd93dbfa9e326ace5c1ab01cbe868993e2817ab36eba605595a9d"; + rev = "5a186275a581b04bbdb7001475d946e30d0f80b4"; + sha256 = "6794aaa55ad55db1972260fe02099c8c05961c5ac9151776c88a2cdf3fcd92fd"; }; dependencies = []; buildInputs = [ @@ -821,6 +900,28 @@ rec { }; }; + vim-pandoc = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "vim-pandoc-2015-08-13"; + src = fetchgit { + url = "git://github.com/vim-pandoc/vim-pandoc"; + rev = "ead1f177b2c894d60e01d3f16227e2e6e06c85a7"; + sha256 = "44fa5d236f7ae2e98bd3e1575b79265be812b4a49488d001f9f37e9b2b8cd3f8"; + }; + dependencies = []; + + }; + + vim-pandoc-syntax = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "vim-pandoc-syntax-2015-09-25"; + src = fetchgit { + url = "git://github.com/vim-pandoc/vim-pandoc-syntax"; + rev = "dd71d6fc53e22e2bc84790e0b60f9827957e1ea7"; + sha256 = "60787f9ced453f335c0fe02f3e727bc9d4f4ab2e40a42a881b3b6f3b20798e37"; + }; + dependencies = []; + + }; + Colour-Sampler-Pack = buildVimPluginFrom2Nix { # created by nix#NixDerivation name = "Colour-Sampler-Pack-2012-11-29"; src = fetchgit { @@ -899,11 +1000,11 @@ rec { }; vim-wakatime = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-wakatime-2015-09-07"; + name = "vim-wakatime-2015-10-01"; src = fetchgit { url = "git://github.com/wakatime/vim-wakatime"; - rev = "39598ddbdbb973cf5e13f1e6e4aabf7664ba0096"; - sha256 = "0efad3ccbfc3226a071ca3dadf46ae0813eccd4402efd8ad797e4194a5e91411"; + rev = "9fd813c489958f98f5e8b215ab8b91b47f86fb5a"; + sha256 = "d55ee76845eda96d1864f73d6927f8c20a2df21bd25dae03ede732d2610d9a32"; }; dependencies = []; buildInputs = [ python ]; @@ -1004,11 +1105,11 @@ rec { }; sensible = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "sensible-2015-04-04"; + name = "sensible-2015-09-24"; src = fetchgit { url = "git://github.com/tpope/vim-sensible"; - rev = "d0beb8ab42627bea2c747564ca46ec663e3ba0ba"; - sha256 = "c1893990e7b0b3f409b2ec4f4e1fb7f00f61a5146b94314ad28d86231d3ab6f7"; + rev = "26f8783e08efef27fc01e0df6465b8f94c8bf270"; + sha256 = "e04193a4f38bdc3c552ce5033bb3922a7ccae84ec6e1e46e12e71e1afb93cac3"; }; dependencies = []; @@ -1090,17 +1191,6 @@ rec { ''; }; - tlib = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "tlib-2015-08-05"; - src = fetchgit { - url = "git://github.com/tomtom/tlib_vim"; - rev = "4c128ee2fee6d97cc5c6089e7797b4ad536de2a4"; - sha256 = "9cd0fc23bb332d5ae939019929d989b636b891c894f350c38234eaf084e0656c"; - }; - dependencies = []; - - }; - undotree = buildVimPluginFrom2Nix { # created by nix#NixDerivation name = "undotree-2015-08-19"; src = fetchgit { @@ -1112,17 +1202,6 @@ rec { }; - vim-addon-actions = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-addon-actions-2014-09-22"; - src = fetchgit { - url = "git://github.com/MarcWeber/vim-addon-actions"; - rev = "a5d20500fb8812958540cf17862bd73e7af64936"; - sha256 = "d2c3eb7a1f29e7233c6fcf3b02d07efebe8252d404ee593419ad399a5fdf6383"; - }; - dependencies = ["vim-addon-mw-utils" "tlib"]; - - }; - vim-addon-async = buildVimPluginFrom2Nix { # created by nix#NixDerivation name = "vim-addon-async-2013-10-18"; src = fetchgit { @@ -1134,17 +1213,6 @@ rec { }; - vim-addon-background-cmd = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-addon-background-cmd-2015-01-05"; - src = fetchgit { - url = "git://github.com/MarcWeber/vim-addon-background-cmd"; - rev = "e99076519139b959edce0581b0f31207a5ec7c64"; - sha256 = "524795221ae727635fe52ead47dff452d2dd48900917da609426ea399a2eceeb"; - }; - dependencies = ["vim-addon-mw-utils"]; - - }; - vim-addon-commenting = buildVimPluginFrom2Nix { # created by nix#NixDerivation name = "vim-addon-commenting-2013-06-10"; src = fetchgit { @@ -1167,28 +1235,6 @@ rec { }; - vim-addon-errorformats = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-addon-errorformats-2014-11-05"; - src = fetchgit { - url = "git://github.com/MarcWeber/vim-addon-errorformats"; - rev = "dcbb203ad5f56e47e75fdee35bc92e2ba69e1d28"; - sha256 = "a1260206545d5ae17f2e6b3319f5cf1808b74e792979b1c6667d75974cc53f95"; - }; - dependencies = []; - - }; - - vim-addon-goto-thing-at-cursor = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-addon-goto-thing-at-cursor-2012-01-11"; - src = fetchgit { - url = "git://github.com/MarcWeber/vim-addon-goto-thing-at-cursor"; - rev = "f052e094bdb351829bf72ae3435af9042e09a6e4"; - sha256 = "34658ac99d9a630db9c544b3dfcd2c3df69afa5209e27558cc022b7afc2078ea"; - }; - dependencies = ["tlib"]; - - }; - vim-addon-local-vimrc = buildVimPluginFrom2Nix { # created by nix#NixDerivation name = "vim-addon-local-vimrc-2015-03-19"; src = fetchgit { @@ -1266,17 +1312,6 @@ rec { }; - vim-addon-signs = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-addon-signs-2013-04-19"; - src = fetchgit { - url = "git://github.com/MarcWeber/vim-addon-signs"; - rev = "17a49f293d18174ff09d1bfff5ba86e8eee8e8ae"; - sha256 = "a9c03a32e758d51106741605188cb7f00db314c73a26cae75c0c9843509a8fb8"; - }; - dependencies = []; - - }; - vim-addon-sql = buildVimPluginFrom2Nix { # created by nix#NixDerivation name = "vim-addon-sql-2014-01-18"; src = fetchgit { @@ -1322,11 +1357,11 @@ rec { }; vim-airline = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-airline-2015-07-08"; + name = "vim-airline-2015-10-05"; src = fetchgit { url = "git://github.com/bling/vim-airline"; - rev = "cdc6d98a09db60d3dda58815616f78338cbdaa9d"; - sha256 = "bbbe04c92842d4110971396011f41ad1175b6c3b0f1d516c286cc7aca4c7052a"; + rev = "543438e482763f64985a3fcab38a1936242a8087"; + sha256 = "2e21b2658a941fd15b8db59220b50b3090a44e8852b42d0538d7217f12cbc77c"; }; dependencies = []; @@ -1344,22 +1379,22 @@ rec { }; vim-easy-align = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-easy-align-2015-09-16"; + name = "vim-easy-align-2015-10-01"; src = fetchgit { url = "git://github.com/junegunn/vim-easy-align"; - rev = "98e0b493acae87202fba2294550957c9b5902b97"; - sha256 = "23273a8928d23336982e194ba13e9501e3ccf684dff9ed17988e3e1f16117cf5"; + rev = "0db4ea6132110631ec678a99a82aa49a0686ae65"; + sha256 = "c70440c3d0afdda630422819ca66ccf483035af86903d8725be5ca43a0940937"; }; dependencies = []; }; vim-gista = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-gista-2015-06-04"; + name = "vim-gista-2015-09-30"; src = fetchgit { url = "git://github.com/lambdalisue/vim-gista"; - rev = "ffe85c0438cf5ad76b07ddb6524de3803c2bfdba"; - sha256 = "9f44d07a4f36fb4559c99a655501b3752e180458de9d76d1cb293abd0f990fb4"; + rev = "a6cc5edc4e6dfcf7f6d7cf4dbcfbca6082f78957"; + sha256 = "68ecb6e1700e4e8f16c4096a8a554e3517e15d84bd1c07dbec4680c3947d1970"; }; dependencies = []; @@ -1432,11 +1467,11 @@ rec { }; vim-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-snippets-2015-09-14"; + name = "vim-snippets-2015-10-05"; src = fetchgit { url = "git://github.com/honza/vim-snippets"; - rev = "93c4b32b4d7c7abd742518bcf92ab93ae4b43d54"; - sha256 = "8ca82f43c4235838fcadc7c36e8b4feb65507311f0168081990d87432f0de14c"; + rev = "eb17eb104bf39812658db504cb9bd13106a17dee"; + sha256 = "8000dde268d95ddf504bbd54f4e03ec72cf8547b03966f0bdf46ca0becf1a684"; }; dependencies = []; diff --git a/pkgs/misc/vim-plugins/vim-plugin-names b/pkgs/misc/vim-plugins/vim-plugin-names index 092c11b405c..47b02aab527 100644 --- a/pkgs/misc/vim-plugins/vim-plugin-names +++ b/pkgs/misc/vim-plugins/vim-plugin-names @@ -1,8 +1,7 @@ -"vim-webdevicons" "CSApprox" "CheckAttach" "Gist" -"Gundo" +"github:sjl/gundo.vim" "Hoogle" "Solarized" "Supertab" @@ -16,7 +15,6 @@ "WebAPI" "YankRing" "commentary" -"ctrlp" "ctrlp-py-matcher" "ctrlp-z" "extradite" @@ -24,9 +22,11 @@ "ghcmod" "github:JagaJaga/vim-addon-vim2nix" "github:ap/vim-css-color" -"github:mkasa/lushtags" +"github:benekastah/neomake" "github:bitc/vim-hdevtools" "github:christoomey/vim-tmux-navigator" +"github:ctrlpvim/ctrlp.vim" +"github:digitaltoad/vim-jade" "github:eagletmt/neco-ghc" "github:esneider/YUNOcommit.vim" "github:fatih/vim-go" @@ -39,11 +39,17 @@ "github:jgdavey/tslime.vim" "github:jistr/vim-nerdtree-tabs" "github:joonty/vim-xdebug" +"github:junegunn/limelight.vim" +"github:junegunn/vim-peekaboo" "github:justincampbell/vim-eighties" "github:latex-box-team/latex-box" "github:lepture/vim-jinja" +"github:lervag/vimtex" +"github:LnL7/vim-nix" "github:lokaltog/vim-easymotion" "github:lyokha/vim-xkbswitch" +"github:mhinz/vim-startify" +"github:mkasa/lushtags" "github:nbouscal/vim-stylish-haskell" "github:osyo-manga/shabadou.vim" "github:osyo-manga/vim-watchdogs" @@ -56,10 +62,13 @@ "github:shougo/vimshell.vim" "github:takac/vim-hardtime" "github:thinca/vim-quickrun" +"github:tpope/vim-eunuch" "github:tomasr/molokai" "github:travitch/hasksyn" "github:twinside/vim-haskellconceal" "github:valloric/youcompleteme" +"github:vim-pandoc/vim-pandoc" +"github:vim-pandoc/vim-pandoc-syntax" "github:vim-scripts/Colour-Sampler-Pack" "github:vim-scripts/a.vim" "github:vim-scripts/align" @@ -69,7 +78,6 @@ "github:vim-scripts/wombat256.vim" "github:wakatime/vim-wakatime" "github:wincent/command-t" -"github:digitaltoad/vim-jade" "goyo" "matchit.zip" "pathogen" @@ -110,6 +118,7 @@ "vim-signature" "vim-signify" "vim-snippets" +"vim-webdevicons" "vim2hs" "vimwiki" "vundle" diff --git a/pkgs/os-specific/darwin/apple-sdk/default.nix b/pkgs/os-specific/darwin/apple-sdk/default.nix index 7bdff59c5ae..59a816e9b94 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 }: +{ stdenv, fetchurl, xar, gzip, cpio, CF, pkgs }: let # sadly needs to be exported because security_tool needs it @@ -50,6 +50,9 @@ let phases = [ "installPhase" "fixupPhase" ]; + # because we copy files from the system + preferLocalBuild = true; + installPhase = '' linkFramework() { local path="$1" @@ -145,6 +148,10 @@ in rec { }; overrides = super: { + AppKit = stdenv.lib.overrideDerivation super.AppKit (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" diff --git a/pkgs/os-specific/darwin/apple-source-releases/CF/default.nix b/pkgs/os-specific/darwin/apple-source-releases/CF/default.nix index ba97aa4a1fc..ed35f8590bf 100644 --- a/pkgs/os-specific/darwin/apple-source-releases/CF/default.nix +++ b/pkgs/os-specific/darwin/apple-source-releases/CF/default.nix @@ -47,16 +47,6 @@ appleDerivation { ''; postInstall = '' - # gross! convince apple to release these as part of CF - cp /System/Library/Frameworks/CoreFoundation.framework/Headers/{CFAttributedString,CFNotificationCenter}.h \ - "$out/System/Library/Frameworks/CoreFoundation.framework/Headers" - - cat >> $out/System/Library/Frameworks/CoreFoundation.framework/Headers/CoreFoundation.h < - #include - EOF - mv $out/System/* $out rmdir $out/System ''; diff --git a/pkgs/os-specific/darwin/cf-private/default.nix b/pkgs/os-specific/darwin/cf-private/default.nix new file mode 100644 index 00000000000..8c91e7fb297 --- /dev/null +++ b/pkgs/os-specific/darwin/cf-private/default.nix @@ -0,0 +1,18 @@ +{ stdenv, osx_private_sdk, CF }: + +let + headers = [ + "CFAttributedString.h" + "CFNotificationCenter.h" + "CoreFoundation.h" + ]; + +in stdenv.mkDerivation { + name = "${CF.name}-private"; + unpackPhase = ":"; + buildPhase = ":"; + 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 + ''; +} diff --git a/pkgs/os-specific/darwin/osx-private-sdk/default.nix b/pkgs/os-specific/darwin/osx-private-sdk/default.nix index febcb6b5d0c..1b8f37fdb8d 100644 --- a/pkgs/os-specific/darwin/osx-private-sdk/default.nix +++ b/pkgs/os-specific/darwin/osx-private-sdk/default.nix @@ -1,16 +1,7 @@ -{ stdenv, fetchzip }: +{ stdenv, fetchgit }: -let full = stdenv.lib.overrideDerivation (fetchzip { - url = "https://github.com/samdmarshall/OSXPrivateSDK/tarball/69bf3c7f7140ed6ab2b6684b427bd457209858fe"; - name = "osx-private-sdk-10.9"; - sha256 = "1agl4kyry6m7yz3sql5mrbvmd1xkmb4nbq976phcpk19inans1zm"; -}) (drv: { - postFetch = '' - unpackFile() { - tar xzf "$1" - } - '' + drv.postFetch; -}); in { - outPath = "${full}/PrivateSDK10.9"; - passthru.sdk10 = "${full}/PrivateSDK10.10"; +fetchgit { + url = "https://github.com/samdmarshall/OSXPrivateSDK.git"; + rev = "f4d52b60e86b496abfaffa119a7d299562d99783"; + sha256 = "0v1l11fqpqnzd5l2vq5c63jm1vrba56r06zpqnag87j5p1gic8lp"; } diff --git a/pkgs/os-specific/linux/alsa-tools/default.nix b/pkgs/os-specific/linux/alsa-tools/default.nix new file mode 100644 index 00000000000..a2e49f465e4 --- /dev/null +++ b/pkgs/os-specific/linux/alsa-tools/default.nix @@ -0,0 +1,53 @@ +{ stdenv, fetchurl, alsaLib, pkgconfig, gtk, gtk3, fltk13 }: + +stdenv.mkDerivation rec { + name = "alsa-tools-${version}"; + version = "1.0.29"; + + src = fetchurl { + urls = [ + "ftp://ftp.alsa-project.org/pub/tools/${name}.tar.bz2" + "http://alsa.cybermirror.org/tools/${name}.tar.bz2" + ]; + sha256 = "1lgvyb81md25s9ciswpdsbibmx9s030kvyylf0673w3kbamz1awl"; + }; + + buildInputs = [ alsaLib pkgconfig gtk gtk3 fltk13 ]; + + patchPhase = '' + export tools="as10k1 hda-verb hdspmixer echomixer hdajackretask hdspconf hwmixvolume mixartloader rmedigicontrol sscape_ctl vxloader envy24control hdajacksensetest hdsploader ld10k1 pcxhrloader sb16_csp us428control" + # export tools="as10k1 hda-verb hdspmixer qlo10k1 seq usx2yloader echomixer hdajackretask hdspconf hwmixvolume mixartloader rmedigicontrol sscape_ctl vxloader envy24control hdajacksensetest hdsploader ld10k1 pcxhrloader sb16_csp us428control" + ''; + + configurePhase = '' + for tool in $tools; do + echo "Tool: $tool:" + cd "$tool"; ./configure --prefix="$out"; cd - + done + ''; + + buildPhase = '' + for tool in $tools; do + cd "$tool"; make; cd - + done + ''; + + installPhase = '' + for tool in $tools; do + cd "$tool"; make install; cd - + done + ''; + + meta = { + homepage = http://www.alsa-project.org/; + description = "ALSA, the Advanced Linux Sound Architecture tools"; + + longDescription = '' + The Advanced Linux Sound Architecture (ALSA) provides audio and + MIDI functionality to the Linux-based operating system. + ''; + + platforms = stdenv.lib.platforms.linux; + maintainers = [ stdenv.lib.maintainers.fps ]; + }; +} diff --git a/pkgs/os-specific/linux/android-udev-rules/default.nix b/pkgs/os-specific/linux/android-udev-rules/default.nix index 3f763e917e3..137a362bcd8 100644 --- a/pkgs/os-specific/linux/android-udev-rules/default.nix +++ b/pkgs/os-specific/linux/android-udev-rules/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchgit }: stdenv.mkDerivation { - name = "android-udev-rules-20150821"; + name = "android-udev-rules-20150920"; src = fetchgit { url = "https://github.com/M0Rf30/android-udev-rules"; - rev = "07ccded2a89c2bb6da984e596c015c5e9546e497"; - sha256 = "953fc10bd0de46afef999dc1c1b20801b3d6e289af48d18fa96b1cac3ac54518"; + rev = "d2e89a3f6deb096071b15e18b9e3608a02d62437"; + sha256 = "bdc553a1eb4efc4e85866f61f50f2c2f7b8d09d2eb5122afad7c9b38e0fdc4fb"; }; installPhase = '' diff --git a/pkgs/os-specific/linux/eudev/default.nix b/pkgs/os-specific/linux/eudev/default.nix index 1db5967aab5..e9fcf5d8c4d 100644 --- a/pkgs/os-specific/linux/eudev/default.nix +++ b/pkgs/os-specific/linux/eudev/default.nix @@ -3,10 +3,10 @@ let s = # Generated upstream information rec { baseName="eudev"; - version = "3.1.2"; + version = "3.1.5"; name="${baseName}-${version}"; url="http://dev.gentoo.org/~blueness/eudev/eudev-${version}.tar.gz"; - sha256 = "0wq2w67ip957l5bi21jj3w2rv7s7klcrnlg6zpg1g0fxjfgbd4s3"; + sha256 = "0akg9gcc3c2p56xbhlvbybqavcprly5q0bvk655zwl6d62j8an7p"; }; buildInputs = [ glib pkgconfig gperf utillinux diff --git a/pkgs/os-specific/linux/gradm/default.nix b/pkgs/os-specific/linux/gradm/default.nix index 97f4c1e93fa..1500cf2f394 100644 --- a/pkgs/os-specific/linux/gradm/default.nix +++ b/pkgs/os-specific/linux/gradm/default.nix @@ -47,6 +47,6 @@ stdenv.mkDerivation rec { homepage = "https://grsecurity.net"; license = licenses.gpl2; platforms = platforms.linux; - maintainers = with maintainers; [ thoughtpolice wizeman ]; + maintainers = with maintainers; [ thoughtpolice ]; }; } diff --git a/pkgs/os-specific/linux/kernel/common-config.nix b/pkgs/os-specific/linux/kernel/common-config.nix index 218532a695e..df5fe2f6763 100644 --- a/pkgs/os-specific/linux/kernel/common-config.nix +++ b/pkgs/os-specific/linux/kernel/common-config.nix @@ -483,6 +483,10 @@ with stdenv.lib; FW_LOADER_USER_HELPER_FALLBACK y ''} + # Enable PCIe and USB for the brcmfmac driver + BRCMFMAC_USB? y + BRCMFMAC_PCIE? y + ${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 a66397f689b..2b7a38edaba 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.89"; + version = "3.10.90"; extraMeta.branch = "3.10"; src = fetchurl { url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz"; - sha256 = "13697akpdkv7xyyprysb4017q7j1ccynppb6wwllmhz1g2ichpii"; + sha256 = "1qsyn3vsha8wsspc69y5w212qh77pam9mliv0f5xrw95yka2arss"; }; 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 c1171cecab5..6ae9814c55d 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.21"; + version = "3.18.22"; extraMeta.branch = "3.18"; src = fetchurl { url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz"; - sha256 = "0y54kh55grgbyw4k8fa9vx8b426bq9lz12bpvwvzfjs7vimachyw"; + sha256 = "0b6f0akcsjbybwf3r1b414k539cwnf5phz3hb2zkda9ds13bpp0w"; }; 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 51844f1e068..ba0ff2a5ede 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.1.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.1.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.1.9"; + version = "4.1.10"; # Remember to update grsecurity! extraMeta.branch = "4.1"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "141s028bpci5fwn190rgcivhk0066nkc2h6y49yqdjdanx47i1sr"; + sha256 = "1gmsrz2ldpyn46fbfagnbs8ncsx6mq9wwr7avi1c995gk70ff92p"; }; 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 56914ae9cde..a2d9b5076dd 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.2.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.2.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.2.2"; + version = "4.2.3"; extraMeta.branch = "4.2"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "0k5nda60jla02n7ghhma7klkfklh008d1cpf684fp82cywbp5g1f"; + sha256 = "4ca6c783a0bc87573f5c95e49306cbe5f83dc1cd5afb44ecc9a1917f39e5ad66"; }; features.iwlwifi = true; diff --git a/pkgs/os-specific/linux/kernel/linux-testing.nix b/pkgs/os-specific/linux/kernel/linux-testing.nix index d13357825a5..4cc19cd411b 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-rc2"; - modDirVersion = "4.3.0-rc2"; + version = "4.3-rc5"; + modDirVersion = "4.3.0-rc5"; extraMeta.branch = "4.3"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/testing/linux-${version}.tar.xz"; - sha256 = "1mgm3r0vz0jbfbqxcjfw0wv5ix6qhwymjz1chh543lvb0729ayb4"; + sha256 = "1v4spcg3x2953mc5kw3a0l3ym0783s2px98vhpmy2sfc07hdwlbr"; }; features.iwlwifi = true; diff --git a/pkgs/os-specific/linux/pax-utils/default.nix b/pkgs/os-specific/linux/pax-utils/default.nix index fe517a71021..a35b8181544 100644 --- a/pkgs/os-specific/linux/pax-utils/default.nix +++ b/pkgs/os-specific/linux/pax-utils/default.nix @@ -19,6 +19,6 @@ stdenv.mkDerivation rec { homepage = "http://dev.gentoo.org/~vapier/dist/"; license = licenses.gpl2; platforms = platforms.linux; - maintainers = with maintainers; [ thoughtpolice wizeman ]; + maintainers = with maintainers; [ thoughtpolice ]; }; } diff --git a/pkgs/os-specific/linux/paxctl/default.nix b/pkgs/os-specific/linux/paxctl/default.nix index 8402b952ff7..afb342768c3 100644 --- a/pkgs/os-specific/linux/paxctl/default.nix +++ b/pkgs/os-specific/linux/paxctl/default.nix @@ -25,6 +25,6 @@ stdenv.mkDerivation rec { homepage = "https://pax.grsecurity.net"; license = licenses.gpl2; platforms = platforms.linux; - maintainers = with maintainers; [ thoughtpolice wizeman ]; + maintainers = with maintainers; [ thoughtpolice ]; }; } diff --git a/pkgs/os-specific/linux/spl/default.nix b/pkgs/os-specific/linux/spl/default.nix index 57eaa55b235..1089c0e2a09 100644 --- a/pkgs/os-specific/linux/spl/default.nix +++ b/pkgs/os-specific/linux/spl/default.nix @@ -17,13 +17,13 @@ assert buildKernel -> kernel != null; stdenv.mkDerivation rec { name = "spl-${configFile}-${version}${optionalString buildKernel "-${kernel.version}"}"; - version = "0.6.5"; + version = "0.6.5.2"; src = fetchFromGitHub { owner = "zfsonlinux"; repo = "spl"; rev = "spl-${version}"; - sha256 = "0ryw2vh3px0q38skm53g83p46011ndrdxi3y2kqvd1pjqgfbjdmj"; + sha256 = "09babp00h44iyvmr48w3n20lqjlapw5g6ciw2hhxrpg9nbgcsid7"; }; patches = [ ./const.patch ./install_prefix.patch ]; diff --git a/pkgs/os-specific/linux/syslinux/default.nix b/pkgs/os-specific/linux/syslinux/default.nix index 3c01516b081..150b2b44729 100644 --- a/pkgs/os-specific/linux/syslinux/default.nix +++ b/pkgs/os-specific/linux/syslinux/default.nix @@ -21,6 +21,8 @@ stdenv.mkDerivation rec { substituteInPlace gpxe/src/Makefile --replace /usr/bin/perl $(type -P perl) ''; + stripDebugList = "bin sbin share/syslinux/com32"; + makeFlags = [ "BINDIR=$(out)/bin" "SBINDIR=$(out)/sbin" diff --git a/pkgs/os-specific/linux/zfs/default.nix b/pkgs/os-specific/linux/zfs/default.nix index d068a4e910d..4a1268cc6b1 100644 --- a/pkgs/os-specific/linux/zfs/default.nix +++ b/pkgs/os-specific/linux/zfs/default.nix @@ -20,13 +20,13 @@ assert buildKernel -> kernel != null && spl != null; stdenv.mkDerivation rec { name = "zfs-${configFile}-${version}${optionalString buildKernel "-${kernel.version}"}"; - version = "0.6.5.1"; + version = "0.6.5.2"; src = fetchFromGitHub { owner = "zfsonlinux"; repo = "zfs"; rev = "zfs-${version}"; - sha256 = "0lbii5kc3b68zj8mvvznl05czwdkr0ld3a2javbkngfvrcn09rz2"; + sha256 = "0246cypa65rjm8j2123al4x4cwpydqwqrg828pxcpk08v1djy3v1"; }; patches = [ ./nix-build.patch ]; diff --git a/pkgs/servers/amqp/rabbitmq-server/default.nix b/pkgs/servers/amqp/rabbitmq-server/default.nix index 31eae0c2b6a..3e8ec09a0b0 100644 --- a/pkgs/servers/amqp/rabbitmq-server/default.nix +++ b/pkgs/servers/amqp/rabbitmq-server/default.nix @@ -4,11 +4,11 @@ stdenv.mkDerivation rec { name = "rabbitmq-server-${version}"; - version = "3.4.3"; + version = "3.5.6"; src = fetchurl { url = "http://www.rabbitmq.com/releases/rabbitmq-server/v${version}/${name}.tar.gz"; - sha256 = "1mdma4bh6196ix9vhsigb3yav8l5gy2x78nsqxychm4hz5l2vjx6"; + sha256 = "07v7c6ippngkq269jmrf3gji389czcmz6phc3qwxn4j14cri9gi4"; }; buildInputs = diff --git a/pkgs/servers/fleet/default.nix b/pkgs/servers/fleet/default.nix index 9a122ae90a6..5d8620ed775 100644 --- a/pkgs/servers/fleet/default.nix +++ b/pkgs/servers/fleet/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "fleet-${version}"; - version = "0.9.0"; + version = "0.11.5"; src = fetchFromGitHub { owner = "coreos"; repo = "fleet"; rev = "v${version}"; - sha256 = "0gjminfprprs1nmg9y9a0qkyl9spixrk4pc2b7bl0lxdgpq2yiid"; + sha256 = "0dc95dpqqc2rclbvgdqjcilrkji7lrpigdrzpwm3nbgz58vkfnz3"; }; buildInputs = [ go ]; diff --git a/pkgs/servers/http/mini-httpd/default.nix b/pkgs/servers/http/mini-httpd/default.nix index a03ac828752..4cba9bc0668 100644 --- a/pkgs/servers/http/mini-httpd/default.nix +++ b/pkgs/servers/http/mini-httpd/default.nix @@ -1,21 +1,17 @@ { stdenv, fetchurl, boost }: stdenv.mkDerivation rec { - name = "mini-httpd-1.4"; + name = "mini-httpd-1.5"; src = fetchurl { url = "mirror://savannah/mini-httpd/${name}.tar.gz"; - sha256 = "1i46klkx2ca1cgmlilajkx8gf7b7d7c2sj58llxfllh184pb6cpd"; + sha256 = "1x4b6x40ymbaamqqq9p97lc0mnah4q7bza04fjs35c8agpm19zir"; }; buildInputs = [ boost ]; enableParallelBuilding = true; - # Fixes compat with boost 1.59 - # Please attempt removing when updating - CPPFLAGS = "-DBOOST_ERROR_CODE_HEADER_ONLY -DBOOST_SYSTEM_NO_DEPRECATED"; - meta = { homepage = "http://mini-httpd.nongnu.org/"; description = "a minimalistic high-performance web server"; diff --git a/pkgs/servers/mail/spamassassin/default.nix b/pkgs/servers/mail/spamassassin/default.nix index e46a76a9b0c..8590f80c8ae 100644 --- a/pkgs/servers/mail/spamassassin/default.nix +++ b/pkgs/servers/mail/spamassassin/default.nix @@ -13,11 +13,11 @@ # buildPerlPackage rec { - name = "SpamAssassin-3.4.0"; + name = "SpamAssassin-3.4.1"; src = fetchurl { url = "mirror://apache/spamassassin/source/Mail-${name}.tar.bz2"; - sha256 = "0527rv6m5qd41l756fqh9q7sm9m2xfhhy2jchlhbmd39x6x3jfsm"; + sha256 = "0la6s5ilamf9129kyjckcma8cr6fpb6b5f2fb64v7106iy0ckhd0"; }; buildInputs = [ makeWrapper HTMLParser NetDNS NetAddrIP DBFile HTTPDate MailDKIM diff --git a/pkgs/servers/nosql/cassandra/2.1.nix b/pkgs/servers/nosql/cassandra/2.1.nix index 36905b5675a..fe580189583 100644 --- a/pkgs/servers/nosql/cassandra/2.1.nix +++ b/pkgs/servers/nosql/cassandra/2.1.nix @@ -11,8 +11,8 @@ let - version = "2.1.9"; - sha256 = "10nwh7kx4k0kkfvl3sf22v3x58q37b81lkr6s6gvzkq67f6mjcvs"; + version = "2.1.10"; + sha256 = "0cpb16206dkpiza8cp0adsv87sw0crglm9b4dbz2cka1mmqvs28h"; in diff --git a/pkgs/servers/plex/default.nix b/pkgs/servers/plex/default.nix index c0bfd42ce68..7194e0994aa 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.11.16.958"; - vsnHash = "80f1748"; + version = "0.9.12.11.1406"; + vsnHash = "8403350"; src = fetchurl { url = "https://downloads.plex.tv/plex-media-server/${version}-${vsnHash}/plexmediaserver-${version}-${vsnHash}.x86_64.rpm"; - sha256 = "1wrl654nk10i9p01cgy9fqiqalxyl718qhp4kjnxvcwafayxkp26"; + sha256 = "295174b3617d699f11ecc22bc603a579e2291fe6ba55a536711acafd64455390"; }; buildInputs = [ rpmextract glibc ]; @@ -34,6 +34,8 @@ stdenv.mkDerivation rec { find $out/usr/lib/plexmediaserver/Resources -type f -a -perm -0100 \ -print -exec patchelf --set-interpreter "${glibc}/lib/ld-linux-x86-64.so.2" '{}' \; + # executables need libstdc++.so.6 + ln -s "${stdenv.lib.makeLibraryPath [ stdenv.cc.cc ]}/libstdc++.so.6" "$out/usr/lib/plexmediaserver/libstdc++.so.6" # Our next problem is the "Resources" directory in /usr/lib/plexmediaserver. # This is ostensibly a skeleton directory, which contains files that Plex diff --git a/pkgs/servers/rippled/default.nix b/pkgs/servers/rippled/default.nix index 99a6879ab92..808f181442a 100644 --- a/pkgs/servers/rippled/default.nix +++ b/pkgs/servers/rippled/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "rippled-${version}"; - version = "0.28.1"; + version = "0.30.0-rc1"; src = fetchFromGitHub { owner = "ripple"; repo = "rippled"; rev = version; - sha256 = "0wh8dwdg0gp7smcx40cpqanl2m2hihmx3irqh692svakbl3df3vz"; + sha256 = "0l1dg29mg6wsdkh0lwi2znpl2wcm6bs6d3lswk5g1m1nk2mk7lr7"; }; postPatch = '' @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "Ripple P2P payment network reference server"; homepage = https://ripple.com; - maintainers = [ maintainers.emery maintainers.offline ]; + maintainers = with maintainers; [ emery offline ]; license = licenses.isc; platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/servers/sql/mysql/5.5.x.nix b/pkgs/servers/sql/mysql/5.5.x.nix index 03a7840677b..dbbb9223ee4 100644 --- a/pkgs/servers/sql/mysql/5.5.x.nix +++ b/pkgs/servers/sql/mysql/5.5.x.nix @@ -54,7 +54,7 @@ stdenv.mkDerivation rec { ''; postInstall = '' sed -i -e "s|basedir=\"\"|basedir=\"$out\"|" $out/bin/mysql_install_db - rm -r $out/mysql-test $out/sql-bench $out/data + rm -r $out/mysql-test $out/sql-bench $out/data "$out"/lib/*.a rm $out/share/man/man1/mysql-test-run.pl.1 ''; diff --git a/pkgs/servers/uwsgi/default.nix b/pkgs/servers/uwsgi/default.nix index e7e7502665f..89260109e26 100644 --- a/pkgs/servers/uwsgi/default.nix +++ b/pkgs/servers/uwsgi/default.nix @@ -24,11 +24,11 @@ in assert builtins.filter (x: lib.all (y: y.name != x) available) plugins == []; stdenv.mkDerivation rec { - name = "uwsgi-2.0.11.1"; + name = "uwsgi-2.0.11.2"; src = fetchurl { url = "http://projects.unbit.it/downloads/${name}.tar.gz"; - sha256 = "11v2j9n204hlvi1p1wp4r3nn22fqyd1qlbqcfqddi77sih9x79vm"; + sha256 = "0p482j4yi48bmpgx1qpdfk86hjn4dswb137jbmigdlrd9l5rp20b"; }; nativeBuildInputs = [ python3 pkgconfig ]; diff --git a/pkgs/stdenv/default.nix b/pkgs/stdenv/default.nix index 71bdc3e8f82..da93229ce94 100644 --- a/pkgs/stdenv/default.nix +++ b/pkgs/stdenv/default.nix @@ -54,7 +54,7 @@ rec { if system == "armv7l-linux" then stdenvLinux else if system == "mips64el-linux" then stdenvLinux else if system == "powerpc-linux" then /* stdenvLinux */ stdenvNative else - if system == "x86_64-darwin" then stdenvDarwin else + if system == "x86_64-darwin" then stdenvDarwinPure else if system == "x86_64-solaris" then stdenvNix else if system == "i686-cygwin" then stdenvNative else if system == "x86_64-cygwin" then stdenvNative else diff --git a/pkgs/stdenv/pure-darwin/default.nix b/pkgs/stdenv/pure-darwin/default.nix index a50a63fbda6..cbf55d67ec2 100644 --- a/pkgs/stdenv/pure-darwin/default.nix +++ b/pkgs/stdenv/pure-darwin/default.nix @@ -43,6 +43,8 @@ in rec { export MACOSX_DEPLOYMENT_TARGET=10.7 export SDKROOT= export CMAKE_OSX_ARCHITECTURES=x86_64 + # Workaround for https://openradar.appspot.com/22671534 on 10.11. + export gl_cv_func_getcwd_abort_bug=no ''; # The one dependency of /bin/sh :( diff --git a/pkgs/tools/X11/dex/default.nix b/pkgs/tools/X11/dex/default.nix new file mode 100644 index 00000000000..d147ef4a70c --- /dev/null +++ b/pkgs/tools/X11/dex/default.nix @@ -0,0 +1,23 @@ +{ stdenv, fetchFromGitHub, python3 }: + +stdenv.mkDerivation rec { + program = "dex"; + name = "${program}-${version}"; + version = "0.7"; + + src = fetchFromGitHub { + owner = "jceb"; + repo = program; + rev = "v${version}"; + sha256 = "041ms01snalapapaniabr92d8iim1qrxian626nharjmp2rd69v5"; + }; + + propagatedBuildInputs = [ python3 ]; + makeFlags = [ "PREFIX=$(out)" "VERSION=$(version)" ]; + + meta = { + description = "A program to generate and execute DesktopEntry files of the Application type"; + homepage = https://github.com/jceb/dex; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/tools/backup/borg/default.nix b/pkgs/tools/backup/borg/default.nix index f9a949f4d3f..df3523322e8 100644 --- a/pkgs/tools/backup/borg/default.nix +++ b/pkgs/tools/backup/borg/default.nix @@ -1,21 +1,23 @@ -{ stdenv, fetchzip, python3Packages, openssl, acl }: +{ stdenv, fetchurl, python3Packages, openssl, acl, lz4 }: python3Packages.buildPythonPackage rec { - name = "borg-${version}"; - version = "0.23.0"; + name = "borgbackup-${version}"; + version = "0.27.0"; namePrefix = ""; - src = fetchzip { - name = "${name}-src"; - url = "https://github.com/borgbackup/borg/archive/${version}.tar.gz"; - sha256 = "1ns00bhrh4zm1s70mm32gnahj7yh4jdpkb8ziarhvcnknz7aga67"; + src = fetchurl { + url = "https://pypi.python.org/packages/source/b/borgbackup/borgbackup-${version}.tar.gz"; + sha256 = "04iizidag4fwy6kx1747d633s1amr81slgk743qsfbwixaxfjq9b"; }; propagatedBuildInputs = with python3Packages; - [ cython msgpack openssl acl llfuse tox detox ]; + [ cython msgpack openssl acl llfuse tox detox lz4 setuptools_scm ]; preConfigure = '' export BORG_OPENSSL_PREFIX="${openssl}" + export BORG_LZ4_PREFIX="${lz4}" + # note: fix for this issue already upstream and probably in 0.27.1 (or whatever the next release is called) + substituteInPlace setup.py --replace "possible_openssl_prefixes.insert(0, os.environ.get('BORG_LZ4_PREFIX'))" "possible_lz4_prefixes.insert(0, os.environ.get('BORG_LZ4_PREFIX'))" ''; meta = with stdenv.lib; { diff --git a/pkgs/tools/backup/duplicity/default.nix b/pkgs/tools/backup/duplicity/default.nix index 79f394c2aac..556b9651200 100644 --- a/pkgs/tools/backup/duplicity/default.nix +++ b/pkgs/tools/backup/duplicity/default.nix @@ -1,5 +1,6 @@ { stdenv, fetchurl, python, librsync, ncftp, gnupg, boto, makeWrapper -, lockfile, setuptools }: +, lockfile, setuptools, paramiko, pycrypto, ecdsa +}: let version = "0.7.02"; @@ -15,10 +16,10 @@ stdenv.mkDerivation { installPhase = '' python setup.py install --prefix=$out wrapProgram $out/bin/duplicity \ - --prefix PYTHONPATH : "$(toPythonPath $out):$(toPythonPath ${boto}):$(toPythonPath ${lockfile})" \ + --prefix PYTHONPATH : "$(toPythonPath $out):$(toPythonPath ${pycrypto}):$(toPythonPath ${ecdsa}):$(toPythonPath ${paramiko}):$(toPythonPath ${boto}):$(toPythonPath ${lockfile})" \ --prefix PATH : "${gnupg}/bin:${ncftp}/bin" wrapProgram $out/bin/rdiffdir \ - --prefix PYTHONPATH : "$(toPythonPath $out):$(toPythonPath ${boto}):$(toPythonPath ${lockfile})" \ + --prefix PYTHONPATH : "$(toPythonPath $out):$(toPythonPath ${pycrypto}):$(toPythonPath ${ecdsa}):$(toPythonPath ${paramiko}):$(toPythonPath ${boto}):$(toPythonPath ${lockfile})" ''; buildInputs = [ python librsync makeWrapper setuptools ]; diff --git a/pkgs/tools/backup/zbackup/default.nix b/pkgs/tools/backup/zbackup/default.nix new file mode 100644 index 00000000000..25bd7236e68 --- /dev/null +++ b/pkgs/tools/backup/zbackup/default.nix @@ -0,0 +1,17 @@ +{ stdenv, fetchurl, cmake, zlib, openssl, protobuf, protobufc, lzo, libunwind } : +stdenv.mkDerivation rec { + name = "zbackup-${version}"; + version = "1.4.4"; + src = fetchurl { + url = "https://github.com/zbackup/zbackup/archive/1.4.4.tar.gz"; + sha256 = "11csla7n44lg7x6yqg9frb21vnkr8cvnh6ardibr3nj5l39crk7g"; + }; + buildInputs = [ zlib openssl protobuf lzo libunwind ]; + nativeBuildInputs = [ cmake protobufc ]; + meta = { + description = "A versatile deduplicating backup tool"; + homepage = "http://zbackup.org/"; + platforms = stdenv.lib.platforms.linux; + license = stdenv.lib.licenses.gpl2Plus; + }; +} diff --git a/pkgs/tools/filesystems/djmount/default.nix b/pkgs/tools/filesystems/djmount/default.nix new file mode 100644 index 00000000000..7010a60bcbc --- /dev/null +++ b/pkgs/tools/filesystems/djmount/default.nix @@ -0,0 +1,20 @@ +{ stdenv, fetchurl, pkgconfig, fuse }: + +stdenv.mkDerivation rec { + name = "djmount-${version}"; + version = "0.71"; + src = fetchurl { + url = "mirror://sourceforge/djmount/${version}/${name}.tar.gz"; + sha256 = "0kqf0cy3h4cfiy5a2sigmisx0lvvsi1n0fbyb9ll5gacmy1b8nxa"; + }; + + buildInputs = [ pkgconfig fuse]; + + meta = { + homepage = http://djmount.sourceforge.net/; + description = "UPnP AV client, mounts as a Linux filesystem the media content of compatible UPnP AV devices"; + platforms = stdenv.lib.platforms.linux; + maintainers = [ stdenv.lib.maintainers.jagajaga ]; + license = stdenv.lib.licenses.gpl2; + }; +} diff --git a/pkgs/tools/filesystems/yandex-disk/default.nix b/pkgs/tools/filesystems/yandex-disk/default.nix index 97d70d1a45b..42308947c07 100644 --- a/pkgs/tools/filesystems/yandex-disk/default.nix +++ b/pkgs/tools/filesystems/yandex-disk/default.nix @@ -6,18 +6,18 @@ let p = if stdenv.is64bit then { arch = "x86_64"; gcclib = "${stdenv.cc.cc}/lib64"; - sha256 = "08mmjz061b0hrqp8zg31w089n5bk3sq4r3w84zr33d8pnvkgq2wk"; + sha256 = "1dr976z0zgg5jk477hrnfmpcx4llh5xi1493k0pkp28m6ypbxy2q"; } else { arch = "i386"; gcclib = "${stdenv.cc.cc}/lib"; - sha256 = "1zb6cnldd43nr4k2qg9hnrkgj0iik2gpxqrjypbhwv75hnvjma93"; + sha256 = "01v0caf194y6yb0zc0d3ywx3y0rwb7sxkav4ickd4l968jpi8p91"; }; in stdenv.mkDerivation rec { name = "yandex-disk-${version}"; - version = "0.1.5.905"; + version = "0.1.5.940"; src = fetchurl { url = "http://repo.yandex.ru/yandex-disk/rpm/stable/${p.arch}/${name}-1.fedora.${p.arch}.rpm"; diff --git a/pkgs/tools/inputmethods/ibus/default.nix b/pkgs/tools/inputmethods/ibus/default.nix index 97a8c3e7d1c..3e17e721f7b 100644 --- a/pkgs/tools/inputmethods/ibus/default.nix +++ b/pkgs/tools/inputmethods/ibus/default.nix @@ -3,11 +3,11 @@ stdenv.mkDerivation rec { name = "ibus-${version}"; - version = "1.5.10"; + version = "1.5.11"; src = fetchurl { url = "https://github.com/ibus/ibus/releases/download/${version}/${name}.tar.gz"; - sha256 = "152mdzi9hr246spnn7bkb4gy16x30082xwq460gmm1q2cs0bf08x"; + sha256 = "1g26llizd26h9sfz4xdq8krhz19hn08pirvfbkk3g89ri8lmm6a9"; }; configureFlags = "--disable-gconf --enable-dconf --disable-memconf --enable-ui --enable-python-library"; diff --git a/pkgs/tools/misc/goaccess/default.nix b/pkgs/tools/misc/goaccess/default.nix index e73bc487f21..8ce93f6bb66 100644 --- a/pkgs/tools/misc/goaccess/default.nix +++ b/pkgs/tools/misc/goaccess/default.nix @@ -1,10 +1,10 @@ { stdenv, fetchurl, pkgconfig, geoip, ncurses, glib }: let - version = "0.9"; + version = "0.9.4"; mainSrc = fetchurl { url = "http://tar.goaccess.io/goaccess-${version}.tar.gz"; - sha256 = "1yi7bxrmhvd11ha405bqpz7q442l9bnnx317iy22xzxjl96frn29"; + sha256 = "1kn5yvgzrzjlxd0zhr2d2gbjdin9j9vmfbk5gkrwqc4kd9zicvla"; }; in diff --git a/pkgs/tools/misc/grub/trusted.nix b/pkgs/tools/misc/grub/trusted.nix index 315c7145cbe..87c551db4e3 100644 --- a/pkgs/tools/misc/grub/trusted.nix +++ b/pkgs/tools/misc/grub/trusted.nix @@ -11,7 +11,7 @@ let inPCSystems = any (system: stdenv.system == system) (mapAttrsToList (name: _: name) pcSystems); - version = "1.2.0"; + version = "1.2.1"; unifont_bdf = fetchurl { url = "http://unifoundry.com/unifont-5.1.20080820.bdf.gz"; @@ -32,8 +32,8 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/Sirrix-AG/TrustedGRUB2"; - rev = "1ff54a5fbe02ea01df5a7de59b1e0201e08d4f76"; - sha256 = "8c17bd7e14dd96ae9c4e98723f4e18ec6b21d45ac486ecf771447649829d0b34"; + rev = "ab483d389bda3115ca0ae4202fd71f2e4a31ad41"; + sha256 = "4b715837f8632278720d8b29aec06332f5302c6ba78183ced5f48d3c376d89c0"; }; nativeBuildInputs = [ autogen flex bison python autoconf automake ]; diff --git a/pkgs/tools/misc/less/default.nix b/pkgs/tools/misc/less/default.nix index 8c0f0e96d21..af8a0dd7d81 100644 --- a/pkgs/tools/misc/less/default.nix +++ b/pkgs/tools/misc/less/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, ncurses }: stdenv.mkDerivation rec { - name = "less-475"; + name = "less-481"; src = fetchurl { url = "http://www.greenwoodsoftware.com/less/${name}.tar.gz"; - sha256 = "16703m6g5l97af3jwpypgac7gpmh3yjkdpqygf5a2scfip0hxm2g"; + sha256 = "19fxj0h10y5bhr3a1xa7kqvnwl44db3sdypz8jxl1q79yln8z8rz"; }; # Look for ‘sysless’ in /etc. diff --git a/pkgs/tools/misc/parallel/default.nix b/pkgs/tools/misc/parallel/default.nix index 1d3d14d7e23..c44aabbb416 100644 --- a/pkgs/tools/misc/parallel/default.nix +++ b/pkgs/tools/misc/parallel/default.nix @@ -1,11 +1,11 @@ { fetchurl, stdenv, perl, makeWrapper, procps }: stdenv.mkDerivation rec { - name = "parallel-20150822"; + name = "parallel-20150922"; src = fetchurl { url = "mirror://gnu/parallel/${name}.tar.bz2"; - sha256 = "1ij7bjxhk2866mzh0v0v2m629b6d39r5ivwdzmh72s471m9hg45d"; + sha256 = "05zf3jhjmswfr63lgxw8q26kysd72b8m0zy5jbc94r6appx8bd7j"; }; nativeBuildInputs = [ makeWrapper ]; diff --git a/pkgs/tools/misc/screen/default.nix b/pkgs/tools/misc/screen/default.nix index 1fe71ae9616..8c132d5ba02 100644 --- a/pkgs/tools/misc/screen/default.nix +++ b/pkgs/tools/misc/screen/default.nix @@ -13,6 +13,12 @@ stdenv.mkDerivation rec { sed -i -e "s|/usr/local|/non-existent|g" -e "s|/usr|/non-existent|g" configure Makefile.in */Makefile.in ''; + # TODO: remove when updating the version of screen. Only a patch for 4.3.1 + patches = stdenv.lib.optional stdenv.isDarwin (fetchurl { + url = "http://savannah.gnu.org/file/screen-utmp.patch\?file_id=34815"; + sha256 = "192dsa8hm1zw8m638avzhwhnrddgizhyrwaxgwa96zr9vwai2nvc"; + }); + buildInputs = [ ncurses ] ++ stdenv.lib.optional stdenv.isLinux pam; doCheck = true; diff --git a/pkgs/tools/misc/sdl-jstest/default.nix b/pkgs/tools/misc/sdl-jstest/default.nix index cf62039fc03..677f52c2c32 100644 --- a/pkgs/tools/misc/sdl-jstest/default.nix +++ b/pkgs/tools/misc/sdl-jstest/default.nix @@ -1,11 +1,11 @@ { fetchgit, stdenv, cmake, pkgconfig, SDL, SDL2, ncurses, docbook_xsl }: stdenv.mkDerivation rec { - name = "sdl-jstest-20150625"; + name = "sdl-jstest-20150806"; src = fetchgit { url = "https://github.com/Grumbel/sdl-jstest"; - rev = "3f54b86ebe0d2f95e9c1d034bc4ed02d6d2b6409"; - sha256 = "d33e0a2c66b551ecf333590f1a6e1730093af31cee1be8757748624d42e14df1"; + rev = "7b792376178c9656c851ddf106c7d57b2495e8b9"; + sha256 = "3aa9a002de9c9999bd7c6248b94148f15dba6106489e418b2a1a410324f75eb8"; }; buildInputs = [ SDL SDL2 ncurses ]; diff --git a/pkgs/tools/misc/tlp/default.nix b/pkgs/tools/misc/tlp/default.nix index 1e90ecfee32..4f90b432d04 100644 --- a/pkgs/tools/misc/tlp/default.nix +++ b/pkgs/tools/misc/tlp/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchFromGitHub, makeWrapper, perl, systemd, iw, rfkill, hdparm, ethtool, inetutils, kmod , enableRDW ? true, networkmanager }: -let version = "0.7"; +let version = "0.8"; in stdenv.mkDerivation { inherit enableRDW; @@ -11,7 +11,7 @@ in stdenv.mkDerivation { owner = "linrunner"; repo = "TLP"; rev = "${version}"; - sha256 = "0vgx2jnk9gp41fw992l9dmv462jpcrnwqkzsa8z0lh0l77ax2jcg"; + sha256 = "19fvk0xz6i2ryf41akk4jg1c4sb4rcyxdl9fr0w4lja7g76d5zww"; }; makeFlags = [ "DESTDIR=$(out)" diff --git a/pkgs/tools/misc/youtube-dl/default.nix b/pkgs/tools/misc/youtube-dl/default.nix index e9f7eadc914..7cc58bee2b7 100644 --- a/pkgs/tools/misc/youtube-dl/default.nix +++ b/pkgs/tools/misc/youtube-dl/default.nix @@ -10,11 +10,11 @@ buildPythonPackage rec { name = "youtube-dl-${version}"; - version = "2015.08.28"; + version = "2015.10.06.2"; src = fetchurl { url = "http://youtube-dl.org/downloads/${version}/${name}.tar.gz"; - sha256 = "0iahbynd6fw097a4cc57w26szlbqsmhb8v5ny6qrcil0d4wdqqvp"; + sha256 = "0pxj1z5ay97iqh086qz7rxlp197py71f2mdmshz8rrhcjd6vw1sr"; }; buildInputs = [ makeWrapper zip pandoc ]; diff --git a/pkgs/tools/networking/netsniff-ng/default.nix b/pkgs/tools/networking/netsniff-ng/default.nix index 9ccc91b7bc1..27175c9ed23 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-98-gb3a9f17"; in +let version = "0.5.9-106-g895377c"; in stdenv.mkDerivation { name = "netsniff-ng-${version}"; @@ -10,8 +10,8 @@ stdenv.mkDerivation { src = fetchFromGitHub rec { repo = "netsniff-ng"; owner = repo; - rev = "b3a9f17eb9c7a47e6c4aee3649179b2a54d17eca"; - sha256 = "05nwi5ksijv42w7km08dhymiyyvcj43b5lrpdf9x5j725l79yqdb"; + rev = "895377c6e96ec8ac853568eb275043741a7621cd"; + sha256 = "092jzakldpqram26dccd5k5hv4jc396c3l7iaf9r3139dx83plag"; }; buildInputs = [ bison flex geoip geolite-legacy libcli libnet libnl diff --git a/pkgs/tools/networking/openvpn/update-resolv-conf.nix b/pkgs/tools/networking/openvpn/update-resolv-conf.nix index de04c1419e2..f5937f05004 100644 --- a/pkgs/tools/networking/openvpn/update-resolv-conf.nix +++ b/pkgs/tools/networking/openvpn/update-resolv-conf.nix @@ -1,7 +1,7 @@ { stdenv, fetchgit, makeWrapper, openresolv, coreutils }: stdenv.mkDerivation rec { - name = "update-resolv-conf-2014-10-03"; + name = "update-resolv-conf-20141003"; src = fetchgit { url = https://github.com/masterkorp/openvpn-update-resolv-conf/; diff --git a/pkgs/tools/networking/reaver-wps/default.nix b/pkgs/tools/networking/reaver-wps/default.nix index afce95fbd44..9efe3df7520 100644 --- a/pkgs/tools/networking/reaver-wps/default.nix +++ b/pkgs/tools/networking/reaver-wps/default.nix @@ -22,5 +22,6 @@ stdenv.mkDerivation rec { description = "Brute force attack against Wifi Protected Setup"; homepage = http://code.google.com/p/reaver-wps; license = stdenv.lib.licenses.gpl2Plus; + platforms = stdenv.lib.platforms.linux; }; } diff --git a/pkgs/tools/networking/smbldaptools/default.nix b/pkgs/tools/networking/smbldaptools/default.nix index af1849565fe..9ca5c3be177 100644 --- a/pkgs/tools/networking/smbldaptools/default.nix +++ b/pkgs/tools/networking/smbldaptools/default.nix @@ -27,5 +27,7 @@ stdenv.mkDerivation { homepage = http://gna.org/projects/smbldap-tools/; description = "SAMBA LDAP tools"; license = stdenv.lib.licenses.gpl2Plus; + # pod2man: unable to format smbldap-config.cmd + broken = true; }; } diff --git a/pkgs/tools/networking/snabb/default.nix b/pkgs/tools/networking/snabb/default.nix new file mode 100644 index 00000000000..9ca8b56491d --- /dev/null +++ b/pkgs/tools/networking/snabb/default.nix @@ -0,0 +1,32 @@ +{stdenv, fetchurl}: + +stdenv.mkDerivation rec { + name = "snabb-2015.10"; + + src = fetchurl { + url = "https://github.com/SnabbCo/snabbswitch/archive/v2015.10.tar.gz"; + sha256 = "15cmw7k2siy9m7s1383l1h8kix8cwb143yvwhxdahbnx4lfnzfz8"; + }; + + installPhase = '' + mkdir -p $out/bin + cp src/snabb $out/bin + ''; + + meta = with stdenv.lib; { + homepage = https://github.com/SnabbCo/snabbswitch; + description = "Simple and fast packet networking toolkit"; + longDescription = '' + Snabb Switch is a LuaJIT-based toolkit for writing high-speed + packet networking code (such as routing, switching, firewalling, + and so on). It includes both a scripting inteface for creating + new applications and also some built-in applications that are + ready to run. + It is especially intended for ISPs and other network operators. + ''; + platforms = [ "x86_64-linux" ]; + license = licenses.asl20; + maintainers = [ maintainers.lukego ]; + }; +} + diff --git a/pkgs/tools/networking/tgt/default.nix b/pkgs/tools/networking/tgt/default.nix index b5acdce800a..f870b5463b6 100644 --- a/pkgs/tools/networking/tgt/default.nix +++ b/pkgs/tools/networking/tgt/default.nix @@ -1,4 +1,5 @@ -{ stdenv, fetchFromGitHub, libxslt, libaio, systemd, perl, perlPackages }: +{ stdenv, fetchFromGitHub, libxslt, libaio, systemd, perl, perlPackages +, docbook_xsl }: let version = "1.0.60"; @@ -11,7 +12,7 @@ in stdenv.mkDerivation rec { sha256 = "1bf8rn3mavjrzkp5k23akqn5ilw43g8mpfr68z1bi8s9lr2gkf37"; }; - buildInputs = [ libxslt systemd libaio ]; + buildInputs = [ libxslt systemd libaio docbook_xsl ]; DESTDIR = "$(out)"; PREFIX = "/"; @@ -34,4 +35,4 @@ in stdenv.mkDerivation rec { license = stdenv.lib.licenses.gpl2; platforms = stdenv.lib.platforms.linux; }; -} \ No newline at end of file +} diff --git a/pkgs/tools/networking/tinc/pre.nix b/pkgs/tools/networking/tinc/pre.nix index f7d74b6a39a..81b14392137 100644 --- a/pkgs/tools/networking/tinc/pre.nix +++ b/pkgs/tools/networking/tinc/pre.nix @@ -1,12 +1,12 @@ { stdenv, fetchgit, autoreconfHook, texinfo, ncurses, readline, zlib, lzo, openssl }: stdenv.mkDerivation rec { - name = "tinc-1.1pre-2015-07-22"; + name = "tinc-1.1pre-2015-09-25"; src = fetchgit { url = "git://tinc-vpn.org/tinc"; - rev = "56a8b90d863171d62e0a337b5635fbfc53a67fb0"; - sha256 = "081z4xs5l988g1s0yr7fvnysajd05bx6s54sh84jvq7ij8af71dm"; + rev = "73068238436d8a22abb86e67b08f573b09fd04e1"; + sha256 = "1j8bvvzvciy21s24jdpi089svy7wipg9pm84s98xjlp2plchj5dj"; }; nativeBuildInputs = [ autoreconfHook texinfo ]; diff --git a/pkgs/tools/package-management/nix/default.nix b/pkgs/tools/package-management/nix/default.nix index 71c47c97d60..e74daade3b8 100644 --- a/pkgs/tools/package-management/nix/default.nix +++ b/pkgs/tools/package-management/nix/default.nix @@ -88,21 +88,18 @@ in rec { nixStable = common rec { name = "nix-1.10"; - src = fetchurl { - url = "http://nixos.org/releases/nix/${name}/${name}.tar.xz"; - sha256 = "5612ca7a549dd1ee20b208123e041aaa95a414a0e8f650ea88c672dc023d10f6"; - }; + src = fetchurl { + url = "http://nixos.org/releases/nix/${name}/${name}.tar.xz"; + sha256 = "5612ca7a549dd1ee20b208123e041aaa95a414a0e8f650ea88c672dc023d10f6"; + }; }; - nixUnstable = nix; - /* nixUnstable = lib.lowPrio (common rec { - name = "nix-1.10pre4212_e12cf82"; - src = fetchurl { - url = "http://hydra.nixos.org/build/24982847/download/4/${name}.tar.xz"; - sha256 = "4165db0ea9bb6b5cd96d294348299f20ac045fc18db680104ff98fe9ac893f72"; - }; + name = "nix-1.11pre4244_133a421"; + src = fetchurl { + url = "http://hydra.nixos.org/build/26680779/download/4/${name}.tar.xz"; + sha256 = "cb98e3e0791c3f5a508990e8ddba02ce7fe9282a9fe151c743206c1410cdfd93"; + }; }); - */ } diff --git a/pkgs/tools/security/chkrootkit/default.nix b/pkgs/tools/security/chkrootkit/default.nix index 36a203a7b50..2dad4b3e43a 100644 --- a/pkgs/tools/security/chkrootkit/default.nix +++ b/pkgs/tools/security/chkrootkit/default.nix @@ -4,7 +4,7 @@ stdenv.mkDerivation { name = "chkrootkit-0.50"; src = fetchurl { - url = ftp://ftp.pangeia.com.br/pub/seg/pac/chkrootkit.tar.gz; + url = ftp://ftp.pangeia.com.br/pub/seg/pac/chkrootkit-0.50.tar.gz; sha256 = "1ivclp7ixndacjmf7xgj8lfa6h7ihx44mzzsapqdvf0c5f9gqj4m"; }; diff --git a/pkgs/tools/security/eid-mw/default.nix b/pkgs/tools/security/eid-mw/default.nix index fbb8f0321ef..cdafb560565 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.6"; in +let version = "4.1.7"; in stdenv.mkDerivation { name = "eid-mw-${version}"; src = fetchFromGitHub { - sha256 = "006s7093wqmk36mrlakjv89bqddyh599rvmgv0zgsp15vf9160zi"; + sha256 = "1m44s8mzz8gg97xdmbng40279hc4i7q7i7yd45hbagacny0wxi1k"; rev = "v${version}"; repo = "eid-mw"; owner = "Fedict"; @@ -29,10 +29,11 @@ stdenv.mkDerivation { --replace "modutil" "${nssTools}/bin/modutil" # Only provides a useless "about-eid-mw.desktop" that segfaults anyway: - rm -rf $out/share/applications $out/bin/about-eid-mw + rm -r $out/share/applications $out/bin/about-eid-mw ''; meta = with stdenv.lib; { + inherit version; description = "Belgian electronic identity card (eID) middleware"; homepage = http://eid.belgium.be/en/using_your_eid/installing_the_eid_software/linux/; license = licenses.lgpl3; diff --git a/pkgs/tools/security/gpgstats/default.nix b/pkgs/tools/security/gpgstats/default.nix new file mode 100644 index 00000000000..a04b87c8e31 --- /dev/null +++ b/pkgs/tools/security/gpgstats/default.nix @@ -0,0 +1,30 @@ +{ stdenv, fetchurl, ncurses, gpgme }: + +stdenv.mkDerivation rec { + name = "gpgstats-${version}"; + version = "0.5"; + + src = fetchurl { + url = "http://www.vanheusden.com/gpgstats/${name}.tgz"; + sha256 = "1n3njqhjwgfllcxs0xmk89dzgirrpfpfzkj71kqyvq97gc1wbcxy"; + }; + + buildInputs = [ ncurses gpgme ]; + + installPhase = '' + mkdir -p $out/bin + cp gpgstats $out/bin + ''; + + meta = with stdenv.lib; { + description = "Calculates statistics on the keys in your gpg key-ring"; + longDescription = '' + GPGstats calculates statistics on the keys in your key-ring. + ''; + homepage = http://www.vanheusden.com/gpgstats/; + license = licenses.gpl2; + maintainers = with maintainers; [ davidak ]; + platforms = with platforms; unix; + }; +} + diff --git a/pkgs/tools/security/john/default.nix b/pkgs/tools/security/john/default.nix index 4ef9b8f65b6..24a6782c206 100644 --- a/pkgs/tools/security/john/default.nix +++ b/pkgs/tools/security/john/default.nix @@ -1,29 +1,54 @@ -{ stdenv, fetchgit, openssl, nss, nspr, kerberos, gmp, zlib, libpcap, re2 }: +{ stdenv, fetchurl, openssl, nss, nspr, kerberos, gmp, zlib, libpcap, re2 +, writeText +}: with stdenv.lib; stdenv.mkDerivation rec { - name = "JohnTheRipper-${version}"; - version = "8a3e3c1d"; - buildInputs = [ openssl nss nspr kerberos gmp zlib libpcap re2 ]; - NIX_CFLAGS_COMPILE = "-DJOHN_SYSTEMWIDE=1"; - preConfigure = ''cd src''; - installPhase = '' - ensureDir $out/share/john/ - ensureDir $out/bin - cp -R ../run/* $out/share/john - ln -s $out/share/john/john $out/bin/john - ''; - src = fetchgit { - url = https://github.com/magnumripper/JohnTheRipper.git; - rev = "93f061bc41652c94ae049b52572aac709d18aa4c"; - sha256 = "1rnfi09830n34jcqaxmsam54p4zsq9a49ic2ljh44lahcipympvy"; + name = "john-${version}"; + version = "1.8.0-jumbo-1"; + + src = fetchurl { + url = "http://www.openwall.com/john/j/${name}.tar.xz"; + sha256 = "08q92sfdvkz47rx6qjn7qv57cmlpy7i7rgddapq5384mb413vjds"; }; + + postPatch = '' + sed -ri -e ' + s!^(#define\s+CFG_[A-Z]+_NAME\s+).*/!\1"'"$out"'/etc/john/! + /^#define\s+JOHN_SYSTEMWIDE/s!/usr!'"$out"'! + ' src/params.h + sed -ri -e '/^\.include/ { + s!\$JOHN!'"$out"'/etc/john! + s!^(\.include\s*)<([^./]+\.conf)>!\1"'"$out"'/etc/john/\2"! + }' run/*.conf + ''; + + preConfigure = "cd src"; + configureFlags = [ "--disable-native-macro" ]; + + buildInputs = [ openssl nss nspr kerberos gmp zlib libpcap re2 ]; + enableParallelBuilding = true; + + NIX_CFLAGS_COMPILE = [ "-DJOHN_SYSTEMWIDE=1" ]; + + installPhase = '' + mkdir -p "$out/etc/john" "$out/share/john" "$out/share/doc/john" + find ../run -mindepth 1 -maxdepth 1 -type f -executable \ + -exec "${stdenv.shell}" "${writeText "john-binary-install.sh" '' + filename="$(basename "$1")" + install -vD "$1" "$out/bin/''${filename%.*}" + ''}" {} \; + cp -vt "$out/etc/john" ../run/*.conf + cp -vt "$out/share/john" ../run/*.chr ../run/password.lst + cp -vrt "$out/share/doc/john" ../doc/* + ''; + meta = { description = "John the Ripper password cracker"; license = licenses.gpl2; homepage = https://github.com/magnumripper/JohnTheRipper/; - maintainers = with maintainers; [offline]; + maintainers = with maintainers; [ offline ]; platforms = with platforms; unix; }; } diff --git a/pkgs/tools/security/nasty/default.nix b/pkgs/tools/security/nasty/default.nix new file mode 100644 index 00000000000..099547c2f32 --- /dev/null +++ b/pkgs/tools/security/nasty/default.nix @@ -0,0 +1,32 @@ +{ stdenv, fetchurl, gpgme }: + +stdenv.mkDerivation rec { + name = "nasty-${version}"; + version = "0.6"; + + src = fetchurl { + url = "http://www.vanheusden.com/nasty/${name}.tgz"; + sha256 = "1dznlxr728k1pgy1kwmlm7ivyl3j3rlvkmq34qpwbwbj8rnja1vn"; + }; + + buildInputs = [ gpgme ]; + + installPhase = '' + mkdir -p $out/bin + cp nasty $out/bin + ''; + + meta = with stdenv.lib; { + description = "Recover the passphrase of your PGP or GPG-key"; + longDescription = '' + Nasty is a program that helps you to recover the passphrase of your PGP or GPG-key + in case you forget or lost it. It is mostly a proof-of-concept: with a different implementation + this program could be at least 100x faster. + ''; + homepage = http://www.vanheusden.com/nasty/; + license = licenses.gpl2; + maintainers = with maintainers; [ davidak ]; + platforms = with platforms; unix; + }; +} + diff --git a/pkgs/tools/security/sslscan/default.nix b/pkgs/tools/security/sslscan/default.nix new file mode 100644 index 00000000000..dd124c4efe6 --- /dev/null +++ b/pkgs/tools/security/sslscan/default.nix @@ -0,0 +1,27 @@ +{ stdenv, fetchurl, openssl }: + +stdenv.mkDerivation rec { + name = "sslscan-${version}"; + version = "1.11.0"; + + src = fetchurl { + url = "https://github.com/rbsec/sslscan/archive/${version}-rbsec.tar.gz"; + sha256 = "19d6vpcihfqs35hni4vigcpqabbnd3sndr5wyvfsladgp40vz3b9"; + }; + + buildInputs = [ openssl ]; + + installFlags = [ + "BINPATH=$(out)/bin" + "MANPATH=$(out)/share/man" + ]; + + meta = with stdenv.lib; { + description = "Tests SSL/TLS services and discover supported cipher suites"; + homepage = https://github.com/rbsec/sslscan; + license = licenses.gpl3; + maintainers = with maintainers; [ fpletz globin ]; + platforms = platforms.all; + }; +} + diff --git a/pkgs/tools/security/tor/torbrowser.nix b/pkgs/tools/security/tor/torbrowser.nix index bd7531af18f..6e8f638c8b0 100644 --- a/pkgs/tools/security/tor/torbrowser.nix +++ b/pkgs/tools/security/tor/torbrowser.nix @@ -2,9 +2,6 @@ , xorg, alsaLib, dbus, dbus_glib, glib, gtk, atk, pango, freetype, fontconfig , gdk_pixbuf, cairo, zlib}: let - bits = if stdenv.system == "x86_64-linux" then "64" - else "32"; - # isolated tor environment torEnv = buildEnv { name = "tor-env"; @@ -15,18 +12,17 @@ let ]; }; - ldLibraryPath = if bits == "64" then torEnv+"/lib:"+torEnv+"/lib64" - else torEnv+"/lib"; + ldLibraryPath = ''${torEnv}/lib${stdenv.lib.optionalString stdenv.is64bit ":${torEnv}/lib64"}''; in stdenv.mkDerivation rec { name = "tor-browser-${version}"; - version = "4.5.3"; + version = "5.0.3"; src = fetchurl { - url = "https://archive.torproject.org/tor-package-archive/torbrowser/${version}/tor-browser-linux${bits}-${version}_en-US.tar.xz"; - sha256 = if bits == "64" then - "24c517d2aeb15ba5eeda1eb87f483ed4fb0c22b07a95ca26af9f692e0d4d9b7c" else - "154d659583048e91870c40921561f0519babf6d3c9ac439f6fb74ed66824463f"; + url = "https://archive.torproject.org/tor-package-archive/torbrowser/${version}/tor-browser-linux${if stdenv.is64bit then "64" else "32"}-${version}_en-US.tar.xz"; + sha256 = if stdenv.is64bit then + "1lqsiidnlrh0dlwzc93d0vbjclkb1zq3mwfcjxadjpwik6afszsb" else + "1ajn1bw1j63h3yblh06mmp7xhwdhqg9pdkxyz1dqj1rsp264k50f"; }; patchPhase = '' diff --git a/pkgs/tools/system/dd_rescue/default.nix b/pkgs/tools/system/dd_rescue/default.nix index a0ff9b063dd..d90b5d1d2f0 100644 --- a/pkgs/tools/system/dd_rescue/default.nix +++ b/pkgs/tools/system/dd_rescue/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, autoconf }: stdenv.mkDerivation rec { - version = "1.98"; + version = "1.99"; name = "dd_rescue-${version}"; src = fetchurl { - sha256 = "14lf2pv52sr16977qjq1rsr42rfd3ywsss2xw9svgaa14g49ss6b"; + sha256 = "0gkbwssn134fjyyvjvylyvassw4fwv5mbis9gcb969xdc64dfhg1"; url="http://www.garloff.de/kurt/linux/ddrescue/${name}.tar.bz2"; }; diff --git a/pkgs/tools/typesetting/pdf2djvu/default.nix b/pkgs/tools/typesetting/pdf2djvu/default.nix index eb8b30381ce..5278d4f5d9b 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.8.2"; + version = "0.9.1"; name = "pdf2djvu-${version}"; src = fetchurl { url = "https://bitbucket.org/jwilk/pdf2djvu/downloads/${name}.tar.xz"; - sha256 = "1mlkprbq02yyaqfdziif79i48rvgg195kfwdpl24fdsgjlp83c20"; + sha256 = "1x9xqqwq024k2y8jmwrrkcvrfcy0rwh421x4kz2g8i72gzlik6cz"; }; buildInputs = [ pkgconfig djvulibre poppler fontconfig libjpeg ]; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c7008bd86c0..49a8259e764 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -278,8 +278,9 @@ let }; buildFHSUserEnv = args: userFHSEnv { - env = buildFHSEnv (removeAttrs args [ "runScript" ]); + env = buildFHSEnv (removeAttrs args [ "runScript" "extraBindMounts" ]); runScript = args.runScript or "bash"; + extraBindMounts = args.extraBindMounts or []; }; buildMaven = callPackage ../build-support/build-maven.nix {}; @@ -601,6 +602,8 @@ let bonnie = callPackage ../tools/filesystems/bonnie { }; + djmount = callPackage ../tools/filesystems/djmount { }; + grc = callPackage ../tools/misc/grc { }; lastpass-cli = callPackage ../tools/security/lastpass-cli { }; @@ -713,7 +716,7 @@ let bochs = callPackage ../applications/virtualization/bochs { }; - borg = callPackage ../tools/backup/borg { }; + borgbackup = callPackage ../tools/backup/borg { }; boomerang = callPackage ../development/tools/boomerang { }; @@ -1204,7 +1207,9 @@ let darkstat = callPackage ../tools/networking/darkstat { }; - davfs2 = callPackage ../tools/filesystems/davfs2 { }; + davfs2 = callPackage ../tools/filesystems/davfs2 { + neon = neon_0_29; + }; dbench = callPackage ../development/tools/misc/dbench { }; @@ -1226,6 +1231,8 @@ let gtk = gtk3; }; + dex = callPackage ../tools/X11/dex { }; + ddccontrol = callPackage ../tools/misc/ddccontrol { }; ddccontrol-db = callPackage ../data/misc/ddccontrol-db { }; @@ -1320,7 +1327,7 @@ let duo-unix = callPackage ../tools/security/duo-unix { }; duplicity = callPackage ../tools/backup/duplicity { - inherit (pythonPackages) boto lockfile; + inherit (pythonPackages) boto lockfile paramiko ecdsa pycrypto; gnupg = gnupg1; }; @@ -2291,6 +2298,8 @@ let namazu = callPackage ../tools/text/namazu { }; + nasty = callPackage ../tools/security/nasty { }; + nbd = callPackage ../tools/networking/nbd { }; ndjbdns = callPackage ../tools/networking/ndjbdns { }; @@ -2985,6 +2994,8 @@ let smbnetfs = callPackage ../tools/filesystems/smbnetfs {}; + snabb = callPackage ../tools/networking/snabb { } ; + snort = callPackage ../applications/networking/ids/snort { }; solr = callPackage ../servers/search/solr { }; @@ -3044,6 +3055,8 @@ let sshpass = callPackage ../tools/networking/sshpass { }; + sslscan = callPackage ../tools/security/sslscan { }; + ssmtp = callPackage ../tools/networking/ssmtp { tlsSupport = true; }; @@ -3100,6 +3113,8 @@ let swaks = callPackage ../tools/networking/swaks { }; + swiften = callPackage ../development/libraries/swiften { }; + t = callPackage ../tools/misc/t { }; t1utils = callPackage ../tools/misc/t1utils { }; @@ -3169,7 +3184,9 @@ let torbutton = callPackage ../tools/security/torbutton { }; - torbrowser = callPackage ../tools/security/tor/torbrowser.nix { }; + torbrowser = callPackage ../tools/security/tor/torbrowser.nix { + stdenv = overrideCC stdenv gcc5; + }; touchegg = callPackage ../tools/inputmethods/touchegg { }; @@ -3565,6 +3582,8 @@ let # To expose more packages for Yi, override the extraPackages arg. yi = callPackage ../applications/editors/yi/wrapper.nix { }; + zbackup = callPackage ../tools/backup/zbackup {}; + zbar = callPackage ../tools/graphics/zbar { pygtk = lib.overrideDerivation pygtk (x: { gtk = gtk2; @@ -3707,7 +3726,7 @@ let closurecompiler = callPackage ../development/compilers/closure { }; - cmucl_binary = callPackage ../development/compilers/cmucl/binary.nix { }; + cmucl_binary = callPackage_i686 ../development/compilers/cmucl/binary.nix { }; compcert = callPackage ../development/compilers/compcert ( if system == "x86_64-linux" @@ -3991,6 +4010,8 @@ let gforth = callPackage ../development/compilers/gforth {}; + gtk-server = callPackage ../development/interpreters/gtk-server {}; + # Haskell and GHC haskell = callPackage ./haskell-packages.nix { }; @@ -4123,16 +4144,12 @@ let jikes = callPackage ../development/compilers/jikes { }; - julia02 = callPackage ../development/compilers/julia/0.2.nix { + julia = callPackage ../development/compilers/julia { + gmp = gmp6; llvm = llvm_33; - suitesparse = suitesparse_4_2; + openblas = openblasCompat; }; - julia03 = callPackage ../development/compilers/julia/0.3.nix { - llvm = llvm_33; - }; - julia = julia03; - lazarus = callPackage ../development/compilers/fpc/lazarus.nix { fpc = fpc; }; @@ -4214,7 +4231,7 @@ let ocaml_4_01_0 = callPackage ../development/compilers/ocaml/4.01.0.nix { }; - ocaml_4_02_1 = callPackage ../development/compilers/ocaml/4.02.1.nix { }; + ocaml_4_02 = callPackage ../development/compilers/ocaml/4.02.nix { }; orc = callPackage ../development/compilers/orc { }; @@ -4356,8 +4373,6 @@ let ctypes = callPackage ../development/ocaml-modules/ctypes { }; - deriving = callPackage ../development/tools/ocaml/deriving { }; - dolog = callPackage ../development/ocaml-modules/dolog { }; easy-format = callPackage ../development/ocaml-modules/easy-format { }; @@ -4463,6 +4478,8 @@ let mlgmp = callPackage ../development/ocaml-modules/mlgmp { }; + nocrypto = callPackage ../development/ocaml-modules/nocrypto { }; + ocaml_batteries = callPackage ../development/ocaml-modules/batteries { }; comparelib = callPackage ../development/ocaml-modules/comparelib { }; @@ -4655,15 +4672,15 @@ let // { camlimages = ocamlPackages_3_12_1.camlimages_4_0; }; ocamlPackages_4_00_1 = mkOcamlPackages ocaml_4_00_1 pkgs.ocamlPackages_4_00_1; ocamlPackages_4_01_0 = mkOcamlPackages ocaml_4_01_0 pkgs.ocamlPackages_4_01_0; - ocamlPackages_4_02_1 = mkOcamlPackages ocaml_4_02_1 pkgs.ocamlPackages_4_02_1; - ocamlPackages_latest = ocamlPackages_4_02_1; + ocamlPackages_4_02 = mkOcamlPackages ocaml_4_02 pkgs.ocamlPackages_4_02; + ocamlPackages_latest = ocamlPackages_4_02; ocaml_make = callPackage ../development/ocaml-modules/ocamlmake { }; ocaml-top = callPackage ../development/tools/ocaml/ocaml-top { }; opa = callPackage ../development/compilers/opa { - ocamlPackages = ocamlPackages_4_00_1; + nodejs = nodejs-0_10; }; opam_1_0_0 = callPackage ../development/tools/ocaml/opam/1.0.0.nix { }; @@ -5633,6 +5650,7 @@ let }; noweb = callPackage ../development/tools/literate-programming/noweb { }; + nuweb = callPackage ../development/tools/literate-programming/nuweb { tex = texlive.combined.scheme-small; }; omake = callPackage ../development/tools/ocaml/omake { }; omake_rc1 = callPackage ../development/tools/ocaml/omake/0.9.8.6-rc1.nix { }; @@ -6349,6 +6367,7 @@ let gmp4 = callPackage ../development/libraries/gmp/4.3.2.nix { }; # required by older GHC versions gmp5 = callPackage ../development/libraries/gmp/5.1.x.nix { }; + gmp6 = callPackage ../development/libraries/gmp/6.x.nix { }; gmp = gmp5; gmpxx = appendToName "with-cxx" (gmp.override { cxx = true; }); @@ -6428,6 +6447,8 @@ let gnupg1 = gnupg1orig; }; + gpgstats = callPackage ../tools/security/gpgstats { }; + grantlee = callPackage ../development/libraries/grantlee { }; grantlee5 = callPackage ../development/libraries/grantlee/5.x-old.nix { }; @@ -6644,9 +6665,9 @@ let kf510 = recurseIntoAttrs (callPackage ../development/libraries/kde-frameworks-5.10 { }); kf512 = recurseIntoAttrs (callPackage ../development/libraries/kde-frameworks-5.12 { }); + kf514 = recurseIntoAttrs (import ../development/libraries/kde-frameworks-5.14 { inherit pkgs; }); kf5_latest = kf512; kf5_stable = kf510; - kf513 = recurseIntoAttrs (import ../development/libraries/kde-frameworks-5.13 { inherit pkgs; }); kf5PackagesFun = self: with self; { @@ -6686,8 +6707,8 @@ let }; - kf513Packages = lib.makeScope kf513.newScope kf5PackagesFun; - kf5Packages = kf513Packages; + kf514Packages = lib.makeScope kf514.newScope kf5PackagesFun; + kf5Packages = kf514Packages; kinetic-cpp-client = callPackage ../development/libraries/kinetic-cpp-client { }; @@ -7567,6 +7588,8 @@ let paths = [ mesa_noglu mesa_glu ]; }); + meterbridge = callPackage ../applications/audio/meterbridge { }; + metaEnvironment = recurseIntoAttrs (let callPackage = newScope pkgs.metaEnvironment; in rec { sdfLibrary = callPackage ../development/libraries/sdf-library { aterm = aterm28; }; toolbuslib = callPackage ../development/libraries/toolbuslib { aterm = aterm28; inherit (windows) w32api; }; @@ -7665,6 +7688,11 @@ let sslSupport = true; }; + neon_0_29 = callPackage ../development/libraries/neon/0.29.nix { + compressionSupport = true; + sslSupport = true; + }; + nethack = callPackage ../games/nethack { }; nettle = callPackage ../development/libraries/nettle { }; @@ -7681,6 +7709,8 @@ let nix = pkgs.nixUnstable; }; + non = callPackage ../applications/audio/non { }; + nspr = callPackage ../development/libraries/nspr { }; nss = lowPrio (callPackage ../development/libraries/nss { }); @@ -7789,6 +7819,8 @@ let }; }; + opensubdiv = callPackage ../development/libraries/opensubdiv { }; + openwsman = callPackage ../development/libraries/openwsman {}; ortp = callPackage ../development/libraries/ortp { }; @@ -7809,6 +7841,8 @@ let unicodeSupport = config.pcre.unicode or true; }; + pcre2 = callPackage ../development/libraries/pcre2 { }; + pdf2xml = callPackage ../development/libraries/pdf2xml {} ; phonon = callPackage ../development/libraries/phonon/qt4 {}; @@ -9235,7 +9269,7 @@ let rethinkdb = callPackage ../servers/nosql/rethinkdb { }; rippled = callPackage ../servers/rippled { - boost = boost155; + boost = boost159; }; ripple-rest = callPackage ../servers/rippled/ripple-rest.nix { }; @@ -9406,6 +9440,7 @@ let alsaUtils = callPackage ../os-specific/linux/alsa-utils { }; alsaOss = callPackage ../os-specific/linux/alsa-oss { }; + alsaTools = callPackage ../os-specific/linux/alsa-tools { }; microcodeAmd = callPackage ../os-specific/linux/microcode/amd.nix { }; @@ -9486,6 +9521,11 @@ let cctools = (callPackage ../os-specific/darwin/cctools/port.nix { inherit libobjc; }).native; + cf-private = callPackage ../os-specific/darwin/cf-private { + inherit (apple-source-releases) CF; + inherit osx_private_sdk; + }; + maloader = callPackage ../os-specific/darwin/maloader { inherit opencflite; }; @@ -10424,6 +10464,8 @@ let corefonts = callPackage ../data/fonts/corefonts { }; + culmus = callPackage ../data/fonts/culmus { }; + wrapFonts = paths : (callPackage ../data/fonts/fontWrap { inherit paths; }); clearlyU = callPackage ../data/fonts/clearlyU { }; @@ -11212,6 +11254,8 @@ let magit = callPackage ../applications/editors/emacs-modes/magit { }; + markdownMode = callPackage ../applications/editors/emacs-modes/markdown-mode { }; + maudeMode = callPackage ../applications/editors/emacs-modes/maude { }; metaweblog = callPackage ../applications/editors/emacs-modes/metaweblog { }; @@ -11369,6 +11413,7 @@ let fvwm = callPackage ../applications/window-managers/fvwm { }; geany = callPackage ../applications/editors/geany { }; + geany-with-vte = callPackage ../applications/editors/geany/with-vte.nix { }; gksu = callPackage ../applications/misc/gksu { }; @@ -11964,8 +12009,8 @@ let }; llpp = callPackage ../applications/misc/llpp { - inherit (ocamlPackages_4_02_1) lablgl findlib; - ocaml = ocaml_4_02_1; + inherit (ocamlPackages_4_02) lablgl findlib; + ocaml = ocaml_4_02; }; lmms = callPackage ../applications/audio/lmms { }; @@ -12025,6 +12070,7 @@ let mercurial = callPackage ../applications/version-management/mercurial { inherit (pythonPackages) curses docutils hg-git dulwich; inherit (darwin.apple_sdk.frameworks) ApplicationServices; + inherit (darwin) cf-private; guiSupport = false; # use mercurialFull to get hgk GUI }; @@ -12122,6 +12168,8 @@ let ncmpcpp = callPackage ../applications/audio/ncmpcpp { }; + nload = callPackage ../applications/networking/nload { }; + normalize = callPackage ../applications/audio/normalize { }; mplayer = callPackage ../applications/video/mplayer ({ @@ -12161,22 +12209,16 @@ let inherit (gnome) ORBit2 libbonobo libgnomeui GConf; }; - mumble = callPackage ../applications/networking/mumble { - avahi = avahi.override { - withLibdnssdCompat = true; - }; - celt = celt_0_7; - jackSupport = config.mumble.jackSupport or false; - speechdSupport = config.mumble.speechdSupport or false; - pulseSupport = config.pulseaudio or false; - }; - - murmur = callPackage ../applications/networking/mumble/murmur.nix { - avahi = avahi.override { - withLibdnssdCompat = true; - }; - iceSupport = config.murmur.iceSupport or true; - }; + inherit (callPackages ../applications/networking/mumble { + avahi = avahi.override { + withLibdnssdCompat = true; + }; + qt5 = qt54; # Mumble is not compatible with qt55 yet + jackSupport = config.mumble.jackSupport or false; + speechdSupport = config.mumble.speechdSupport or false; + pulseSupport = config.pulseaudio or false; + iceSupport = config.murmur.iceSupport or true; + }) mumble mumble_git murmur murmur_git; musescore = qt5Libs.callPackage ../applications/audio/musescore { }; @@ -12357,7 +12399,7 @@ let pencil = callPackage ../applications/graphics/pencil { }; - perseus = callPackage ../applications/science/math/perseus {}; + perseus = callPackage ../applications/science/math/perseus {}; petrifoo = callPackage ../applications/audio/petrifoo { inherit (gnome) libgnomecanvas; @@ -12396,14 +12438,16 @@ let plugins = []; }; - pidginlatex = callPackage ../applications/networking/instant-messengers/pidgin-plugins/pidgin-latex { }; - - pidginlatexSF = pidginlatex; + pidginlatex = callPackage ../applications/networking/instant-messengers/pidgin-plugins/pidgin-latex { + texLive = texlive.combined.scheme-basic; + }; pidginmsnpecan = callPackage ../applications/networking/instant-messengers/pidgin-plugins/msn-pecan { }; pidgin-mra = callPackage ../applications/networking/instant-messengers/pidgin-plugins/pidgin-mra { }; + pidgin-skypeweb = callPackage ../applications/networking/instant-messengers/pidgin-plugins/pidgin-skypeweb { }; + pidginotr = callPackage ../applications/networking/instant-messengers/pidgin-plugins/otr { }; pidginsipe = callPackage ../applications/networking/instant-messengers/pidgin-plugins/sipe { }; @@ -12999,7 +13043,7 @@ let vim = callPackage ../applications/editors/vim { inherit (darwin.apple_sdk.frameworks) CoreServices Cocoa Foundation CoreData; - inherit (darwin) libobjc; + inherit (darwin) libobjc cf-private; }; macvim = callPackage ../applications/editors/vim/macvim.nix { stdenv = clangStdenv; }; @@ -14245,13 +14289,17 @@ let # standard BLAS and LAPACK. openblasCompat = openblas.override { blas64 = false; }; + openlibm = callPackage ../development/libraries/science/math/openlibm {}; + + openspecfun = callPackage ../development/libraries/science/math/openspecfun {}; + mathematica = callPackage ../applications/science/math/mathematica { }; mathematica9 = callPackage ../applications/science/math/mathematica/9.nix { }; - sage = callPackage ../applications/science/math/sage { }; - metis = callPackage ../development/libraries/science/math/metis {}; + sage = callPackage ../applications/science/math/sage { }; + suitesparse_4_2 = callPackage ../development/libraries/science/math/suitesparse/4.2.nix { }; suitesparse_4_4 = callPackage ../development/libraries/science/math/suitesparse {}; suitesparse = suitesparse_4_4; @@ -14356,6 +14404,8 @@ let coq = coq_8_5; + coq-ext-lib = callPackage ../development/coq-modules/coq-ext-lib {}; + mathcomp = callPackage ../development/coq-modules/mathcomp { }; ssreflect = callPackage ../development/coq-modules/ssreflect { }; @@ -15011,6 +15061,8 @@ let wavegain = callPackage ../applications/audio/wavegain { }; + wcalc = callPackage ../applications/misc/wcalc { }; + wine = callPackage ../misc/emulators/wine { wineRelease = config.wine.release or "stable"; wineBuild = config.wine.build or "wine32"; @@ -15152,6 +15204,7 @@ aliases = with self; rec { xlibs = xorg; # added 2015-09 youtube-dl = pythonPackages.youtube-dl; # added 2015-06-07 youtubeDL = youtube-dl; # added 2014-10-26 + pidginlatexSF = pidginlatex; # added 2014-11-02 }; tweakAlias = _n: alias: with lib; @@ -15160,4 +15213,3 @@ tweakAlias = _n: alias: with lib; else alias; in lib.mapAttrs tweakAlias aliases // self; in pkgs - diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 2bf0a96a5aa..77169addcc0 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -1132,6 +1132,21 @@ let propagatedBuildInputs = [ go-querystring ]; }; + go-gtk-agl = buildFromGitHub { + rev = "6937b8d28cf70d583346220b966074cfd3a2e233"; + owner = "agl"; + repo = "go-gtk"; + sha256 = "0jnhsv7ypyhprpy0fndah22v2pbbavr3db6f9wxl1vf34qkns3p4"; + # Examples require many go libs, and gtksourceview seems ready only for + # gtk2 + preConfigure = '' + rm -R example gtksourceview + ''; + nativeBuildInputs = [ pkgs.pkgconfig ]; + propagatedBuildInputs = [ pkgs.gtk3 ]; + buildInputs = [ pkgs.gtkspell3 ]; + }; + go-gypsy = buildFromGitHub { rev = "42fc2c7ee9b8bd0ff636cd2d7a8c0a49491044c5"; owner = "kylelemons"; @@ -1502,15 +1517,15 @@ let }; hologram = buildGoPackage rec { - rev = "2bf08f0edee49297358bd06a0c9bf44ba9051e9c"; + rev = "63014b81675e1228818bf36ef6ef0028bacad24b"; name = "hologram-${stdenv.lib.strings.substring 0 7 rev}"; goPackagePath = "github.com/AdRoll/hologram"; src = fetchFromGitHub { inherit rev; - owner = "copumpkin"; + owner = "AdRoll"; repo = "hologram"; - sha256 = "1ra6rdniqh3pi84fm29zam4irzv52a1dd2sppaqngk07f7rkkhi4"; + sha256 = "0k8g7dwrkxdvmzs4aa8zz39qa8r2danc4x40hrblcgjhfcwzxrzr"; }; buildInputs = [ crypto protobuf goamz rgbterm go-bindata go-homedir ldap g2s gox ]; }; @@ -2110,15 +2125,19 @@ let doCheck = false; # bad import path in tests }; - pond = let isx86_64 = stdenv.lib.any (n: n == stdenv.system) stdenv.lib.platforms.x86_64; in buildFromGitHub { + pond = let + isx86_64 = stdenv.lib.any (n: n == stdenv.system) stdenv.lib.platforms.x86_64; + gui = true; # Might be implemented with nixpkgs config. + in buildFromGitHub { rev = "bce6e0dc61803c23699c749e29a83f81da3c41b2"; owner = "agl"; repo = "pond"; sha256 = "1dmgbg4ak3jkbgmxh0lr4hga1nl623mh7pvsgby1rxl4ivbzwkh4"; buildInputs = [ net crypto protobuf ed25519 pkgs.trousers ] - ++ stdenv.lib.optional isx86_64 pkgs.dclxvi; - buildFlags = "-tags nogui"; + ++ stdenv.lib.optional isx86_64 pkgs.dclxvi + ++ stdenv.lib.optionals gui [ go-gtk-agl pkgs.wrapGAppsHook ]; + buildFlags = stdenv.lib.optionalString (!gui) "-tags nogui"; excludedPackages = "\\(appengine\\|bn256cgo\\)"; postPatch = stdenv.lib.optionalString isx86_64 '' grep -r 'bn256' | awk -F: '{print $1}' | xargs sed -i \ diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index f45e3c3c2a3..ef0d784a62e 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -111,31 +111,24 @@ rec { lts-0_0 = packages.ghc783.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-0.0.nix { }; }; - lts-0_1 = packages.ghc783.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-0.1.nix { }; }; - lts-0_2 = packages.ghc783.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-0.2.nix { }; }; - lts-0_3 = packages.ghc783.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-0.3.nix { }; }; - lts-0_4 = packages.ghc783.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-0.4.nix { }; }; - lts-0_5 = packages.ghc783.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-0.5.nix { }; }; - lts-0_6 = packages.ghc783.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-0.6.nix { }; }; - lts-0_7 = packages.ghc783.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-0.7.nix { }; }; @@ -143,55 +136,42 @@ rec { lts-1_0 = packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-1.0.nix { }; }; - lts-1_1 = packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-1.1.nix { }; }; - lts-1_2 = packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-1.2.nix { }; }; - lts-1_4 = packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-1.4.nix { }; }; - lts-1_5 = packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-1.5.nix { }; }; - lts-1_7 = packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-1.7.nix { }; }; - lts-1_8 = packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-1.8.nix { }; }; - lts-1_9 = packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-1.9.nix { }; }; - lts-1_10 =packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-1.10.nix { }; }; - lts-1_11 =packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-1.11.nix { }; }; - lts-1_12 =packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-1.12.nix { }; }; - lts-1_13 =packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-1.13.nix { }; }; - lts-1_14 =packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-1.14.nix { }; }; - lts-1_15 =packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-1.15.nix { }; }; @@ -199,91 +179,69 @@ rec { lts-2_0 = packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-2.0.nix { }; }; - lts-2_1 = packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-2.1.nix { }; }; - lts-2_2 = packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-2.2.nix { }; }; - lts-2_3 = packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-2.3.nix { }; }; - lts-2_4 = packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-2.4.nix { }; }; - lts-2_5 = packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-2.5.nix { }; }; - lts-2_6 = packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-2.6.nix { }; }; - lts-2_7 = packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-2.7.nix { }; }; - lts-2_8 = packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-2.8.nix { }; }; - lts-2_9 = packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-2.9.nix { }; }; - lts-2_10 = packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-2.10.nix { }; }; - lts-2_11 = packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-2.11.nix { }; }; - lts-2_12 = packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-2.12.nix { }; }; - lts-2_13 = packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-2.13.nix { }; }; - lts-2_14 = packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-2.14.nix { }; }; - lts-2_15 = packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-2.15.nix { }; }; - lts-2_16 = packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-2.16.nix { }; }; - lts-2_17 = packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-2.17.nix { }; }; - lts-2_18 = packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-2.18.nix { }; }; - lts-2_19 = packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-2.19.nix { }; }; - lts-2_20 = packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-2.20.nix { }; }; - lts-2_21 = packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-2.21.nix { }; }; - lts-2_22 = packages.ghc784.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-2.22.nix { }; }; @@ -291,34 +249,33 @@ rec { lts-3_0 = packages.ghc7102.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-3.0.nix { }; }; - lts-3_1 = packages.ghc7102.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-3.1.nix { }; }; - lts-3_2 = packages.ghc7102.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-3.2.nix { }; }; - lts-3_3 = packages.ghc7102.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-3.3.nix { }; }; - lts-3_4 = packages.ghc7102.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-3.4.nix { }; }; - lts-3_5 = packages.ghc7102.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-3.5.nix { }; }; - lts-3_6 = packages.ghc7102.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-3.6.nix { }; }; - lts-3_7 = packages.ghc7102.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-3.7.nix { }; }; + lts-3_8 = packages.ghc7102.override { + packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-3.8.nix { }; + }; + lts-3_9 = packages.ghc7102.override { + packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-3.9.nix { }; + }; }; } diff --git a/pkgs/top-level/make-tarball.nix b/pkgs/top-level/make-tarball.nix index cc6e8710335..082262077a8 100644 --- a/pkgs/top-level/make-tarball.nix +++ b/pkgs/top-level/make-tarball.nix @@ -49,12 +49,20 @@ releaseTools.sourceTarball rec { exit 1 fi - # Check that all-packages.nix evaluates on a number of platforms. + # Check that all-packages.nix evaluates on a number of platforms without any warnings. for platform in i686-linux x86_64-linux x86_64-darwin; do header "checking pkgs/top-level/all-packages.nix on $platform" + NIXPKGS_ALLOW_BROKEN=1 nix-env -f pkgs/top-level/all-packages.nix \ --show-trace --argstr system "$platform" \ - -qa --drv-path --system-filter \* --system > /dev/null + -qa --drv-path --system-filter \* --system 2>&1 >/dev/null | tee eval-warnings.log + + if [ -s eval-warnings.log ]; then + echo "pkgs/top-level/all-packages.nix on $platform evaluated with warnings, aborting" + exit 1 + fi + rm eval-warnings.log + NIXPKGS_ALLOW_BROKEN=1 nix-env -f pkgs/top-level/all-packages.nix \ --show-trace --argstr system "$platform" \ -qa --drv-path --system-filter \* --system --meta --xml > /dev/null diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index ead04c0f088..7f11e36f34e 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -65,11 +65,11 @@ let self = _self // overrides; _self = with self; { }; }; - AlgorithmDiff = buildPerlPackage rec { - name = "Algorithm-Diff-1.1902"; + AlgorithmDiff = let version = "1.1903"; in buildPerlPackage { + name = "Algorithm-Diff-${version}"; src = fetchurl { - url = mirror://cpan/authors/id/T/TY/TYEMQ/Algorithm-Diff-1.1902.tar.gz; - sha256 = "0xc315h7xwq65n9n6nq8flv5d89z6kra69hspnyccw3782zhvd68"; + url = "mirror://cpan/authors/id/T/TY/TYEMQ/Algorithm-Diff-${version}.tar.gz"; + sha256 = "0l8pk7ziz72d022hsn4xldhhb9f5649j5cgpjdibch0xng24ms1h"; }; buildInputs = [ pkgs.unzip ]; }; @@ -88,10 +88,10 @@ let self = _self // overrides; _self = with self; { }; aliased = buildPerlPackage rec { - name = "aliased-0.31"; + name = "aliased-0.34"; src = fetchurl { - url = "mirror://cpan/authors/id/O/OV/OVID/${name}.tar.gz"; - sha256 = "0gxfqdddlq5g1b2zs99b251hz52z9ys4yni7j2p8gyk5zij3wm1s"; + url = "mirror://cpan/authors/id/E/ET/ETHER/${name}.tar.gz"; + sha256 = "1syyqzy462501kn5ma9gl6xbmcahqcn4qpafhsmpz0nd0x2m4l63"; }; }; @@ -418,12 +418,13 @@ let self = _self // overrides; _self = with self; { }; Autodia = buildPerlPackage rec { - name = "Autodia-2.03"; + name = "Autodia-2.14"; src = fetchurl { - url = "http://www.aarontrevena.co.uk/opensource/autodia/download/${name}.tar.gz"; - sha256 = "1pzp30lnqkip2yrmnyzrf62g08xwn751nf9gmwdxjc09daaihwaz"; + url = "mirror://cpan/authors/id/T/TE/TEEJAY/${name}.tar.gz"; + sha256 = "08pl5y18nsvy8ihfzdsbd8rz6a8al09wqfna07zdjfdyib42b0dc"; }; - propagatedBuildInputs = [ TemplateToolkit Inline InlineJava GraphViz ]; + propagatedBuildInputs = [ TemplateToolkit Inline InlineJava GraphViz + XMLSimple DBI ]; meta = { description = "AutoDia, create UML diagrams from source code"; @@ -461,11 +462,11 @@ let self = _self // overrides; _self = with self; { }; }; - autovivification = buildPerlPackage { - name = "autovivification-0.12"; + autovivification = buildPerlPackage rec { + name = "autovivification-0.16"; src = fetchurl { - url = mirror://cpan/authors/id/V/VP/VPIT/autovivification-0.12.tar.gz; - sha256 = "6ef8686766c63571389880e5d87a0ca1d46f7d127982e8ef38aca7568c44840c"; + url = "mirror://cpan/authors/id/V/VP/VPIT/${name}.tar.gz"; + sha256 = "1422kw9fknv7rbjkgdfflg1q3mb69d3yryszp38dn0bgzkqhwkc1"; }; meta = { homepage = http://search.cpan.org/dist/autovivification/; @@ -496,11 +497,11 @@ let self = _self // overrides; _self = with self; { }; }; - BFlags = buildPerlPackage { - name = "B-Flags-0.13"; + BFlags = buildPerlPackage rec { + name = "B-Flags-0.14"; src = fetchurl { - url = mirror://cpan/authors/id/R/RU/RURBAN/B-Flags-0.13.tar.gz; - sha256 = "6d00f08681772d0abec3aeedb5584910a6df5ced230c1525403a1c7da42f1352"; + url = "mirror://cpan/authors/id/R/RU/RURBAN/${name}.tar.gz"; + sha256 = "07inzxvvf4bkl4iliys9rfdiz309nccpbr82a7g57bhcylj7qhzn"; }; meta = { description = "Friendlier flags for B"; @@ -541,11 +542,11 @@ let self = _self // overrides; _self = with self; { }; }; - bignum = buildPerlPackage { - name = "bignum-0.37"; + bignum = buildPerlPackage rec { + name = "bignum-0.41"; src = fetchurl { - url = mirror://cpan/authors/id/P/PJ/PJACKLAM/bignum-0.37.tar.gz; - sha256 = "9d2e035222d8b00d062959cb5ae491cb6ce80b7ea0ea8c05e53c415022e4f871"; + url = "mirror://cpan/authors/id/P/PJ/PJACKLAM/${name}.tar.gz"; + sha256 = "19bwz2yi2qf5lrhkkk8c320b5ixn0wl8662gmvq3gqzarngxf76l"; }; meta = { description = "Transparent BigNumber support for Perl"; @@ -578,11 +579,11 @@ let self = _self // overrides; _self = with self; { }; }; - boolean = buildPerlPackage { - name = "boolean-0.32"; + boolean = buildPerlPackage rec { + name = "boolean-0.45"; src = fetchurl { - url = mirror://cpan/authors/id/I/IN/INGY/boolean-0.32.tar.gz; - sha256 = "1icihm1cib90klfjrk069s7031n1c7xk3fmkr2bfxrwqda4di7jg"; + url = "mirror://cpan/authors/id/I/IN/INGY/${name}.tar.gz"; + sha256 = "18hrgldzwnhs0c0r8hxx6r05qvk9p7gwinjwcybixfs2h0n43ypj"; }; meta = { homepage = https://github.com/ingydotnet/boolean-pm/tree; @@ -655,10 +656,10 @@ let self = _self // overrides; _self = with self; { }; CacheCache = buildPerlPackage rec { - name = "Cache-Cache-1.06"; + name = "Cache-Cache-1.08"; src = fetchurl { url = "mirror://cpan/modules/by-module/Cache/${name}.tar.gz"; - sha256 = "14s75bsm5irisp8wkbwl3ycw160srr1rks7x9jcbvcxh79wr6gbh"; + sha256 = "1s6i670dc3yb6ngvdk48y6szdk5n1f4icdcjv2vi1l2xp9fzviyj"; }; propagatedBuildInputs = [ DigestSHA1 Error IPCShareLite ]; doCheck = false; # randomly fails @@ -753,11 +754,11 @@ let self = _self // overrides; _self = with self; { }; }; - CaptureTiny = buildPerlPackage { - name = "Capture-Tiny-0.24"; + CaptureTiny = buildPerlPackage rec { + name = "Capture-Tiny-0.30"; src = fetchurl { - url = mirror://cpan/authors/id/D/DA/DAGOLDEN/Capture-Tiny-0.24.tar.gz; - sha256 = "0rg0m9irhx8jwamxdi2ms4vhhxy7q050gjrn2m051spqfa26zkwv"; + url = "mirror://cpan/authors/id/D/DA/DAGOLDEN/${name}.tar.gz"; + sha256 = "1siswsz63wcvldnq1ns1gm5kbs768agsgcgh1papfzkmg19fbd53"; }; meta = { homepage = https://metacpan.org/release/Capture-Tiny; @@ -1468,31 +1469,31 @@ let self = _self // overrides; _self = with self; { }; ClassBase = buildPerlPackage rec { - name = "Class-Base-0.05"; + name = "Class-Base-0.06"; src = fetchurl { url = "mirror://cpan/authors/id/S/SZ/SZABGAB/${name}.tar.gz"; - sha256 = "0vryy6b64f2wbfc2zzzvh6ravkp5i4kjdxhjbj3s08g9pwyc67y6"; + sha256 = "15mvg1ba0iphjjb90a2fq73hyzcgp8pv0c44pjfcn7vdlzp098z3"; }; }; - ClassC3 = buildPerlPackage { - name = "Class-C3-0.26"; + ClassC3 = buildPerlPackage rec { + name = "Class-C3-0.28"; src = fetchurl { - url = mirror://cpan/authors/id/H/HA/HAARG/Class-C3-0.26.tar.gz; - sha256 = "008xg6gf5qp2fdjqzfpg0fzhw7f308ddkxwvzdcaa9zq59sg5x6s"; + url = "mirror://cpan/authors/id/H/HA/HAARG/${name}.tar.gz"; + sha256 = "084d2cvfff3mi2fjycdvbgx797wkv1wsz97w3v8i14j8vhmfv4bg"; }; propagatedBuildInputs = [ AlgorithmC3 ]; meta = { - description = "A pragma to use the C3 method resolution order algortihm"; + description = "A pragma to use the C3 method resolution order algorithm"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; }; }; - ClassC3AdoptNEXT = buildPerlPackage { - name = "Class-C3-Adopt-NEXT-0.13"; + ClassC3AdoptNEXT = buildPerlPackage rec { + name = "Class-C3-Adopt-NEXT-0.14"; src = fetchurl { - url = mirror://cpan/authors/id/F/FL/FLORA/Class-C3-Adopt-NEXT-0.13.tar.gz; - sha256 = "1rwgbx6dsy4rpas94p8wakzj7hrla1p15jnbm24kwhsv79gp91ld"; + url = "mirror://cpan/authors/id/E/ET/ETHER/${name}.tar.gz"; + sha256 = "1xsbydmiskpa1qbmnf6n39cb83nlb432xgkad9kfhxnvm8jn4rw5"; }; buildInputs = [ TestException ]; propagatedBuildInputs = [ ListMoreUtils MROCompat ]; @@ -1607,11 +1608,11 @@ let self = _self // overrides; _self = with self; { }; }; - ClassMethodMaker = buildPerlPackage { - name = "Class-MethodMaker-2.21"; + ClassMethodMaker = buildPerlPackage rec { + name = "Class-MethodMaker-2.24"; src = fetchurl { - url = mirror://cpan/authors/id/S/SC/SCHWIGON/class-methodmaker/Class-MethodMaker-2.21.tar.gz; - sha256 = "0gca1cjy2k0mrpfnbyzm5islzfayqfvg3zzlrlm7n60p0cb48y7w"; + url = "mirror://cpan/authors/id/S/SC/SCHWIGON/class-methodmaker/${name}.tar.gz"; + sha256 = "0a03i4k3a33qqwhykhz5k437ld5mag2vq52vvsy03gbynb65ivsy"; }; preConfigure = "patchShebangs ."; meta = { @@ -1646,26 +1647,26 @@ let self = _self // overrides; _self = with self; { ClassMOP = Moose; ClassSingleton = buildPerlPackage rec { - name = "Class-Singleton-1.4"; + name = "Class-Singleton-1.5"; src = fetchurl { - url = "mirror://cpan/authors/id/A/AB/ABW/${name}.tar.gz"; - sha256 = "0l4iwwk91wm2mrrh4irrn6ham9k12iah1ry33k0lzq22r3kwdbyg"; + url = "mirror://cpan/authors/id/S/SH/SHAY/${name}.tar.gz"; + sha256 = "0y7ngrjf551bjgmijp5rsidbkq6c8hb5lmy2jcqq0fify020s8iq"; }; }; - ClassThrowable = buildPerlPackage { - name = "Class-Throwable-0.11"; + ClassThrowable = buildPerlPackage rec { + name = "Class-Throwable-0.13"; src = fetchurl { - url = mirror://cpan/authors/id/K/KM/KMX/Class-Throwable-0.11.tar.gz; - sha256 = "1vjadr0kqmfi9s3wfxjbqqgc7fqrk87n6b1a5979sbxxk5yh8hyk"; + url = "mirror://cpan/authors/id/K/KM/KMX/${name}.tar.gz"; + sha256 = "1kmwzdxvp9ca2z44vl0ygkfygdbxqkilzjd8vqhc4vdmvbh136nw"; }; }; - ClassLoad = buildPerlPackage { - name = "Class-Load-0.21"; + ClassLoad = buildPerlPackage rec { + name = "Class-Load-0.23"; src = fetchurl { - url = mirror://cpan/authors/id/E/ET/ETHER/Class-Load-0.21.tar.gz; - sha256 = "0z04r0jdk8l3qd96f75q3042p76hr4i747dg87s7xrpp0bjbmn8h"; + url = "mirror://cpan/authors/id/E/ET/ETHER/${name}.tar.gz"; + sha256 = "13xjfh4fadq4pkq7fcj42b26544jl7gqdg2y3imnra9fwxwsbg7j"; }; buildInputs = [ TestFatal TestRequires ]; propagatedBuildInputs = [ DataOptList ModuleImplementation ModuleRuntime PackageStash TryTiny ]; @@ -1676,11 +1677,11 @@ let self = _self // overrides; _self = with self; { }; }; - ClassLoadXS = buildPerlModule { - name = "Class-Load-XS-0.06"; + ClassLoadXS = buildPerlPackage rec { + name = "Class-Load-XS-0.09"; src = fetchurl { - url = mirror://cpan/authors/id/D/DR/DROLSKY/Class-Load-XS-0.06.tar.gz; - sha256 = "1dl739nnfw2j9rjgqxx24jqbanyvncqfnkwm27af8ik6kiqk50ik"; + url = "mirror://cpan/authors/id/E/ET/ETHER/${name}.tar.gz"; + sha256 = "1aivalms81s3a2cj053ncgnmkpgl7vspna8ajlkqir7rdn8kpv5v"; }; buildInputs = [ ModuleImplementation TestFatal TestRequires ]; propagatedBuildInputs = [ ClassLoad ]; @@ -1713,10 +1714,10 @@ let self = _self // overrides; _self = with self; { }; ClassUnload = buildPerlPackage rec { - name = "Class-Unload-0.08"; + name = "Class-Unload-0.09"; src = fetchurl { url = "mirror://cpan/authors/id/I/IL/ILMARI/${name}.tar.gz"; - sha256 = "097gr3r2jgnm1175m4lpg4a97hv2mxrn9r0b2c6bn1x9xdhkywgh"; + sha256 = "1q50hw217kll1vaxp7vz4x84f478ymd4lgz7mhmz8p94l8lxgi5g"; }; propagatedBuildInputs = [ ClassInspector ]; }; @@ -1746,10 +1747,10 @@ let self = _self // overrides; _self = with self; { }; CommonSense = buildPerlPackage rec { - name = "common-sense-3.72"; + name = "common-sense-3.74"; src = fetchurl { - url = mirror://cpan/authors/id/M/ML/MLEHMANN/common-sense-3.72.tar.gz; - sha256 = "16q95qrjksyykdn3mfj9vx26kb6c3hg97scmcbd00hfbk332xyd4"; + url = "mirror://cpan/authors/id/M/ML/MLEHMANN/${name}.tar.gz"; + sha256 = "1wxv2s0hbjkrnssvxvsds0k213awg5pgdlrpkr6xkpnimc17s7vp"; }; meta = { homepage = http://search.cpan.org/perldoc?CPAN::Meta::Spec; @@ -1803,11 +1804,11 @@ let self = _self // overrides; _self = with self; { propagatedBuildInputs = [ IOCompress ]; }; - ConfigAny = buildPerlPackage { - name = "Config-Any-0.24"; + ConfigAny = buildPerlPackage rec { + name = "Config-Any-0.26"; src = fetchurl { - url = mirror://cpan/authors/id/B/BR/BRICAS/Config-Any-0.24.tar.gz; - sha256 = "710f8fc8f9414205cb58399bfbb4d9aaf7883f8ce046cee22913f6818795c61a"; + url = "mirror://cpan/authors/id/B/BR/BRICAS/${name}.tar.gz"; + sha256 = "155521bxiim3dv8d8f69fqd9zxm615fd4pfmv5fki17hq7ai5bpr"; }; propagatedBuildInputs = [ ModulePluggable ]; meta = { @@ -1816,10 +1817,10 @@ let self = _self // overrides; _self = with self; { }; }; - ConfigAutoConf = buildPerlPackage { - name = "Config-AutoConf-0.22"; + ConfigAutoConf = buildPerlPackage rec { + name = "Config-AutoConf-0.311"; src = fetchurl { - url = mirror://cpan/authors/id/A/AM/AMBS/Config/Config-AutoConf-0.22.tar.gz; + url = "mirror://cpan/authors/id/A/AM/AMBS/${name}.tar.gz"; sha256 = "1zk2xfvxd3yn3299i13vn5wm1c7jxgr7z3h0yh603xs2h9cg79wc"; }; propagatedBuildInputs = [ CaptureTiny ]; @@ -1829,11 +1830,11 @@ let self = _self // overrides; _self = with self; { }; }; - ConfigGeneral = buildPerlPackage { - name = "Config-General-2.52"; + ConfigGeneral = buildPerlPackage rec { + name = "Config-General-2.58"; src = fetchurl { - url = mirror://cpan/authors/id/T/TL/TLINDEN/Config-General-2.52.tar.gz; - sha256 = "07rmabdh21ljyc9yy6gpjg4w1y0lzwz8daljf0jv2g521hpdfdwr"; + url = "mirror://cpan/authors/id/T/TL/TLINDEN/${name}.tar.gz"; + sha256 = "1vrfp1c7ah2yqvh2gr4v79gbm183xxynm06v6vipva00qvsg6g6n"; }; meta = { license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; @@ -1926,10 +1927,10 @@ let self = _self // overrides; _self = with self; { }; ConfigTiny = buildPerlPackage rec { - name = "Config-Tiny-2.20"; + name = "Config-Tiny-2.22"; src = fetchurl { url = "mirror://cpan/authors/id/R/RS/RSAVAGE/${name}.tgz"; - sha256 = "0grgb7av1hwpl20xh91jipla1xi0h7vx6c538arxmvgm1f71cql2"; + sha256 = "090kbff4wgjl4csdb3axl7nv41yy326yd1xyp2sx3crxfhl9gkli"; }; }; @@ -1948,28 +1949,29 @@ let self = _self // overrides; _self = with self; { }; }; - Connector = buildPerlPackage { - name = "Connector-1.15"; + Connector = buildPerlPackage rec { + name = "Connector-1.16"; src = fetchurl { - url = mirror://cpan/authors/id/M/MR/MRSCOTTY/Connector-1.15.tar.gz; - sha256 = "1p64gnkrik7f21jj0x5di0inmb4s1p33g0mxyk5gvwchkf43pyn4"; + url = "mirror://cpan/authors/id/M/MR/MRSCOTTY/${name}.tar.gz"; + sha256 = "0rbx4n86y5sdkff37w8djw1ahxrg79bsfgbrph3kjhh4jzd20q09"; }; - doCheck = false; + buildInputs = [ Moose ConfigStd YAML PathClass DateTime Log4Perl + ConfigVersioned TemplateToolkit]; }; ConvertASN1 = buildPerlPackage rec { - name = "Convert-ASN1-0.26"; + name = "Convert-ASN1-0.27"; src = fetchurl { - url = "mirror://cpan/authors/id/G/GB/GBARR/Convert-ASN1-0.26.tar.gz"; - sha256 = "188wpjnp4j2m1l1zzw9ak9ymiba1g7hzysf8mc6bsdnhl0pvdf2x"; + url = "mirror://cpan/authors/id/G/GB/GBARR/${name}.tar.gz"; + sha256 = "12nmsca6hzgxq57sx7dp8yq6zxqhl41z5a6018877sf5w25ag93l"; }; }; - constant = buildPerlPackage { - name = "constant-1.27"; + constant = buildPerlPackage rec { + name = "constant-1.33"; src = fetchurl { - url = mirror://cpan/authors/id/S/SA/SAPER/constant-1.27.tar.gz; - sha256 = "0ari0jggiifz3q7vxb8nlcsc3g6bj8c0c0drsrphv0079c956i3l"; + url = "mirror://cpan/authors/id/R/RJ/RJBS/${name}.tar.gz"; + sha256 = "015my616h5l2fswh52x4dp3n007gk5lax83ww9q6cmzb610mv5kr"; }; }; @@ -1989,10 +1991,10 @@ let self = _self // overrides; _self = with self; { constantdefer = pkgs.perlPackages.constant-defer; constant-defer = buildPerlPackage rec { - name = "constant-defer-5"; + name = "constant-defer-6"; src = fetchurl { url = "mirror://cpan/authors/id/K/KR/KRYDE/${name}.tar.gz"; - sha256 = "05fjw2n6liwlillrj3bkfm5fzxw1mcfbxrnk9m18vibx6yzf8pwq"; + sha256 = "1ykgk0rd05p7kyrdxbv047fj7r0b4ix9ibpkzxp6h8nak0qjc8bv"; }; }; @@ -2351,6 +2353,19 @@ let self = _self // overrides; _self = with self; { buildInputs = [ PathClass TryTiny ]; }; + CryptX = buildPerlModule rec { + name = "CryptX-0.025"; + src = fetchurl { + url = "mirror://cpan/authors/id/M/MI/MIK/${name}.tar.gz"; + sha256 = "f8b7e3ec1713c8dfe3eef9d114f45f223b97e2340f81a20589b5605fa49cfe38"; + }; + propagatedBuildInputs = [ JSON ]; + meta = { + description = "Crypto toolkit"; + license = "perl"; + }; + }; + CSSDOM = buildPerlPackage rec { name = "CSS-DOM-0.15"; src = fetchurl { @@ -2361,15 +2376,16 @@ let self = _self // overrides; _self = with self; { buildInputs = [ Clone ]; }; - Curses = buildPerlPackage { - name = "Curses-1.32"; + Curses = let version = "1.33"; in buildPerlPackage { + name = "Curses-${version}"; src = fetchurl { - url = mirror://cpan/authors/id/G/GI/GIRAFFED/Curses-1.32.tgz; - sha256 = "0l569g8saw20ka5z4h17xpn0mcwfxg3jnsg6cnbnv034g7yl9fjx"; + url = "mirror://cpan/authors/id/G/GI/GIRAFFED/Curses-${version}.tar.gz"; + sha256 = "126fhcyb822vqhszdrr7nmhrnshf06076shxdr7la0fwqzsfn7zb"; }; propagatedBuildInputs = [ pkgs.ncurses ]; NIX_CFLAGS_LINK = "-lncurses"; meta = { + inherit version; description = "Perl bindings to ncurses"; license = stdenv.lib.licenses.artistic1; }; @@ -4640,6 +4656,14 @@ let self = _self // overrides; _self = with self; { }; }; + FileSlurpTiny = buildPerlPackage rec { + name = "File-Slurp-Tiny-0.004"; + src = fetchurl { + url = "mirror://cpan/authors/id/L/LE/LEONT/${name}.tar.gz"; + sha256 = "07kzfmibl43dq4c803f022g2rcfv4nkjgipxclz943mzxaz9aaa5"; + }; + }; + FileUtil = buildPerlPackage rec { name = "File-Util-4.132140"; src = fetchurl { @@ -6230,11 +6254,11 @@ let self = _self // overrides; _self = with self; { }; }; - locallib = buildPerlPackage { - name = "local-lib-2.000014"; + locallib = buildPerlPackage rec { + name = "local-lib-2.000017"; src = fetchurl { - url = mirror://cpan/authors/id/H/HA/HAARG/local-lib-2.000014.tar.gz; - sha256 = "ae63356ab780c5a3aa46287b48daea748a3dd021d9b52dff8bf480b43787fa2b"; + url = "mirror://cpan/authors/id/H/HA/HAARG/${name}.tar.gz"; + sha256 = "05607zxpb0jqvxn0cw064pnwsvbajw7k2pmzlisffadihg11m6ps"; }; meta = { description = "Create and use a local lib/ for perl modules with PERL5LIB"; @@ -6875,15 +6899,16 @@ let self = _self // overrides; _self = with self; { }; }; - ModuleImplementation = buildPerlPackage { - name = "Module-Implementation-0.07"; + ModuleImplementation = let version = "0.09"; in buildPerlPackage { + name = "Module-Implementation-${version}"; src = fetchurl { - url = mirror://cpan/authors/id/D/DR/DROLSKY/Module-Implementation-0.07.tar.gz; - sha256 = "15r93l8danysfhb7wn2zww1s02hajki4k3xjfxbpz7ckadqq6jbk"; + url = "mirror://cpan/authors/id/D/DR/DROLSKY/Module-Implementation-${version}.tar.gz"; + sha256 = "0vfngw4dbryihqhi7g9ks360hyw8wnpy3hpkzyg0q4y2y091lpy1"; }; buildInputs = [ TestFatal TestRequires ]; propagatedBuildInputs = [ ModuleRuntime TryTiny ]; meta = { + inherit version; homepage = http://search.cpan.org/perldoc?CPAN::Meta::Spec; description = "Loads one of several alternate underlying implementations for a module"; license = stdenv.lib.licenses.artistic2; @@ -6903,11 +6928,11 @@ let self = _self // overrides; _self = with self; { }; }; - ModuleInstall = buildPerlPackage { - name = "Module-Install-1.14"; + ModuleInstall = let version = "1.16"; in buildPerlPackage { + name = "Module-Install-${version}"; src = fetchurl { - url = mirror://cpan/authors/id/B/BI/BINGOS/Module-Install-1.14.tar.gz; - sha256 = "3f02f0a33603aff2f5cf06d15f74d1a9be65e844ada99e1a9c2102330ffa0d49"; + url = "mirror://cpan/authors/id/E/ET/ETHER/Module-Install-${version}.tar.gz"; + sha256 = "0ph242hmz11wv41yh1g8k9zj1bgzkamg2kgq8hnq4kaz4mj15b5g"; }; buildInputs = [ YAMLTiny ]; propagatedBuildInputs = [ FileRemove ModuleScanDeps YAMLTiny ]; @@ -7036,14 +7061,15 @@ let self = _self // overrides; _self = with self; { }; }; - ModuleScanDeps = buildPerlPackage { - name = "Module-ScanDeps-1.17"; + ModuleScanDeps = let version = "1.20"; in buildPerlPackage { + name = "Module-ScanDeps-${version}"; src = fetchurl { - url = mirror://cpan/authors/id/R/RS/RSCHUPP/Module-ScanDeps-1.17.tar.gz; - sha256 = "1b2999344919826476c59e08e65e4877121b4da1e847c9f354841df688927dd2"; + url = "mirror://cpan/authors/id/R/RS/RSCHUPP/Module-ScanDeps-${version}.tar.gz"; + sha256 = "14a623b3gzr0mq5n93lrxm6wjmdp8dwj91gb43wk7f3dwd3ka03j"; }; buildInputs = [ TestRequires ]; meta = { + inherit version; description = "Recursively scan Perl code for dependencies"; license = "perl"; }; @@ -7918,13 +7944,13 @@ let self = _self // overrides; _self = with self; { doCheck = false; # Test performs network access. }; - namespaceautoclean = buildPerlPackage { - name = "namespace-autoclean-0.20"; + namespaceautoclean = buildPerlPackage rec { + name = "namespace-autoclean-0.27"; src = fetchurl { - url = mirror://cpan/authors/id/E/ET/ETHER/namespace-autoclean-0.20.tar.gz; - sha256 = "42a199314d07b7a29044d6072529ca53037c75a43550193b1586bd19c690a05f"; + url = "mirror://cpan/authors/id/E/ET/ETHER/${name}.tar.gz"; + sha256 = "1m5p76hz2r6mysx6afs5xpjp9yqnbq1q1bv5zkyn3g979l4a3vbc"; }; - buildInputs = [ ModuleBuildTiny TestRequires ]; + buildInputs = [ ModuleBuildTiny TestRequires Moose ]; propagatedBuildInputs = [ BHooksEndOfScope SubIdentify namespaceclean ]; meta = { homepage = https://github.com/moose/namespace-autoclean; @@ -8269,10 +8295,10 @@ let self = _self // overrides; _self = with self; { }; NetSSLeay = buildPerlPackage rec { - name = "Net-SSLeay-1.58"; + name = "Net-SSLeay-1.72"; src = fetchurl { url = "mirror://cpan/authors/id/M/MI/MIKEM/${name}.tar.gz"; - sha256 = "0mizg2g07fa4c13zpnhmjc87psal5gp5hi23kqpynigmkp0m1p0b"; + sha256 = "1x6jjmhvsdq488k6wdg58ajnr4dmbcbk7imyv0aybkhj1ygw7ahv"; }; buildInputs = [ pkgs.openssl ]; OPENSSL_PREFIX = pkgs.openssl; @@ -8715,18 +8741,18 @@ let self = _self // overrides; _self = with self; { }; PerlOSType = buildPerlPackage rec { - name = "Perl-OSType-1.007"; + name = "Perl-OSType-1.009"; src = fetchurl { url = "mirror://cpan/authors/id/D/DA/DAGOLDEN/${name}.tar.gz"; - sha256 = "0aryn8dracfjfnks07b5rvsza4csinlsj6cn92jv3sv8sg3rmdxk"; + sha256 = "01mfvh6x9mgfnwb31bmaw0jkqkxbl8gn50mwqgjwajk1yz4z8p14"; }; }; PerlTidy = buildPerlPackage rec { - name = "Perl-Tidy-20130922"; + name = "Perl-Tidy-20150815"; src = fetchurl { url = "mirror://cpan/authors/id/S/SH/SHANCOCK/${name}.tar.gz"; - sha256 = "0qmp6308917lsvms5dbihdj85cnkhy821azc5i6q3p3703qdd375"; + sha256 = "1mzb2df3bhxcgm7i9vx29bz5581cr8bbfrmajjrzla04djg9v5ha"; }; }; @@ -9050,11 +9076,11 @@ let self = _self // overrides; _self = with self; { }; }; - PodEscapes = buildPerlPackage { - name = "Pod-Escapes-1.06"; + PodEscapes = let version = "1.07"; in buildPerlPackage { + name = "Pod-Escapes-${version}"; src = fetchurl { - url = mirror://cpan/authors/id/N/NE/NEILB/Pod-Escapes-1.06.tar.gz; - sha256 = "15dpzlgc2ywyxk2svc810nmyx6pm1nj8cji7a0rqr9x6m0v11xdm"; + url = "mirror://cpan/authors/id/N/NE/NEILB/Pod-Escapes-${version}.tar.gz"; + sha256 = "0213lmbbw3vy50ahlp2lqmmnkwhrizyl1y87i4jgnla9k0kwixyv"; }; }; @@ -9689,16 +9715,17 @@ let self = _self // overrides; _self = with self; { }; }; - Starman = buildPerlModule { - name = "Starman-0.4010"; + Starman = let version = "0.4014"; in buildPerlModule { + name = "Starman-${version}"; src = fetchurl { - url = mirror://cpan/authors/id/M/MI/MIYAGAWA/Starman-0.4010.tar.gz; - sha256 = "abe8e2e0519b7326d64db1e93d9c32d853a7be083792d0d7e5f5a1ddf1472d42"; + url = "mirror://cpan/authors/id/M/MI/MIYAGAWA/Starman-${version}.tar.gz"; + sha256 = "1sbb5rb3vs82rlh1fjkgkcmj5pj62b4y9si4ihh45sl9m8c2qxx5"; }; buildInputs = [ LWP ModuleBuildTiny TestRequires ]; propagatedBuildInputs = [ DataDump HTTPDate HTTPMessage HTTPParserXS NetServer Plack TestTCP ]; doCheck = false; # binds to various TCP ports meta = { + inherit version; homepage = https://github.com/miyagawa/Starman; description = "High-performance preforking PSGI/Plack web server"; license = "perl"; @@ -9773,11 +9800,11 @@ let self = _self // overrides; _self = with self; { }; }; - strictures = buildPerlPackage { - name = "strictures-1.005004"; + strictures = buildPerlPackage rec { + name = "strictures-2.000001"; src = fetchurl { - url = mirror://cpan/authors/id/H/HA/HAARG/strictures-1.005004.tar.gz; - sha256 = "0y9q0v68060x5r3wfprwnjry6si7x9x5rkqz7nrf8fkxng7ndw5v"; + url = "mirror://cpan/authors/id/H/HA/HAARG/${name}.tar.gz"; + sha256 = "1lr0br982xb49wxra5ywq9vk4jhjmq28670i8yscks1wss58lwqy"; }; meta = { homepage = http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/strictures.git; @@ -9940,13 +9967,14 @@ let self = _self // overrides; _self = with self; { }; }; - StringUtil = buildPerlPackage { - name = "String-Util-1.21"; + StringUtil = let version = "1.24"; in buildPerlPackage { + name = "String-Util-${version}"; src = fetchurl { - url = mirror://cpan/authors/id/M/MI/MIKO/String-Util-1.21.tar.gz; - sha256 = "1ndvm9pbngf1j0fm02ghl4nfcqi5404sxdlm42g3ismf1ms1fnxa"; + url = "mirror://cpan/authors/id/M/MI/MIKO/String-Util-${version}.tar.gz"; + sha256 = "16c7dbpz87ywq49lnsaml0k28jbkraf1p2njh72jc5xcxys7vykv"; }; meta = { + inherit version; description = "String::Util -- String processing utilities"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; }; @@ -10006,14 +10034,15 @@ let self = _self // overrides; _self = with self; { }; }; - SubExporterUtil = buildPerlPackage { - name = "Sub-Exporter-Util-0.984"; + SubExporterUtil = let version = "0.987"; in buildPerlPackage { + name = "Sub-Exporter-Util-${version}"; src = fetchurl { - url = mirror://cpan/authors/id/R/RJ/RJBS/Sub-Exporter-0.984.tar.gz; - sha256 = "190qly7nv7zf17c1v0gnqhyf25p6whhh2m132mh4xzs5mqadwq0f"; + url = "mirror://cpan/authors/id/R/RJ/RJBS/Sub-Exporter-${version}.tar.gz"; + sha256 = "1ml3n1ck4ln9qjm2mcgkczj1jb5n1fkscz9c4x23v4db0glb4g2l"; }; propagatedBuildInputs = [ DataOptList ParamsUtil SubInstall ]; meta = { + inherit version; homepage = https://github.com/rjbs/sub-exporter; description = "A sophisticated exporter for custom-built routines"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; @@ -10357,13 +10386,14 @@ let self = _self // overrides; _self = with self; { }; }; - TermCap = buildPerlPackage { - name = "Term-Cap-1.16"; + TermCap = let version = "1.17"; in buildPerlPackage { + name = "Term-Cap-${version}"; src = fetchurl { - url = mirror://cpan/authors/id/J/JS/JSTOWE/Term-Cap-1.16.tar.gz; - sha256 = "b99728ac19b740b43e6a8d3c749c336f4a5d59ffd684c42c222681ee924e4a20"; + url = "mirror://cpan/authors/id/J/JS/JSTOWE/Term-Cap-${version}.tar.gz"; + sha256 = "0qyicyk4aikw6w3fm8c4y6hd7ff70crkl6bf64qmiakbgxy9p6p7"; }; meta = { + inherit version; description = "Perl termcap interface"; license = "perl"; }; @@ -10966,11 +10996,11 @@ let self = _self // overrides; _self = with self; { propagatedBuildInputs = [ PerlCritic ]; }; - TestPod = buildPerlPackage { - name = "Test-Pod-1.48"; + TestPod = buildPerlPackage rec { + name = "Test-Pod-1.51"; src = fetchurl { - url = mirror://cpan/authors/id/D/DW/DWHEELER/Test-Pod-1.48.tar.gz; - sha256 = "1hmwwhabyng4jrnll926b4ab73r40w3pfchlrvs0yx6kh6kwwy14"; + url = "mirror://cpan/authors/id/E/ET/ETHER/${name}.tar.gz"; + sha256 = "1yvy5mc4j3s2h4aizryvark2nm58g2c6zhw9mlx9wmsavz7d78f1"; }; meta = { homepage = http://search.cpan.org/dist/Test-Pod/; @@ -11015,11 +11045,11 @@ let self = _self // overrides; _self = with self; { }; }; - TestRequires = buildPerlPackage { - name = "Test-Requires-0.06"; + TestRequires = buildPerlPackage rec { + name = "Test-Requires-0.10"; src = fetchurl { - url = mirror://cpan/authors/id/T/TO/TOKUHIROM/Test-Requires-0.06.tar.gz; - sha256 = "1ksyg4npzx5faf2sj80rm74qjra4q679750vfqfvw3kg1d69wvwv"; + url = "mirror://cpan/authors/id/T/TO/TOKUHIROM/${name}.tar.gz"; + sha256 = "1d9f481lj12cw1ciil46xq9nq16p6a90nm7yrsalpf8asn8s6s17"; }; meta = { description = "Checks to see if the module can be loaded"; @@ -11067,11 +11097,11 @@ let self = _self // overrides; _self = with self; { propagatedBuildInputs = [ ProbePerl IPCRun3 ]; }; - TestSharedFork = buildPerlPackage { - name = "Test-SharedFork-0.29"; + TestSharedFork = buildPerlPackage rec { + name = "Test-SharedFork-0.34"; src = fetchurl { - url = mirror://cpan/authors/id/E/EX/EXODIST/Test-SharedFork-0.29.tar.gz; - sha256 = "63af7788cc35b9b7e6fa37c61220ca66abd6364d8bb90c20038e3d8241988a6e"; + url = "mirror://cpan/authors/id/E/EX/EXODIST/${name}.tar.gz"; + sha256 = "1yq4xzify3wqdc07zq33lwgh9gywp3qd8w6wzwrllbjw0hhkm4s8"; }; buildInputs = [ TestRequires ]; meta = { @@ -11083,11 +11113,11 @@ let self = _self // overrides; _self = with self; { TestSimple = null; - TestSpec = buildPerlPackage { - name = "Test-Spec-0.47"; + TestSpec = buildPerlPackage rec { + name = "Test-Spec-0.51"; src = fetchurl { - url = mirror://cpan/authors/id/P/PH/PHILIP/Test-Spec-0.47.tar.gz; - sha256 = "e425c0b9efa3c7e21496d31a607d072a63e31988c3d298a8c1fd7d145cc0681e"; + url = "mirror://cpan/authors/id/A/AN/ANDYJONES/${name}.tar.gz"; + sha256 = "0n2pzc32q4fr1b9w292ld9gh3yn3saxib3hxrjx6jvcmy3k9jkbi"; }; propagatedBuildInputs = [ PackageStash TestDeep TestTrap TieIxHash ]; meta = { @@ -11105,11 +11135,11 @@ let self = _self // overrides; _self = with self; { propagatedBuildInputs = [ HookLexWrap ]; }; - TestSynopsis = buildPerlPackage { - name = "Test-Synopsis-0.10"; + TestSynopsis = buildPerlPackage rec { + name = "Test-Synopsis-0.11"; src = fetchurl { - url = mirror://cpan/authors/id/Z/ZO/ZOFFIX/Test-Synopsis-0.10.tar.gz; - sha256 = "0gbk4d2vwlldsj5shmbdar3a29vgrw84ldsvm26mflkr5ji34adv"; + url = "mirror://cpan/authors/id/Z/ZO/ZOFFIX/${name}.tar.gz"; + sha256 = "1jn3vna5r5fa9nv33n1x0bmgc434sk0ggar3jm78xx0zzy5jnsxv"; }; meta = { description = "Test your SYNOPSIS code"; @@ -11131,11 +11161,11 @@ let self = _self // overrides; _self = with self; { }; }; - TestTCP = buildPerlPackage { - name = "Test-TCP-1.18"; + TestTCP = buildPerlPackage rec { + name = "Test-TCP-2.14"; src = fetchurl { - url = mirror://cpan/authors/id/T/TO/TOKUHIROM/Test-TCP-1.18.tar.gz; - sha256 = "0flm7x0z7amppi9y6s8mxm0pkrgfihfpfjs0w4i6s80jiss1gfld"; + url = "mirror://cpan/authors/id/T/TO/TOKUHIROM/${name}.tar.gz"; + sha256 = "00bxgm7qva4fd25phwl8fvv36h8h5k3jk89hz9302a288wv3ysmr"; }; propagatedBuildInputs = [ TestSharedFork ]; meta = { @@ -11193,13 +11223,13 @@ let self = _self // overrides; _self = with self; { }; }; - TestWarnings = buildPerlPackage { - name = "Test-Warnings-0.016"; + TestWarnings = buildPerlPackage rec { + name = "Test-Warnings-0.021"; src = fetchurl { - url = mirror://cpan/authors/id/E/ET/ETHER/Test-Warnings-0.016.tar.gz; - sha256 = "09ebc9afa29eb4d1d44fbd974dfcd52e0a2d9ce7ec3e3ee7602394157831aba9"; + url = "mirror://cpan/authors/id/E/ET/ETHER/${name}.tar.gz"; + sha256 = "0i1crkhqfl5gs55i5nrvsw3xy946ajgnvp4gqrzvsn1x6cp1i2nr"; }; - buildInputs = [ TestTester if_ ]; + buildInputs = [ TestTester if_ CPANMetaCheck ModuleMetadata ]; meta = { homepage = https://github.com/karenetheridge/Test-Warnings; description = "Test for warnings and the lack of them"; @@ -11290,6 +11320,14 @@ let self = _self // overrides; _self = with self; { }; }; + TestYAML = buildPerlPackage rec { + name = "Test-YAML-1.06"; + src = fetchurl { + url = "mirror://cpan/authors/id/I/IN/INGY/${name}.tar.gz"; + sha256 = "0hxrfs7p9hqkhvv5nhk2hd3kh32smwng4nz47b8xf4iw2q1n2dr7"; + }; + }; + TextAbbrev = buildPerlPackage { name = "Text-Abbrev-1.02"; src = fetchurl { @@ -11314,6 +11352,18 @@ let self = _self // overrides; _self = with self; { }; }; + TextAspell = buildPerlPackage rec { + name = "Text-Aspell-0.09"; + src = fetchurl { + url = "mirror://cpan/authors/id/H/HA/HANK/${name}.tar.gz"; + sha256 = "0r9g31rd55934mp6n45b96g934ck4qns8x9i7qckn9wfy44k5sib"; + }; + propagatedBuildInputs = [ pkgs.aspell ]; + ASPELL_CONF = "dict-dir ${pkgs.aspellDicts.en}/lib/aspell"; + NIX_CFLAGS_COMPILE = "-I${pkgs.aspell}/include"; + NIX_CFLAGS_LINK = "-L${pkgs.aspell}/lib -laspell"; + }; + TextAutoformat = buildPerlPackage { name = "Text-Autoformat-1.72"; src = fetchurl { @@ -11361,6 +11411,14 @@ let self = _self // overrides; _self = with self; { }; }; + TextCharWidth = buildPerlPackage rec { + name = "Text-CharWidth-0.04"; + src = fetchurl { + url = "mirror://cpan/authors/id/K/KU/KUBOTA/${name}.tar.gz"; + sha256 = "abded5f4fdd9338e89fd2f1d8271c44989dae5bf50aece41b6179d8e230704f8"; + }; + }; + TextCSV = buildPerlPackage rec { name = "Text-CSV-1.33"; src = fetchurl { @@ -11582,10 +11640,10 @@ let self = _self // overrides; _self = with self; { }; }; - TestTrap = buildPerlPackage { - name = "Test-Trap-0.2.2"; + TestTrap = buildPerlPackage rec { + name = "Test-Trap-0.3.2"; src = fetchurl { - url = mirror://cpan/authors/id/E/EB/EBHANSSEN/Test-Trap-v0.2.2.tar.gz; + url = "mirror://cpan/authors/id/E/EB/EBHANSSEN/${name}.tar.gz"; sha256 = "1ci5ag9pm850ww55n2929skvw3avy6xcrwmmi2yyn0hifxx9dybs"; }; buildInputs = [ TestTester ]; @@ -11612,11 +11670,11 @@ let self = _self // overrides; _self = with self; { }; }; - TestVersion = buildPerlPackage { - name = "Test-Version-1.002004"; + TestVersion = buildPerlPackage rec { + name = "Test-Version-2.03"; src = fetchurl { - url = mirror://cpan/authors/id/X/XE/XENO/Test-Version-1.002004.tar.gz; - sha256 = "1lvg1p6i159ssk5br5qb3gvrzdg59wchd97z7j44arnlkhfvwhgv"; + url = "mirror://cpan/authors/id/P/PL/PLICEASE/${name}.tar.gz"; + sha256 = "02nbi7iqab1b0ngkiim9kbvnnr9bhi17bq54vm8hn9ridzgbj1vj"; }; buildInputs = [ TestException TestRequires TestTester ]; propagatedBuildInputs = [ FileFindRulePerl ]; @@ -11687,11 +11745,11 @@ let self = _self // overrides; _self = with self; { }; }; - threads = buildPerlPackage { - name = "threads-2.01"; + threads = buildPerlPackage rec { + name = "threads-2.02"; src = fetchurl { - url = mirror://cpan/authors/id/J/JD/JDHEDDEN/threads-2.01.tar.gz; - sha256 = "429fea88757e0a347dac2cf9e414dfe8f06c8ca3c5445f6da4a95c2f883b6399"; + url = "mirror://cpan/authors/id/J/JD/JDHEDDEN/${name}.tar.gz"; + sha256 = "0vij8lagq4x6gv88x9gg23jd7i0s5fyyzs2wrxacih2ppj6kkiff"; }; meta = { description = "Perl interpreter-based threads"; @@ -11853,7 +11911,7 @@ let self = _self // overrides; _self = with self; { TimeHiRes = buildPerlPackage rec { name = "Time-HiRes-1.9726"; src = fetchurl { - url = "mirror://cpan/modules/by-module/Time/${name}.tar.gz"; + url = "mirror://cpan/authors/id/Z/ZE/ZEFRAM/${name}.tar.gz"; sha256 = "17hhd53p72z08l1riwz5f6rch6hngby1pympkla5miznn7cjlrpz"; }; }; @@ -11888,13 +11946,13 @@ let self = _self // overrides; _self = with self; { }; }; - TreeDAGNode = buildPerlPackage { - name = "Tree-DAG_Node-1.09"; + TreeDAGNode = buildPerlPackage rec { + name = "Tree-DAG_Node-1.27"; src = fetchurl { - url = mirror://cpan/authors/id/R/RS/RSAVAGE/Tree-DAG_Node-1.09.tgz; - sha256 = "1k2byyk7dnm8l6i1igagpfr58b02zsq5hwd9jcdp8yrlih7dzii3"; + url = "mirror://cpan/authors/id/R/RS/RSAVAGE/${name}.tgz"; + sha256 = "1i2i445gh7720bvv06dz67szk2z6q1pi30kb5p2shsa806sj4vr2"; }; - buildInputs = [ TestPod ]; + buildInputs = [ TestPod FileSlurpTiny ]; meta = { homepage = http://search.cpan.org/perldoc?CPAN::Meta::Spec; description = "An N-ary tree"; @@ -11902,13 +11960,13 @@ let self = _self // overrides; _self = with self; { }; }; - TreeSimple = buildPerlPackage { - name = "Tree-Simple-1.18"; + TreeSimple = buildPerlPackage rec { + name = "Tree-Simple-1.25"; src = fetchurl { - url = mirror://cpan/authors/id/S/ST/STEVAN/Tree-Simple-1.18.tar.gz; - sha256 = "0bb2hc8q5rwvz8a9n6f49kzx992cxczmrvq82d71757v087dzg6g"; + url = "mirror://cpan/authors/id/R/RS/RSAVAGE/${name}.tgz"; + sha256 = "1xj1n70v4qbx7m9k01bj9aixk77yssliavgvfds3xj755hcan0nr"; }; - buildInputs = [ TestException ]; + buildInputs = [ TestException TestMemoryCycle ]; meta = { description = "A simple tree object"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; @@ -12002,11 +12060,11 @@ let self = _self // overrides; _self = with self; { }; }; - UnicodeCollate = buildPerlPackage { - name = "Unicode-Collate-1.04"; + UnicodeCollate = buildPerlPackage rec { + name = "Unicode-Collate-1.14"; src = fetchurl { - url = mirror://cpan/authors/id/S/SA/SADAHIRO/Unicode-Collate-1.04.tar.gz; - sha256 = "4e3a2300b961d3aaf3789cdbfb95601edaaffb4109ed6cdb912a664d5c7bd706"; + url = "mirror://cpan/authors/id/S/SA/SADAHIRO/${name}.tar.gz"; + sha256 = "0ykncvhnwy8ync01ibv0524m0si9ya1ch2v8vx61s778nnrmp2k2"; }; meta = { description = "Unicode Collation Algorithm"; @@ -12030,11 +12088,11 @@ let self = _self // overrides; _self = with self; { buildInputs = [ pkgs.icu ]; }; - UnicodeLineBreak = buildPerlPackage { - name = "Unicode-LineBreak-2013.11"; + UnicodeLineBreak = buildPerlPackage rec { + name = "Unicode-LineBreak-2015.07.16"; src = fetchurl { - url = mirror://cpan/authors/id/N/NE/NEZUMI/Unicode-LineBreak-2013.11.tar.gz; - sha256 = "8946b883ae687ff652e93d6185e23a936c7f337f2e115851fdfed72e1f73c7f9"; + url = "mirror://cpan/authors/id/N/NE/NEZUMI/${name}.tar.gz"; + sha256 = "0fycsfc3jhnalad7zvx47f13dpxihdh9c8fy8w7psjlyd5svs6sb"; }; propagatedBuildInputs = [ MIMECharset ]; meta = { @@ -12160,18 +12218,18 @@ let self = _self // overrides; _self = with self; { }; VariableMagic = buildPerlPackage rec { - name = "Variable-Magic-0.53"; + name = "Variable-Magic-0.58"; src = fetchurl { url = "mirror://cpan/modules/by-module/Variable/${name}.tar.gz"; - sha256 = "1mxygb7q8n01klpzdmf8mvbm1i5zhazcm48yiw6dz0xk2fwrgz8q"; + sha256 = "1yhh3zbawx68sw93xrnvfnqq5pb2pmbk20rckqxbwkq1n8c6lv83"; }; }; version = buildPerlPackage rec { - name = "version-0.9908"; + name = "version-0.9912"; src = fetchurl { url = "mirror://cpan/authors/id/J/JP/JPEACOCK/${name}.tar.gz"; - sha256 = "0nq84i1isk01ikwjxxynqyzz4g4g6hcbjq8l426n0hr42znlfmn4"; + sha256 = "03hv7slgqrmzbbjjmxgvq91bjlbjg5xbp8n4h454amyab2adzw7b"; }; }; @@ -12275,10 +12333,10 @@ let self = _self // overrides; _self = with self; { }; Wx = buildPerlPackage rec { - name = "Wx-0.9923"; + name = "Wx-0.9927"; src = fetchurl { url = "mirror://cpan/authors/id/M/MD/MDOOTSON/${name}.tar.gz"; - sha256 = "1ja2fkz0xabafyc6gnp3nnwsbkkjsf44kq9x5zz6cb5fsp3p9sck"; + sha256 = "1fr23nn5cvzydl8nxfv0iljn10pvwbny0nvpjx31fn2md8dvsx51"; }; propagatedBuildInputs = [ ExtUtilsXSpp AlienWxWidgets ]; # Testing requires an X server: @@ -12333,10 +12391,10 @@ let self = _self // overrides; _self = with self; { }; X11XCB = buildPerlPackage rec { - name = "X11-XCB-0.12"; + name = "X11-XCB-0.14"; src = fetchurl { url = "mirror://cpan/authors/id/M/MS/MSTPLBG/${name}.tar.gz"; - sha256 = "15jq55qcc27s5bn925pwry0vx2f4d42rlyz2hlfglnn2qnhsp37s"; + sha256 = "11ff0a4nqbdj68mxdvyqdqvi573ha10vy67wpi7mklpxvlm011bn"; }; AUTOMATED_TESTING = false; buildInputs = [ @@ -12367,11 +12425,11 @@ let self = _self // overrides; _self = with self; { }; }; - XMLDOM = buildPerlPackage { - name = "XML-DOM-1.44"; + XMLDOM = buildPerlPackage rec { + name = "XML-DOM-1.45"; src = fetchurl { - url = mirror://cpan/authors/id/T/TJ/TJMATHER/XML-DOM-1.44.tar.gz; - sha256 = "1r0ampc88ni3sjpzr583k86076qg399arfm9xirv3cw49k3k5bzn"; + url = "mirror://cpan/authors/id/T/TJ/TJMATHER/${name}.tar.gz"; + sha256 = "1jvqfi0jm8wh80rd5h9c3k72car8l7x1jywj8rck8w6rm1mlxldy"; }; propagatedBuildInputs = [XMLRegExp XMLParser LWP libxml_perl]; }; @@ -12395,10 +12453,10 @@ let self = _self // overrides; _self = with self; { }; XMLLibXML = buildPerlPackage rec { - name = "XML-LibXML-2.0121"; + name = "XML-LibXML-2.0122"; src = fetchurl { url = "mirror://cpan/authors/id/S/SH/SHLOMIF/${name}.tar.gz"; - sha256 = "1j8d3kmkdlzvyx3khvrcrvp798h50i6zc5i3zm04d81prc8i0hzc"; + sha256 = "0llgkgifcw7zz7r7f2jiqryi5axymmd3fwzp4aa5gk6j37w66xkn"; }; SKIP_SAX_INSTALL = 1; buildInputs = [ pkgs.libxml2 ]; @@ -12552,11 +12610,11 @@ let self = _self // overrides; _self = with self; { }; }; - XMLTwig = buildPerlPackage { - name = "XML-Twig-3.44"; + XMLTwig = buildPerlPackage rec { + name = "XML-Twig-3.49"; src = fetchurl { - url = mirror://cpan/authors/id/M/MI/MIROD/XML-Twig-3.44.tar.gz; - sha256 = "1fi05ddq4dqpff7xvgsw2rr8p5bah401gmblyb3pvjg225ic2l96"; + url = "mirror://cpan/authors/id/M/MI/MIROD/${name}.tar.gz"; + sha256 = "00af6plljrx2dc0js60975wqp725ka4i3gzs4y6gmzkpfj5fy39y"; }; propagatedBuildInputs = [XMLParser]; doCheck = false; # requires lots of extra packages @@ -12568,6 +12626,7 @@ let self = _self // overrides; _self = with self; { url = mirror://cpan/authors/id/S/SA/SAMTREGAR/XML-Validator-Schema-1.10.tar.gz; sha256 = "6142679580150a891f7d32232b5e31e2b4e5e53e8a6fa9cbeecb5c23814f1422"; }; + buildInputs = [ FileSlurpTiny ]; propagatedBuildInputs = [ TreeDAGNode XMLFilterBufferText XMLSAX ]; meta = { description = "Validate XML against a subset of W3C XML Schema"; @@ -12608,12 +12667,15 @@ let self = _self // overrides; _self = with self; { }; }; - YAML = buildPerlPackage { - name = "YAML-0.90"; + YAML = buildPerlPackage rec { + name = "YAML-1.15"; src = fetchurl { - url = mirror://cpan/authors/id/I/IN/INGY/YAML-0.90.tar.gz; - sha256 = "0kfsmhv1lmqw2g1038azpxkfb91valwkh4i4gfjvqrj2wsr2hzhq"; + url = "mirror://cpan/authors/id/I/IN/INGY/${name}.tar.gz"; + sha256 = "06wx1pzc2sb7vidlp17g1x11rrz57ch8q68gjj8fbgd75wr9bx40"; }; + + buildInputs = [ TestBase TestYAML ]; + meta = { homepage = https://github.com/ingydotnet/yaml-pm/tree; description = "YAML Ain't Markup Language (tm)"; @@ -12621,11 +12683,11 @@ let self = _self // overrides; _self = with self; { }; }; - YAMLSyck = buildPerlPackage { - name = "YAML-Syck-1.27"; + YAMLSyck = buildPerlPackage rec { + name = "YAML-Syck-1.29"; src = fetchurl { - url = mirror://cpan/authors/id/T/TO/TODDR/YAML-Syck-1.27.tar.gz; - sha256 = "1y9dw18fz3s8v4n80wf858cjq4jlaza25wvsgv60a6z2l0sfax6y"; + url = "mirror://cpan/authors/id/T/TO/TODDR/${name}.tar.gz"; + sha256 = "0ff9rzb1gg12iiizjqv6bsxdxk39g3f6sa18znha4476acv7nmnk"; }; meta = { homepage = http://search.cpan.org/dist/YAML-Syck; @@ -12635,18 +12697,18 @@ let self = _self // overrides; _self = with self; { }; YAMLTiny = buildPerlPackage rec { - name = "YAML-Tiny-1.53"; + name = "YAML-Tiny-1.69"; src = fetchurl { url = "mirror://cpan/authors/id/E/ET/ETHER/${name}.tar.gz"; - sha256 = "14p93i60x394ba6sdwpnckmv2vq7pfi9q7rzksp3nkxsz4484qmm"; + sha256 = "14pmhksj68ii3rf4dza8im1i6jw3zafxkvxww5xlz7ib95cv135w"; }; }; YAMLLibYAML = buildPerlPackage rec { - name = "YAML-LibYAML-0.52"; + name = "YAML-LibYAML-0.59"; src = fetchurl { url = "mirror://cpan/authors/id/I/IN/INGY/${name}.tar.gz"; - sha256 = "14qajsfbi2syjz38iynj8c6qf0rv1zmy71kydzvvg9kcq1ib3h86"; + sha256 = "0m4zr6gm5rzwvxwd2x7rklr659jl8gsa5bxc5h25904nbvpj9x4x"; }; }; diff --git a/pkgs/top-level/php-packages.nix b/pkgs/top-level/php-packages.nix index e9f2d145226..96c4ab06a51 100644 --- a/pkgs/top-level/php-packages.nix +++ b/pkgs/top-level/php-packages.nix @@ -139,4 +139,31 @@ let self = with self; { maintainers = with maintainers; [ globin offline ]; }; }; + + phpcs = pkgs.stdenv.mkDerivation rec { + name = "phpcs-${version}"; + version = "2.3.4"; + + src = pkgs.fetchurl { + url = "https://github.com/squizlabs/PHP_CodeSniffer/releases/download/${version}/phpcs.phar"; + sha256 = "ce11e02fba30a35a80b691b05be20415eb8b5dea585a4e6646803342b86abb8c"; + }; + + phases = [ "installPhase" ]; + buildInputs = [ pkgs.makeWrapper ]; + + installPhase = '' + mkdir -p $out/bin + install -D $src $out/libexec/phpcs/phpcs.phar + makeWrapper ${php}/bin/php $out/bin/phpcs \ + --add-flags "$out/libexec/phpcs/phpcs.phar" + ''; + + meta = with pkgs.lib; { + description = "PHP coding standard tool"; + license = licenses.bsd3; + homepage = https://squizlabs.github.io/PHP_CodeSniffer/; + maintainers = with maintainers; [ javaguirre ]; + }; + }; }; in self diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 41f5d592589..d7bedaec8d4 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1080,10 +1080,10 @@ let }; buttersink = buildPythonPackage rec { - name = "buttersink-0.6.6"; + name = "buttersink-0.6.7"; src = pkgs.fetchurl { - sha256 = "1vi0pz8r3d17bsn5g7clkyph7sc0rjzbzqk6rwglaxcah7sfj2mj"; + sha256 = "1azd0g0p9qk9wp344jmvqp4wk5f3wpsz3lb750xvnmd7qzf6v377"; url = "https://pypi.python.org/packages/source/b/buttersink/${name}.tar.gz"; }; @@ -2288,11 +2288,11 @@ let cython = buildPythonPackage rec { name = "Cython-${version}"; - version = "0.23.1"; + version = "0.23.3"; src = pkgs.fetchurl { url = "http://www.cython.org/release/${name}.tar.gz"; - sha256 = "12h1g21xmp2jk8j3sw2i73ffxgfafakza6mw3fd4pqx2lbb15zdx"; + sha256 = "590274ac8dbd1e62cc79d94eb2e2f4ae60cea91a9f8d50b8697d39aba451e82e"; }; setupPyBuildFlags = ["--build-base=$out"]; @@ -2789,11 +2789,11 @@ let datashape = buildPythonPackage rec { name = "datashape-${version}"; - version = "0.4.6"; + version = "0.4.7"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/D/DataShape/${name}.tar.gz"; - sha256 = "0caa86a4347f1b0c45f3890d78d0b89662189c7dd6df3a8e5ff3532ae8bc434f"; + sha256 = "14b2ef766d4c9652ab813182e866f493475e65e558bed0822e38bf07bba1a278"; }; propagatedBuildInputs = with self; [ numpy multipledispatch dateutil ]; @@ -3322,12 +3322,13 @@ let dropbox = buildPythonPackage rec { - name = "dropbox-2.2.0"; + name = "dropbox-${version}"; + version = "3.37"; doCheck = false; # python 2.7.9 does verify ssl certificates src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/dropbox/${name}.zip"; - sha256 = "069jrwb67brqh0sics8fgqdf2mv5y5jl9k5729x8vf80pq2c9p36"; + url = "https://pypi.python.org/packages/source/d/dropbox/${name}.tar.gz"; + sha256 = "f65c12bd97f09e29a951bc7cb30a74e005fc4b2f8bb48778796be3f73866b173"; }; propagatedBuildInputs = with self; [ urllib3 mock setuptools ]; @@ -6564,9 +6565,9 @@ let }; patchPhase = '' - pushd libev - patch -p1 < ${../development/libraries/libev/noreturn.patch} - popd + substituteInPlace libev/ev.c --replace \ + "ecb_inline void ecb_unreachable (void) ecb_noreturn" \ + "ecb_inline ecb_noreturn void ecb_unreachable (void)" ''; buildInputs = with self; [ pkgs.libev ]; @@ -6734,12 +6735,12 @@ let }; goobook = buildPythonPackage rec { - name = "goobook-1.6"; + name = "goobook-1.9"; disabled = isPy3k; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/g/goobook/${name}.tar.gz"; - sha256 = "05vpriy391l5i05ckl5ja5bswqyvl3rwrbmks9pi46w1813j7p5z"; + sha256 = "02xmq8sjavza17av44ks510934wrshxnsm6lvhvazs45s92b671i"; }; buildInputs = with self; [ ]; @@ -6756,7 +6757,7 @@ let platforms = platforms.unix; }; - propagatedBuildInputs = with self; [ gdata hcs_utils keyring simplejson six]; + propagatedBuildInputs = with self; [ oauth2client gdata simplejson httplib2 keyring six rsa ]; }; google_api_python_client = buildPythonPackage rec { @@ -7054,11 +7055,11 @@ let }; httplib2 = buildPythonPackage rec { - name = "httplib2-0.9"; + name = "httplib2-0.9.1"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/h/httplib2/${name}.tar.gz"; - sha256 = "1asi5wpncnc6ki3bz33mhb9xh2lrkb24y4qng8bmqnczdmm8rsir"; + sha256 = "1xc3clbrf77r0600kja71j7hk1218sjiq0gfmb8vjdajka8kjqxw"; }; meta = { @@ -7357,7 +7358,7 @@ let buildInputs = with self; [nose] ++ optionals isPy27 [mock]; - propagatedBuildInputs = with self; [decorator pickleshare simplegeneric traitlets requests pexpect sqlite3]; + propagatedBuildInputs = with self; [decorator pickleshare simplegeneric traitlets readline requests pexpect sqlite3]; meta = { description = "IPython: Productive Interactive Computing"; @@ -7384,6 +7385,25 @@ let }; + ipywidgets = buildPythonPackage rec { + version = "4.0.2"; + name = "ipywidgets-${version}"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/i/ipywidgets/${name}.tar.gz"; + sha256 = "1afwddaslf62ba75679s059z36zfamcx454q2lgd97xqsp30hqmf"; + }; + + propagatedBuildInputs = with self; [ipython ipykernel traitlets notebook]; + + meta = { + description = "IPython HTML widgets for Jupyter"; + homepage = http://ipython.org/; + license = licenses.bsd3; + maintainers = with maintainers; [ fridh ]; + }; + }; + ipaddr = buildPythonPackage rec { name = "ipaddr-2.1.10"; disabled = isPy3k; @@ -7416,13 +7436,15 @@ let }; ipdb = buildPythonPackage rec { - name = "ipdb-0.8"; + name = "ipdb-${version}"; + version = "0.8.1"; + disabled = isPyPy; # setupterm: could not find terminfo database src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/i/ipdb/${name}.zip"; - md5 = "96dca0712efa01aa5eaf6b22071dd3ed"; + sha256 = "1763d1564113f5eb89df77879a8d3213273c4d7ff93dcb37a3070cdf0c34fd7c"; }; - propagatedBuildInputs = with self; [ self.ipython ]; + propagatedBuildInputs = with self; [ ipython ]; }; ipdbplugin = buildPythonPackage { @@ -7614,12 +7636,12 @@ let }; jupyter_core = buildPythonPackage rec { - version = "4.0.4"; + version = "4.0.6"; name = "jupyter_core-${version}"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/j/jupyter_core/${name}.tar.gz"; - sha256 = "fcf45478025f34174943993947f51a41ad871ac998a14bf1cb87d8eb61e75c6d"; + sha256 = "96a68a3b1d018ff7776270b26b7cb0cfd7a18a53ef2061421daff435707d198c"; }; propagatedBuildInputs = with self; [traitlets]; @@ -8140,6 +8162,8 @@ let sha256 = "1hyrxnhxw35vn00k55hp9bkg8vg4dsphrpfg1yg4cn53y78rk1im"; }; + disabled = isPy3k; + patches = [ ../development/python-modules/mathics/disable_console_tests.patch ]; buildInputs = with self; [ pexpect ]; @@ -8930,12 +8954,12 @@ let }; nbformat = buildPythonPackage rec { - version = "4.0.0"; + version = "4.0.1"; name = "nbformat-${version}"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/n/nbformat/${name}.tar.gz"; - sha256 = "daf9b990e96863d120aff123361156a316757757b81a8070eb6945e4a9774b2d"; + sha256 = "5261c957589b9dfcd387c338d59375162ba9ca82c69e378961a1f4e641285db5"; }; propagatedBuildInputs = with self; [ipython_genutils traitlets jsonschema jupyter_core]; @@ -9278,12 +9302,12 @@ let }; notebook = buildPythonPackage rec { - version = "4.0.4"; + version = "4.0.5"; name = "notebook-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/n/notebook/${name}.tar.gz"; - sha256 = "a57852514bce1b1cf41fa0311f6cf894960cf68b083b55e6c408316b598d5648"; + url = "https://pypi.python.org/packages/source/n/notebook/${name}.tgz"; + sha256 = "5ac716940cfd7612369ee177c0d7fc0eb888335b76dfcea17513cb5d5b4056a8"; }; buildInputs = with self; [nose] ++ optionals isPy27 [mock]; @@ -9578,11 +9602,11 @@ let }); oauth2client = pythonPackages.buildPythonPackage rec { - name = "oauth2client-1.4.7"; + name = "oauth2client-1.4.12"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/o/oauth2client/oauth2client-1.4.7.tar.gz"; - md5 = "62747643d5af57e57b09e176eda1c1dd"; + url = "https://pypi.python.org/packages/source/o/oauth2client/${name}.tar.gz"; + sha256 = "0phfk6s8bgpap5xihdk1xv2lakdk1pb3rg6hp2wsg94hxcxnrakl"; }; propagatedBuildInputs = with pythonPackages; [ httplib2 pyasn1 pyasn1-modules rsa ]; @@ -10369,6 +10393,26 @@ let propagatedBuildInputs = with self; [ unittest2 ]; }; + pylibconfig2 = buildPythonPackage rec { + name = "pylibconfig2-${version}"; + version = "0.2.4"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/p/pylibconfig2/${name}.tar.gz"; + sha256 = "0kyg6gldj6hi2jhc5xhi834bb2mcaiy24dvfik963shnldqr7kqg"; + }; + + doCheck = false; + + propagatedBuildInputs = with self ; [ pyparsing ]; + + meta = { + homepage = https://github.com/heinzK1X/pylibconfig2; + description = "Pure python library for libconfig syntax"; + license = licenses.gpl3; + }; + }; + pysftp = buildPythonPackage rec { name = "pysftp-${version}"; version = "0.2.8"; @@ -13237,11 +13281,11 @@ let }; rsa = buildPythonPackage rec { - name = "rsa-3.1.2"; + name = "rsa-3.1.4"; src = pkgs.fetchurl { - url = "https://bitbucket.org/sybren/python-rsa/get/version-3.1.2.tar.bz2"; - sha256 = "0ag2q4gaapi74x47q74xhcjzs4b7r2bb6zrj2an4sz5d3yd06cgf"; + url = "https://pypi.python.org/packages/source/r/rsa/${name}.tar.gz"; + sha256 = "1842ghkkimzf4fi3np4vwbwnsriv4d9malp1sbnv2xn26rcv1c72"; }; buildInputs = with self; [ self.pyasn1 ]; @@ -13821,7 +13865,7 @@ let sympy = buildPythonPackage rec { name = "sympy-0.7.6"; - disabled = isPy34 || isPyPy; # some tests fail + disabled = isPy34 || isPy35 || isPyPy; # some tests fail src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/s/sympy/${name}.tar.gz"; @@ -14936,11 +14980,11 @@ let toolz = buildPythonPackage rec{ name = "toolz-${version}"; - version = "0.7.2"; + version = "0.7.4"; src = pkgs.fetchurl{ url = "https://pypi.python.org/packages/source/t/toolz/toolz-${version}.tar.gz"; - md5 = "6f045541a9e7ee755b7b00fced4a7fde"; + sha256 = "43c2c9e5e7a16b6c88ba3088a9bfc82f7db8e13378be7c78d6c14a5f8ed05afd"; }; meta = { @@ -17093,6 +17137,24 @@ let }; + veryprettytable = pythonPackages.buildPythonPackage rec { + name = "veryprettytable-${version}"; + version = "0.8.1"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/v/veryprettytable/${name}.tar.gz"; + sha256 = "1k1rifz8x6qcicmx2is9vgxcj0qb2f5pvzrp7zhmvbmci3yack3f"; + }; + + propagatedBuildInputs = [ self.termcolor self.colorama ]; + + meta = { + description = "A simple Python library for easily displaying tabular data in a visually appealing ASCII table format"; + homepage = https://github.com/smeggingsmegger/VeryPrettyTable; + license = licenses.free; + }; + }; + graphite_web = buildPythonPackage rec { name = "graphite-web-${version}"; version = "0.9.12"; @@ -17320,12 +17382,12 @@ let gdata = buildPythonPackage rec { name = "gdata-${version}"; - version = "2.0.17"; + version = "2.0.18"; src = pkgs.fetchurl { url = "https://gdata-python-client.googlecode.com/files/${name}.tar.gz"; # sha1 = "d2d9f60699611f95dd8c328691a2555e76191c0c"; - sha256 = "0bdaqmicpbj9v3p0swvyrqs7m35bzwdw1gy56d3k09np692jfwmd"; + sha256 = "1dpxl5hwyyqd71avpm5vkvw8fhlvf9liizmhrq9jphhrx0nx5rsn"; }; # Fails with "error: invalid command 'test'" @@ -17917,7 +17979,6 @@ let termcolor = buildPythonPackage rec { name = "termcolor-1.1.0"; - disabled = ! isPy27; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/t/termcolor/termcolor-1.1.0.tar.gz"; @@ -17998,6 +18059,67 @@ let }; }; + ofxclient = buildPythonPackage rec { + name = "ofxclient-1.3.8"; + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/o/ofxclient/${name}.tar.gz"; + md5 = "a632e157f9c98524bf9302a0c6788174"; + }; + + # ImportError: No module named tests + doCheck = false; + + propagatedBuildInputs = with self; [ ofxhome ofxparse beautifulsoup keyring argparse ]; + }; + + ofxhome = buildPythonPackage rec { + name = "ofxhome-0.3.1"; + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/o/ofxhome/${name}.tar.gz"; + md5 = "98e8ef92ccd443ab750fcb0741efe816"; + }; + + buildInputs = with self; [ nose ]; + + # ImportError: No module named tests + doCheck = false; + + meta = { + homepage = "https://github.com/captin411/ofxhome"; + description = "ofxhome.com financial institution lookup REST client"; + license = licenses.mit; + }; + }; + + ofxparse = buildPythonPackage rec { + name = "ofxparse-0.14"; + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/o/ofxparse/${name}.tar.gz"; + md5 = "4ad8a34e008d4893a61eadd593176f0f"; + }; + + propagatedBuildInputs = with self; [ six beautifulsoup4 ]; + + meta = { + homepage = "http://sites.google.com/site/ofxparse"; + description = "Tools for working with the OFX (Open Financial Exchange) file format"; + license = licenses.mit; + }; + }; + + ofxtools = buildPythonPackage rec { + name = "ofxtools-0.3.8"; + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/o/ofxtools/${name}.tar.gz"; + md5 = "4ac3c3f5223816bc2c48dd818fd434d8"; + }; + meta = { + homepage = "https://github.com/csingley/ofxtools"; + description = "Library for working with Open Financial Exchange (OFX) formatted data used by financial institutions"; + license = licenses.mit; + }; + }; + basemap = buildPythonPackage rec { name = "basemap-1.0.7"; disabled = ! isPy27; @@ -18201,12 +18323,12 @@ let }; neovim = buildPythonPackage rec { - version = "0.0.36"; + version = "0.0.38"; name = "neovim-${version}"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/n/neovim/${name}.tar.gz"; - md5 = "8cdad23402e29c7c5a1e85770e976edf"; + md5 = "8b723417d3bf15bab0b245d080d45298"; }; propagatedBuildInputs = with self; [ msgpack ] @@ -18526,4 +18648,144 @@ let }; }; + bepasty-server = buildPythonPackage rec { + name = "bepasty-server-${version}"; + version = "0.4.0"; + propagatedBuildInputs = with self;[ + flask + pygments + xstatic + xstatic-bootbox + xstatic-bootstrap + xstatic-jquery + xstatic-jquery-file-upload + xstatic-jquery-ui + xstatic-pygments + ]; + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/b/bepasty/bepasty-${version}.tar.gz"; + sha256 = "0bs79pgrjlnkmjfyj2hllbx3rw757va5w2g2aghi9cydmsl7gyi4"; + }; + + meta = { + homepage = http://github.com/bepasty/bepasty-server; + description = "binary pastebin server"; + license = licenses.mit; + maintainers = [ maintainers.makefu ]; + }; + }; + + xstatic = buildPythonPackage rec { + name = "XStatic-${version}"; + version = "1.0.1"; + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/X/XStatic/XStatic-${version}.tar.gz"; + sha256 = "09npcsyf1ccygjs0qc8kdsv4qqy8gm1m6iv63g9y1fgbcry3vj8f"; + }; + meta = { + homepage = http://bitbucket.org/thomaswaldmann/xstatic; + description = "base packaged static files for python"; + license = licenses.mit; + maintainers = [ maintainers.makefu ]; + }; + }; + + xstatic-bootbox = buildPythonPackage rec { + name = "XStatic-Bootbox-${version}"; + version = "4.3.0.1"; + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/X/XStatic-Bootbox/XStatic-Bootbox-${version}.tar.gz"; + sha256 = "0wks1lsqngn3gvlhzrvaan1zj8w4wr58xi0pfqhrzckbghvvr0gj"; + }; + + meta = { + homepage = http://bootboxjs.com; + description = "bootboxjs packaged static files for python"; + license = licenses.mit; + maintainers = [ maintainers.makefu ]; + }; + }; + + xstatic-bootstrap = buildPythonPackage rec { + name = "XStatic-Bootstrap-${version}"; + version = "3.3.5.1"; + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/X/XStatic-Bootstrap/XStatic-Bootstrap-${version}.tar.gz"; + sha256 = "0jzjq3d4vp2shd2n20f9y53jnnk1cvphkj1v0awgrf18qsy2bmin"; + }; + + meta = { + homepage = http://getbootstrap.com; + description = "bootstrap packaged static files for python"; + license = licenses.mit; + maintainers = [ maintainers.makefu ]; + }; + }; + + xstatic-jquery = buildPythonPackage rec { + name = "XStatic-jQuery-${version}"; + version = "1.10.2.1"; + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/X/XStatic-jQuery/XStatic-jQuery-${version}.tar.gz"; + sha256 = "018kx4zijflcq8081xx6kmiqf748bsjdq7adij2k91bfp1mnlhc3"; + }; + + meta = { + homepage = http://jquery.org; + description = "jquery packaged static files for python"; + license = licenses.mit; + maintainers = [ maintainers.makefu ]; + }; + }; + + xstatic-jquery-file-upload = buildPythonPackage rec { + name = "XStatic-jQuery-File-Upload-${version}"; + version = "9.7.0.1"; + propagatedBuildInputs = with self;[ xstatic-jquery ]; + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/X/XStatic-jQuery-File-Upload/XStatic-jQuery-File-Upload-${version}.tar.gz"; + sha256 = "0d5za18lhzhb54baxq8z73wazq801n3qfj5vgcz7ri3ngx7nb0cg"; + }; + + meta = { + homepage = http://plugins.jquery.com/project/jQuery-File-Upload; + description = "jquery-file-upload packaged static files for python"; + license = licenses.mit; + maintainers = [ maintainers.makefu ]; + }; + }; + + xstatic-jquery-ui = buildPythonPackage rec { + name = "XStatic-jquery-ui-${version}"; + version = "1.11.0.1"; + propagatedBuildInputs = with self; [ xstatic-jquery ]; + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/X/XStatic-jquery-ui/XStatic-jquery-ui-${version}.tar.gz"; + sha256 = "0n6sgg9jxrqfz4zg6iqdmx1isqx2aswadf7mk3fbi48dxcv1i6q9"; + }; + + meta = { + homepage = http://jqueryui.com/; + description = "jquery-ui packaged static files for python"; + license = licenses.mit; + maintainers = [ maintainers.makefu ]; + }; + }; + + xstatic-pygments = buildPythonPackage rec { + name = "XStatic-Pygments-${version}"; + version = "1.6.0.1"; + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/X/XStatic-Pygments/XStatic-Pygments-${version}.tar.gz"; + sha256 = "0fjqgg433wfdnswn7fad1g6k2x6mf24wfnay2j82j0fwgkdxrr7m"; + }; + + meta = { + homepage = http://pygments.org; + description = "pygments packaged static files for python"; + license = licenses.bsd2; + maintainers = [ maintainers.makefu ]; + }; + }; + }; in pythonPackages